# Merge PDF Files on Windows 10 and 11 Without Software
Windows 10 and 11 don't include a built-in PDF merger. Weird, right? Microsoft includes a PDF reader but not a merger.
But here's the good news: you don't need to install bloated software to combine PDFs on Windows. There are several methods that use tools you already have—your web browser, PowerShell, or even Microsoft Print to PDF.
In this guide, I'll show you five different ways to merge PDFs on Windows 10 and 11 without downloading any software. We'll cover the easiest method first, then progressively more advanced options for power users.
Why Windows Doesn't Include PDF Merging
Quick aside: why doesn't Windows have this built-in?
Microsoft Edge can open and read PDFs. Windows has "Microsoft Print to PDF" as a virtual printer. But no native merging tool.
The reason: Adobe lobbied hard to keep PDF editing features proprietary for years. And Microsoft probably figures most users will either:
- Use online tools
- Buy Adobe Acrobat
- Install third-party software
Whatever the reason, we can work around it easily.
Method 1: Use Your Browser + AltaPDF (Easiest)
This is the method I use 90% of the time. It's fast, reliable, and works on any Windows version.
What You Need:
- Any web browser (Chrome, Edge, Firefox)
- Internet connection
- PDF files stored somewhere on your PC
Step-by-Step Instructions:
1. Open your web browser
Chrome, Edge, Firefox—doesn't matter. Use whichever you prefer.
2. Navigate to altapdf.com
Type altapdf.com in the address bar and hit Enter.
3. Click "Merge PDF"
You'll see it prominently on the homepage.
4. Upload your PDF files
Click "Select Files" or drag and drop your PDFs directly into the upload area.
Pro tip: To select multiple files at once, hold Ctrl while clicking each PDF. Or just drag a folder of PDFs—the tool will grab all PDF files and ignore everything else.
5. Arrange PDFs in correct order
You'll see thumbnails showing the first page of each PDF. Drag them up or down to reorder.
Take a moment to verify. The order you see is the final order in your merged PDF.
6. Click "Merge PDFs"
Processing happens on AltaPDF's servers, usually takes 5-15 seconds depending on file sizes.
7. Download your merged PDF
Click the "Download" button when it appears.
By default, it saves to your Downloads folder with a generic name like "merged.pdf". Right-click and rename it to something descriptive.
Total time: Under one minute for most tasks.
Why This Method Beats Installing Software:
- No installation required - Uses tools already on your PC
- No disk space used - Processing happens server-side
- Always up-to-date - Web tools get improvements automatically
- Works on any Windows version - Even Windows 7 if you're still running it
- Completely free - No trials, no subscriptions
- No bloatware - Avoids those "free" PDF tools that install toolbars and junk
Method 2: Microsoft Print to PDF (Built-in Windows Feature)
Windows includes "Microsoft Print to PDF" as a virtual printer. With a clever workaround, you can use it to merge PDFs.
Fair warning: This method is tedious. But it works offline.
How It Works:
Step 1: Open the first PDF
Use Edge or your preferred PDF reader to open the first document.
Step 2: Print to PDF
Press Ctrl+P (or File > Print). Select "Microsoft Print to PDF" as the printer.
But wait—if it's already a PDF, why print to PDF again? Because we're going to combine multiple print jobs.
Actually, this doesn't work the way you'd hope.
Let me correct myself: Microsoft Print to PDF creates separate files for each print job. You can't merge multiple documents in one print operation using this method alone.
What you CAN do:
Use Microsoft Print to PDF to "print" multiple documents to PDF format, then use Method 1 (browser tool) to merge those PDFs.
Verdict: Not actually a standalone merging method. Skip to Method 3 for a real offline option.
Method 3: PowerShell Script (Advanced Users)
Windows PowerShell can merge PDFs using built-in .NET libraries. This requires some technical comfort but works completely offline.
Prerequisites:
- Windows 10 or 11 (comes with PowerShell pre-installed)
- PDFs stored in a known location
- Administrator privileges (depending on execution policy)
The PowerShell Method:
Step 1: Open PowerShell as Administrator
Right-click Start menu → Windows PowerShell (Admin)
Step 2: Create a temporary script
Here's a basic PowerShell script to merge PDFs:
``powershell
# PowerShell PDF Merge Script
# Note: This requires PDFsharp or similar library
Add-Type -Path "C:\Path\To\PdfSharp.dll"
$outputPath = "C:\Merged.pdf"
$inputPaths = @(
"C:\Path\To\File1.pdf",
"C:\Path\To\File2.pdf",
"C:\Path\To\File3.pdf"
)
# Merge logic here (implementation depends on library)
`
Wait—here's the issue: PowerShell doesn't include native PDF manipulation. You need a third-party library like PDFsharp or iTextSharp.
And if you're installing libraries, you might as well just use Method 1 (browser) or install proper software.
Reality check: PowerShell PDF merging is possible but requires:
- Downloading additional libraries
- Writing or copying scripts
- Troubleshooting errors
For most users, this is overkill. Only consider this if you're a developer who needs automation.
Method 4: Windows Subsystem for Linux + PDFtk (For Geeks)
If you have Windows Subsystem for Linux (WSL) enabled, you can use Linux PDF tools.
WSL + PDFtk Method:
Step 1: Enable WSL
Open PowerShell as Admin and run:
`powershell`
wsl --install
Step 2: Install PDFtk in your Linux distribution
`bash`
sudo apt-get update
sudo apt-get install pdftk
Step 3: Navigate to your PDF files
Windows drives are mounted under /mnt/ in WSL:
`bash`
cd /mnt/c/Users/YourName/Documents
Step 4: Merge PDFs with PDFtk
`bash``
pdftk file1.pdf file2.pdf file3.pdf cat output merged.pdf
Conclusion
For most Windows users, Method 1 (browser + AltaPDF) is the best choice. It's fast, free, and requires no setup. Use the other methods only for specific offline or automation needs.