How to Combine PDF Files on Windows 11 and 10
Published September 4, 2026
If you have been right-clicking PDFs in File Explorer looking for a “combine” option, you can stop: it is not there. Windows 11 and Windows 10 both ship without any way to join two PDFs, which is genuinely surprising given that macOS has had it built in for years. Here is what actually works on a Windows PC, what looks like it should work but does not, and how to do it on a locked-down work laptop where you cannot install anything.
Merge PDFs on Windows — nothing to install
Runs in Edge or Chrome, works on managed work laptops, and your files never leave the PC.
Open the free PDF Merger →Why there is no merge button in Windows
Windows treats PDF as a format to read and to produce, not to edit. Microsoft Edge is the default PDF viewer and handles reading, annotation and form filling well. “Microsoft Print to PDF” is a virtual printer that turns any printable document into a PDF. Between them they cover most everyday needs, and Microsoft has never added document assembly — presumably because that territory belongs to Adobe and to the Office ecosystem.
The practical consequence is that every Windows merge route is either a website, an installed application, or a script. There is no fourth option hiding in Settings.
The method that actually works: merge in your browser
A browser-based merger is the best fit for Windows specifically, because it sidesteps the two problems that bite Windows users: administrator rights and unwanted bundled software. Free Windows PDF utilities are a notorious source of toolbars, trial nags and installers that quietly add a browser extension. A web page installs nothing.
- Open the PDF Merger in Edge, Chrome or Firefox.
- Select your PDFs in File Explorer and drag them onto the drop zone, or click to browse. They combine in the order they appear in the list.
- Check the order. Remove anything that should not be there with the Remove button.
- Click Merge PDF. The combined file lands in your Downloads folder.
The key thing to check with any web tool is whether it uploads. Toolyard's merger uses in-browser PDF processing, so your documents are assembled on your own machine and never transmitted — which matters if the files are payslips, medical letters or anything covered by a workplace data policy.
Things that look like they should work, but do not
Three suggestions come up constantly in Windows forums. Two of them are dead ends, and it saves time to know that up front.
| Suggestion | Does it merge PDFs? | Why |
|---|---|---|
| Select files → right-click → Print | No | Multi-select printing is unavailable for PDFs; Explorer greys out Print |
| Microsoft Print to PDF | No | Prints one source document at a time; cannot concatenate PDFs |
| Open both in Edge | No | Edge is a viewer — no page insertion or document assembly |
| Print multiple images to PDF | Partly | Works for JPG/PNG, not for existing PDFs |
That last row is worth a note, because it is a real Windows capability that people confuse with merging. Select several images in Explorer, right-click, choose Print, pick Microsoft Print to PDF as the printer, and you get one PDF containing all of them. It is a legitimate trick — it just only applies to images. If that is your actual goal, an image to PDF converter gives you far more control over page size and margins than the print dialog does.
For IT professionals: PowerShell
Windows has no native PDF library, so PowerShell cannot merge PDFs on its own. What it can do is drive a third-party library. The usual approach is to install a PDF module from the PowerShell Gallery, or to add a .NET PDF library and call it directly. A minimal pattern using the widely available PSWritePDF module looks like this:
Install-Module PSWritePDF -Scope CurrentUser
Merge-PDF -InputFile 'a.pdf','b.pdf' -OutputFile 'combined.pdf'
This is worth setting up only if you merge in bulk — joining a monthly folder of 200 invoices, for example, where a loop over subfolders saves real time. For a one-off combine of three documents it is far more effort than dragging files onto a web page, and installing modules is often blocked on corporate machines anyway.
Three PDFs, one file, ten seconds
No installer, no admin rights, no watermark on the result.
Combine my PDFs →Getting the page order right the first time
Order is where most merges go wrong, and Windows has a specific quirk that causes it. File Explorer sorts names using natural numeric ordering in most views, but the order in which files are handed to a browser after a multi-select drag depends on how you selected them, not on how they are displayed. The fix is to make the order unambiguous before you start:
- Rename files with a zero-padded numeric prefix:
01-cover.pdf,02-summary.pdf,03-appendix.pdf. Pad to two digits so 10 does not sort before 2. - Sort the folder by Name so what you see matches what you intend.
- Add the files to the merger, then read the list on screen before clicking merge — that list, not the folder, decides the outcome.
- If one file is in the wrong place, remove it and add it again at the end, or clear everything and add files one at a time.
Adding files individually rather than in one big drag is slower by a few seconds and eliminates ordering surprises entirely. On a bundle that is going to a client, it is the safer habit.
Before you send it: three quick checks
A merged bundle usually needs a little tidying. Scanned pages often arrive rotated, and a single sideways page in an otherwise clean report looks careless — fix it with a PDF rotator before merging rather than after. Page numbers restart at 1 wherever a new source file begins, so a 40-page bundle can contain four different “page 3”s; adding continuous numbering to the merged file solves it. And if the result bounces off an email attachment limit, the culprit is nearly always scanned images rather than the merge itself.
Is it private and free?
Toolyard's merger runs entirely in your browser on your own PC. Your files are never uploaded, there is no sign-up, no watermark and no daily task limit. Because nothing is installed, it also works on managed Windows machines where you do not have administrator rights.
FAQ
Does Windows 11 have a built-in way to merge PDFs?
No. Windows 11 and 10 can view PDFs in Edge and create them with Microsoft Print to PDF, but neither joins two existing PDFs into one. There is no merge command in File Explorer, Edge or Photos.
Can I merge PDFs with Microsoft Print to PDF?
Not for PDF sources. It only accepts one printing document at a time, and Explorer will not let you multi-select PDFs and print them into a single output. The trick does work for images.
How do I merge PDFs on Windows without installing software?
Use a browser-based merger that processes files locally: open the page in Edge or Chrome, drop the PDFs in order, click merge, download the result. Nothing is installed and nothing is uploaded, so it works on locked-down work machines too.
How do I change the order of files before merging?
Rename them with a zero-padded numeric prefix such as 01-cover.pdf and 02-report.pdf, sort by name, and add them in that order. Pad the numbers or 10 will sort before 2.
Is there a file size limit?
With a browser-based tool the practical limit is your PC's memory rather than a fixed cap, since the document is assembled in RAM — a few hundred megabytes is fine on a modern machine. Server-based sites usually cap free tiers at 50–100 MB.