Set Your Preferred Default Printer in Windows 11 & 10: 6 Methods (June 2026 Guide)
You have updated your Windows and now want to Set Your Preferred Default Printer in Windows 11 or 10 so here is the complete Methods for June 2026 you can follow.
To set your preferred default Printer in Windows, open Settings, then Bluetooth and devices, then Printers and scanners. Turn off the Let Windows manage my default printer toggle. Click your preferred printer and select Set as default. The printer status changes to Default immediately. This works on both Windows 11 and Windows 10.
Quick Fix:
- Open Settings (
Win + I) and go to Bluetooth & devices > Printers & scanners. - Turn off Let Windows manage my default printer.
- Select your printer and click Set as default.
This guide covers 6 tested methods, 6 troubleshooting fixes for common problems, and Windows 11 24H2 changes you need to know. Pick the method that fits your role from the decision table below.

Also on Axeetech: Fix Windows update issues easily | Printer Queue List | Printer Maintenance Tips |
Pick the Right Method for You (Decision Table)
Different users need different methods. Use this table to jump straight to the section that matches your situation.
| User Type | Best Method | Why |
|---|---|---|
| Home user, simple setup | Method 1 (Settings app) | Easiest, takes 30 seconds |
| Traditional Windows user | Method 2 (Control Panel) | Familiar interface |
| IT admin, scripting | Method 3 (Command Prompt) | Works in batch scripts |
| Power user, automation | Method 4 (PowerShell) | Best cmdlet support |
| Domain admin, multiple PCs | Method 5 (Group Policy) | Pushes to all users |
| Default keeps resetting | Method 6 (Registry tweak) | Locks the setting permanently |
Also on Axeetech: Epson L3110 Resetter Software | Epson Adjustment Program
Why Set Your Preferred Default Printer in Windows Matters
Most users have more than one printer connected at once. A USB Brother laser, a Wi-Fi Canon inkjet, Microsoft Print to PDF, and sometimes a network HP at the office. Without a default, every Ctrl + P forces you to pick.
Setting a default Printer in Windows saves clicks and prevents accidental prints to the wrong device. It also matters for scripted printing in apps like Microsoft Excel, AutoCAD, and Adobe Acrobat. Each app respects the system default unless you override it manually.
Windows 11 24H2 also changed the print platform with the Modern Print Platform and IPP Class Driver. The old v3 and v4 driver models are being replaced. Therefore, the way Windows handles default printers in 2026 differs from the Windows 7 era.
Also check out the Guide section for more helpful guides, including: Configuring default Printer settings | Configuring default playback Device | Troubleshooting Microphone Privacy Settings
Before You Start (Quick Checklist)
Run through these 6 prep items before any method. They prevent most setup failures.
- Confirm the printer is installed and visible in Printers and scanners.
- Check the printer is online and not offline in the device list.
- Restart the Print Spooler service if you see errors.
- Run Windows Update so the latest IPP Class Driver loads automatically.
- Disconnect any temporary travel printers you do not need.
- Note the exact printer name, since you will need it for Method 3 and Method 4.
Tip: Run “net stop spooler” then “net start spooler” in an elevated Command Prompt before any of the methods below if you have been struggling to change the default printer. The Print Spooler service controls every print job in Windows.
Method 1: Set Your Preferred Default Printer via Settings (Windows 11 and 10)
The Settings app is the fastest method on both Windows 11 and Windows 10. Microsoft also documents this as the official path on the Set a default printer in Windows page.

For Windows 11, follow these steps:
- Press Windows + I to open Settings.
- Click Bluetooth and devices, then Printers and scanners.
- Scroll to Printer preferences and toggle Let Windows manage my default printer to Off.
- Click your preferred printer in the list above.
- Click Set as default. The status changes to Default immediately.

For Windows 10, the path is slightly different:
- Press Windows + I to open Settings.
- Click Devices, then Printers and scanners.
- Uncheck Let Windows manage my default printer.
- Click your preferred printer, then click Manage.
- Click Set as default in the Manage your device window.
Tip: Use the ms-settings:printers shortcut. Press Windows + R, type ms-settings:printers, and press Enter to open Printers and scanners directly without going through Settings menus.
Also on Axeetech: Fix Wireless Printer in Error State Loop
Method 2: Set Default Printer via Control Panel (Classic Method)
The Control Panel still works on both Windows 11 and Windows 10. Many IT pros prefer it because the right-click menu is faster than the Settings app.
Follow these steps to set default printer Control Panel style:

- Press Windows + R, type control, and press Enter.
- Click Devices and Printers. Set View by to Large icons if needed.
- Right-click your preferred printer in the list.
- Select Set as default printer from the context menu.
- A green checkmark icon appears on that printer.
Tip: Skip Control Panel and use the shell:PrintersFolder shortcut. Press Windows + R, type shell:PrintersFolder, and press Enter. The Printers folder opens directly in a single step.
If you see a prompt about Windows managing your default printer, click OK. Windows automatically disables the Let Windows manage feature when you set one manually.
How to Bypass the Windows 11 Control Panel Redirect Bug
In modern versions of Windows 11 (including the 24H2 update), Microsoft is actively phasing out the classic Control Panel.
If you open the Control Panel and click Devices and Printers, Windows will automatically intercept your click and redirect you right back to the modern Settings App.
To bypass this “Device Stage” redirection loop and force the classic interface to open, use this hidden shell command shortcut:
1. Open the Run Dialog Box: Takes 2 seconds.
Press Windows + R on your keyboard to bring up the native Windows Run utility box.
2. Execute the Core Shell Command: Bypasses Device Stage.
Type or copy-paste the exact shell command below into the text field:
shell:PrintersFolder
3. Hit Enter to Launch: Legacy Mode Override.
Press Enter or click OK. The system bypasses the Settings app entirely and launches the classic, unmitigated Printers folder layout instantly.
Alternative Global Shortcut: You can also run
explorer shell:::{A8A91A66-3A7D-4424-8D24-04E180695C7A}in the Run dialog. Both shortcuts strip out the modern wrapper, giving you direct access to classic right-click hardware properties.
Also on Axeetech: Canon Printer Error Code 306 Fix
Method 3: Set Default Printer Using Command Prompt
The WMIC Deprecation Problem (Method 3): In Windows 11 24H2 with the May 2026 Update, Microsoft has completely deprecated and disabled WMIC (Windows Management Instrumentation Command-line) by default.
Users running clean installations of 24H2 will encounter a wmic is not recognized error when trying your command: wmic printer get name,default.
- How to fix: Replace or supplement the WMIC command with a lightweight PowerShell command that runs natively inside the standard Command Prompt:
powershell -Command "Get-Printer | Select-Object Name, IsDefault"
If you have not updated your Windows yet, This Old method can work for you:
Command Prompt is the right method for batch scripts, login scripts, and remote sessions. Open Command Prompt as administrator before running any of the commands below.
First, find the exact printer name. Run this command:
wmic printer get name,default
The default printer shows TRUE in the Default column. Copy your target printer name exactly, since spacing and capitalization matter.

Next, set your preferred printer as default with rundll32:
rundll32 printui.dll,PrintUIEntry /y /n "Your Printer Name"
Replace “Your Printer Name” with the exact name from the first command. Press Enter and the change applies instantly.
Tip: The rundll32 method works in Windows Terminal and old Command Prompt. It also works on Windows 7, Windows 8, Windows 10, and Windows 11.
Method 4: Set Default Printer Using PowerShell (Best for Scripts)
PowerShell offers the cleanest cmdlet support for printer management. The Set-Printer cmdlet is documented on Microsoft Learn.
Open PowerShell as administrator. List all printers first:
Get-Printer | Select Name
Set your preferred printer as default with the Set-Printer cmdlet:

Set-Printer -Name "Your Printer Name" -IsDefault $true
For PowerShell 7.x users, the Get-WMIObject cmdlet is unsupported. Use the CIM method instead:
$Printer = Get-CimInstance -Class Win32_Printer -Filter "Name='Your Printer Name'"
Invoke-CimMethod -InputObject $Printer -MethodName SetDefaultPrinter
The CIM approach uses the Win32_Printer WMI class and works across PowerShell 5.1 and PowerShell 7.x.
Tip: PowerShell does not return a confirmation message on success. Press Ctrl + P in any app to verify the new default loaded correctly.
Method 5: Set Default Printer via Group Policy (For IT Admins)
Group Policy is the right method for domain-joined work laptops with multiple users. It also survives user profile resets, which Method 1 does not.
Open the Group Policy Management Console (gpmc.msc) on your domain controller. Navigate through these steps:
- Go to User Configuration, Preferences, Control Panel Settings, Printers.
- Right-click and create a new Shared Printer item.
- Enter the network printer path and printer name.
- Tick Set this printer as the default printer.
- Click Apply, then OK.
To stop Windows from overriding your Group Policy choice, navigate to User Configuration, Administrative Templates, Control Panel, Printers. Enable Turn off Windows default printer management. This blocks the Let Windows manage my default printer feature for all users in the policy scope.
Tip: Group Policy is the only method that survives user profile resets and roaming profile rebuilds. Use it when you manage 10 or more PCs in an Active Directory environment.
For Windows 11 Pro on a single PC without a domain, gpedit.msc opens the Local Group Policy Editor with the same options.
Also on Axeetech: Windows Prefetch RAM Usage | How to get Help in Windows | Printer and Scanner near Me |
Method 6: Set Default Printer via Registry (When Nothing Else Works)
Use the Registry Editor only if the default printer keeps resetting after restart. This method writes the change at the deepest level Windows reads.
Press Windows + R, type regedit, and press Enter. Navigate to this exact path:
HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Windows

Find the Device value in the right panel. Double-click it and set the value in this exact format:
Your Printer Name,winspool,Ne00:
Replace Ne00 with the correct port number (Ne01, Ne02, Ne03, depending on which port your printer uses). Restart Windows for the change to take effect at every login.
The Registry Port Number Trap (Alternate Method): Be very careful when replacing Ne00 with Ne01, Ne02, etc. If you input the wrong network port index, the registry string is invalidated, and printing breaks entirely.
Things to note here: Before modifying, you must look for the active pot number by looking at the ports tab inside the Classic Printer Properties. Or you can look for the registry Key: HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\PrinterPorts to see the exact assigned NeXX string for each device.
Warning: Always back up the registry before editing. Click File, Export, and save a .reg backup. A wrong edit can break printing on the entire user profile and may force a Windows reset.
Bonus: How to Set Default Printing Preferences (Color, Duplex, Paper Size)
Setting your default system hardware is only half the battle. If you do not change your global configurations, every print command will revert to the manufacturer defaults—often forcing your printer to consume expensive color ink or print on a single side of the page by default.
To set your default layouts, paper handling profiles, and color restrictions globally so that every application respects them automatically, use either the modern or classic path below.
Option A: The Modern Windows 11 Settings Path
- Open Settings (
Win + I) and go to Bluetooth & devices > Printers & scanners. - Click on your active default printer to expand its details page.
- Scroll down and click on Printing preferences.
- A dedicated preferences panel window provided by your manufacturer (HP, Brother, Canon, Epson) will pop up.
- Change your settings to your daily preference (e.g., switch Color to Grayscale/Black & White or change 1-Sided to 2-Sided/Duplex printing).
- Click Apply, then click OK to lock these settings as the native global defaults.
Option B: The Classic Legacy Shell Path (Recommended for Advanced Settings)
If your manufacturer’s driver software features do not load properly inside the modern Settings App layout, the classic shell panel provides uninhibited hardware control.
- Press Windows + R, type
shell:PrintersFolder, and press Enter. - Right-click your default printer icon and choose Printing preferences from the context menu >context drop-down.
- Select your standard baseline operational settings:
- Eco-Printing: Set to monochrome/grayscale to save color cartridges.
- Paper Savings: Set layout profiles to Duplex long-edge binding for automated two-sided sheets.
- Paper Source: Set your primary paper tray allocation defaults (Tray 1, Tray 2, or Auto Select) to avoid manual paper jams.
- Click Apply and close out of the panel window.
Quick Questions Answered:
| Question | Answer |
| How to change default printer in Windows 10? | Go to Settings > Devices > Printers & scanners, select your printer, click Manage, and hit Set as default. |
| How to change default printer in Windows 11? | Go to Settings > Bluetooth & devices > Printers & scanners, choose your printer, and click Set as default. |
| What is a default printer? | The primary hardware or virtual device Windows automatically targets whenever you trigger a print command (Ctrl + P). |
| How do I set the default printer in Windows 7? | Open Start > Devices and Printers, right-click your preferred machine, and select Set as default printer. |
How to Fix Common Default Printer Problems
Six recurring issues show up across HP, Canon, Brother, Epson, and Lexmark forums. Each one has a targeted fix below.
Set as Default Button Is Missing

Fix: The Set as default button hides when Let Windows manage my default printer is on. Open Settings, Bluetooth and devices, Printers and scanners. Toggle the option off. The button reappears immediately on the printer detail page.
Default Printer Keeps Changing After Restart
Fix: Windows 11 sometimes drops printer connections on reboot, especially on HP OfficeJet Pro 8035e and similar models. Open gpedit.msc, navigate to Computer Configuration, Administrative Templates, System, Device Installation. Enable Prevent device metadata retrieval and Prevent Windows from removing devices that are not currently connected.
Error 0x00000709 When Setting Default Printer
Fix: Open Registry Editor and navigate to HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Windows. Edit the Device value with your printer name. Restart the Print Spooler service with net stop spooler and net start spooler in an elevated Command Prompt.
Set as Default Greyed Out
Fix: The printer is offline or has a pending error in the queue. Click the printer, open Manage, and check the print queue. Cancel stuck print jobs, then reconnect the printer to the network or USB port.
Default Printer Resets After Sleep on Laptops
Fix: Disable Let Windows manage my default printer in Settings. The location-aware feature switches printers based on your network location. Turn it off if you only use one main printer at home or in the office.
Microsoft Print to PDF Keeps Becoming Default
Fix: Microsoft Print to PDF auto-promotes when no real printer is online. Reconnect your physical printer first, then run Method 1 again. Toggle Let Windows manage my default printer off afterward to lock the new default.
Set Microsoft Print to PDF as Your Default Printer
Many users print to file more often than to paper. Setting Microsoft Print to PDF as your default saves a click on every Ctrl + P.
Follow Method 1 and pick Microsoft Print to PDF instead of a physical printer. Click Set as default. The next time you press Ctrl + P in Notepad, Microsoft Edge, or Microsoft Word, the Save Print Output As dialog opens automatically.
This setup works well alongside Microsoft XPS Document Writer and the Send to OneNote virtual printer. All three coexist without conflict.
Browser Default Printer vs System Default Printer
Chrome, Edge, and Firefox each remember their own last used printer separately from Windows. This often confuses users who set a system default and still see the wrong printer in Chrome.
Press Ctrl + Shift + P inside the browser to open the full Windows print dialog. This forces the browser to use your Windows system default instead of its internal cached choice.
Alternatively, open the browser print dialog with Ctrl + P, then manually pick your preferred printer once. The browser remembers it for next time, but it remains separate from the Windows system default.
Default Printer in Windows 11 24H2 (Modern Print Platform)
Windows 11 24H2 introduced the Modern Print Platform with the IPP Class Driver. This single universal driver replaces the legacy v3 and v4 driver model for most modern HP, Canon, Brother, and Epson printers.
The Set as default workflow stays identical to Windows 10. However, driver installation now happens through Windows Update automatically. You no longer download .exe installers from the manufacturer’s site for Mopria-certified printers and IPP Everywhere devices.
Windows Protected Print Mode (WPP) is the second big change in 24H2. It blocks legacy driver installation entirely for security. Toggle WPP on under Settings, Bluetooth and devices, Printers and scanners, Printer preferences. The feature was designed in response to the PrintNightmare CVE vulnerabilities discovered in 2021.
For ARM Copilot+ PCs like the Surface Pro 11 and Surface Laptop 7 with Snapdragon X Elite, the IPP Class Driver works natively without x86 driver compatibility issues.
Frequently Asked Questions
How do I set my preferred default printer in Windows 11?
Open Settings, then Bluetooth and devices, then Printers and scanners. Turn off the Let Windows manage my default printer toggle. Click your preferred printer, then click Set as default. The status changes to Default immediately.
Why does the Set as default button not appear in Windows 11?
The Set as default button hides when Let Windows manage my default printer is turned on. Open Printers and scanners, scroll to Printer preferences, and toggle the option off. The button reappears on every printer in the list.
How do I find my current default printer using Command Prompt?
Open Command Prompt as administrator. Run wmic printer get name,default and press Enter. The current default printer shows TRUE in the Default column next to its name.
Can I set a default printer using PowerShell?
Yes. Open PowerShell as administrator and run Set-Printer -Name “Your Printer Name” -IsDefault $true. For PowerShell 7.x, use the Get-CimInstance method with the Win32_Printer class and the SetDefaultPrinter method.
Does Windows sync the default printer through my Microsoft account?
No, the default printer setting does not sync through Microsoft account. The setting is local to each Windows device. You must set the default printer separately on every PC, even when signed in with the same Microsoft account.
How do I stop Windows from changing my default printer automatically?
Open Settings, Bluetooth and devices, Printers and scanners. Toggle Let Windows manage my default printer to Off. This stops the location-aware switching that picks the last printer used at each network.
How do I fix error 0x00000709 when setting a default printer?
Open Registry Editor and navigate to HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Windows. Edit the Device value with your printer name in the format “Printer Name,winspool,Ne00:”. Restart the Print Spooler service with net stop spooler and net start spooler.
Can I set different default printers for different programs?
Windows uses one system-wide default printer for all programs. However, many apps remember the last printer chosen inside their own print dialog. Microsoft Word, Adobe Acrobat, and Chrome each store their own last used printer separately.
How do I set a default printer for all users in Windows?
There is no single all-users default in Windows. Each user profile stores its own setting. Use Group Policy Preferences in a domain environment to push the same default to multiple users at once.
What changed in Windows 11 24H2 for default printers?
Windows 11 24H2 introduced the Modern Print Platform with the IPP Class Driver. It replaces legacy v3 and v4 driver models for HP, Canon, Brother, Epson, and Mopria-certified printers. Windows Protected Print Mode (WPP) also blocks legacy driver installation for added security.
Is a freelance tech writer based in the East Continent, is quite fascinated by modern-day gadgets, smartphones, and all the hype and buzz about modern technology on the Internet. Besides this a part-time photographer and love to travel and explore. Follow me on. Twitter, Facebook Or Simply Contact Here. Or Email: info@axeetech.com
