Configuring Default Printer Settings in Windows 11, 10, and Mac (Complete 2026 Guide)

Configuring default printer settings in Windows means adjusting Printing Preferences for your account or Printing Defaults on the Advanced tab for all users. Open Settings, Bluetooth and devices, Printers and scanners, click your printer, then Printing preferences to set paper size, orientation, color mode, and duplex. For settings that apply to all users, use Printer Properties, Advanced tab, Printing Defaults instead.

Most guides stop at “click Set as default” and call it done. That only changes which printer receives your jobs. It does nothing about paper size, duplex mode, color output, or print quality. This guide covers all of that, for every user level from home users to IT admins, and includes the exact PowerShell commands, Group Policy path, macOS steps, and fixes for settings that keep reverting.

Configuring default printer settings Windows 11 guide 2026.
Configure default printer settings once and every document prints correctly without manual selection.

Also on Axeetech: Epson L3110 Resetter Software | Epson Adjustment Program

Check the Content

Printing Preferences vs Printing Defaults: The Key Distinction

Before configuring any setting, you need to know where it goes and who it affects. These two locations look similar but behave completely differently.

Setting TypeWindows LocationScopeWho It AffectsWhen to Use
Printing PreferencesSettings, Printers and scanners, Printing preferencesCurrent user onlyOnly the logged-in accountPersonal defaults for your own account
Printing DefaultsPrinter Properties, Advanced tab, Printing DefaultsAll users on this machineEvery user who prints to this printerShared PC, managed environment, cost control

Printing Preferences stores settings inside your Windows user profile. Printing Defaults stores settings inside the driver configuration at the system level. Applications can override both. Document-level settings in Word, Adobe Acrobat, or Chrome always take precedence over driver defaults for that specific print job.

There is also a critical caveat for IT administrators. The LocalSystem account (used by Windows print services such as PaperCut Email to Print, Web Print, and Mobility Print) cannot read Printing Preferences. It reads only Printing Defaults. This means configuring Printing Preferences is useless for print services running as LocalSystem.

Tip: If you configure a shared printer for a print management service, always use Printing Defaults on the Advanced tab, not Printing Preferences. Printing Preferences applies only to your own Windows user account and is invisible to LocalSystem-based services.

What Printer Settings Can You Configure as Defaults?

Configuring default printer settings covers more than just paper size. The table below lists every major configurable default, its common options, and a practical business use case for each one.

Setting CategoryCommon OptionsBusiness Use Case
Paper sizeA4, Letter, Legal, Executive, customMatch regional standard (A4 in UK and EU, Letter in US)
OrientationPortrait, LandscapeLandscape for spreadsheets, portrait for documents
Color modeColor, Grayscale, Black OnlyGrayscale saves color ink, Black Only saves even more
Duplex (two-sided)Off (Simplex), Flip on long edge, Flip on short edgeLong edge for books, short edge for flipbooks and calendars
Print quality300 DPI, 600 DPI, 1200 DPIDraft quality for internal docs, high quality for client output
Paper tray or paper sourceAuto Select, Tray 1, Tray 2, Manual FeedRoute letterhead to Tray 2 automatically
Copies1, 2, 3 and moreSet 2 copies as a default for specific office workflows
CollateOn, OffOn for multi-page document sets, Off for bulk single-page jobs
N-up (pages per sheet)1, 2, 4, 6, 9, 162-up printing reduces paper use for meeting handouts
Booklet printingOn, OffFolded booklet layout for training materials and manuals

Method 1: Configure Default Printer Settings for Your Account (Printing Preferences)

This method sets defaults that apply only to your Windows account. Other users on the same machine do not see these changes.

Windows 11

  1. Press Windows + I to open Settings.
  2. Click Bluetooth and devices, then Printers and scanners.
  3. Click your printer from the list.
  4. Click Printing preferences.
  5. Adjust paper size, orientation, color mode, duplex, and print quality as needed.
  6. Click Apply, then OK.
Printing Preferences dialog Windows 11 paper size duplex color.
The Printing Preferences dialog contains settings that apply to your user account only.

Windows 10

  1. Press Windows + I to open Settings.
  2. Click Devices, then Printers and scanners.
  3. Click your printer, then click Manage.
  4. Click Printing preferences.
  5. Adjust your settings and click Apply, then OK.

Control Panel Path (Works on Windows 11 and Windows 10)

  1. Press Windows + R, type control, and press Enter.
  2. Click Hardware and Sound, then Devices and Printers.
  3. Right-click your printer and select Printing preferences.
  4. Make your changes and click OK.

Tip: Use the Windows key + Q shortcut and type “Printers” to reach Printers and scanners faster on both Windows 10 and Windows 11. This saves several clicks compared to opening the Settings app manually.

Method 2: Configure Default Printer Settings for All Users (Printing Defaults)

This method sets defaults at the driver level and applies to every user account on the machine. Use it on shared PCs, print servers, and managed workstations where consistent output matters.

  1. Press Windows + R, type control, and press Enter.
  2. Click Hardware and Sound, then Devices and Printers.
  3. Right-click your printer and select Printer properties (not Printing preferences).
  4. Click the Advanced tab.
  5. Click the Printing Defaults button at the bottom of the tab.
  6. Configure paper size, color mode, duplex, and other settings as required.
  7. Click Apply, then OK.
Printer Properties Advanced tab Printing Defaults for all users.
The Printing Defaults button on the Advanced tab sets defaults for all users on the machine.

This path is also available through the official Microsoft Support default printer guidance for reference.

Warning: Changes in Printing Defaults apply immediately to all users on this machine. In domain environments, Group Policy may overwrite these settings at next logon or policy refresh. If defaults keep reverting after this step, a Group Policy Object is likely enforcing a different configuration.

Method 3: Configure Default Printer Settings Using PowerShell

PowerShell is the fastest path for configuring default printer settings across multiple printers or machines. Open PowerShell as administrator for all commands below.

First, list all installed printers:

Get-Printer | Select Name

Check the current configuration for a specific printer:

Get-PrintConfiguration -PrinterName "Your Printer Name"

Set grayscale as the default color mode:

Set-PrintConfiguration -PrinterName "Your Printer Name" -Color $false

Set duplex printing (two-sided, long edge flip):

Set-PrintConfiguration -PrinterName "Your Printer Name" -DuplexingMode TwoSidedLongEdge

Set the default paper size to A4:

Set-PrintConfiguration -PrinterName "Your Printer Name" -PaperSize A4

Apply multiple settings in one command:

Set-PrintConfiguration -PrinterName "Your Printer Name" -Color $false -DuplexingMode TwoSidedLongEdge -PaperSize A4
Set-PrintConfiguration PowerShell cmdlet duplex grayscale settings.
The Set-PrintConfiguration cmdlet configures default printer settings for any printer in one command.

The full Set-PrintConfiguration cmdlet reference on Microsoft Learn documents every available parameter for advanced configurations.

Tip: The Set-PrintConfiguration cmdlet accepts three values for -DuplexingMode: OneSided (simplex, single page), TwoSidedLongEdge (flip on long edge for standard portrait documents), and TwoSidedShortEdge (flip on short edge for landscape or calendar-style documents). Use TwoSidedLongEdge for standard A4 or Letter documents.

Method 4: Configure Default Printer Settings Using Group Policy (Enterprise)

Group Policy lets IT administrators push printer default settings to all machines in a domain from a single console. This method requires Active Directory and the Group Policy Management Console (gpmc.msc).

Set Default Printer Using Group Policy Preferences

  1. Open gpmc.msc on a domain controller or admin workstation.
  2. Create or edit a Group Policy Object (GPO) linked to the appropriate Organizational Unit (OU).
  3. Navigate to User Configuration, Preferences, Control Panel Settings, Printers.
  4. Right-click and select New, Shared Printer.
  5. Enter the printer path and configure the default settings.
  6. Enable Set this printer as the default printer and configure the required settings.
  7. Click Apply.

Prevent Windows from Overriding the Default Printer

  1. In the same GPO, navigate to User Configuration, Administrative Templates, Control Panel, Printers.
  2. Enable Turn off Windows default printer management.
  3. This prevents Windows from automatically switching the default printer based on location.

Additionally, open printmanagement.msc to use the Print Management MMC for centralized monitoring and management of all print servers and printers in the environment. You can also check this “Change Default printer guide on Axeetech.”

Warning: Test Group Policy printer deployments with multiple user accounts before deploying to production. Per-user Printing Preferences overrides can still occur depending on driver behavior and policy design. Always check for conflicting GPOs using the Resultant Set of Policy tool by running rsop.msc in Command Prompt.

Configure Default Printer Settings Using Brand Management Apps

Many printer manufacturers include management software with configuration options that the standard Windows Printing Preferences dialog does not expose. These apps are especially useful for custom paper sizes, specific color profiles, or specialized media types.

Printer BrandApp NameWhere to Find Settings
HPHP SmartOpen HP Smart, Printer Settings, Default Settings
CanonCanon IJ Printer Assistant ToolOpen IJ Printer Assistant, Custom Settings
EpsonEpson Printer SettingsRight-click Epson tray icon, Printer Settings
BrotherBrother ControlCenterOpen ControlCenter, Device Settings, Printing Preferences

These apps provide brand-specific defaults that the generic Windows driver interface cannot reach. Brother ControlCenter, for example, exposes binding offset settings, booklet printing options, and detailed color management modes that Windows Settings does not surface.

Configure Default Printer Settings on Mac

The macOS path for configuring default printer settings is completely different from Windows and no other guide on this SERP covers it fully.

macOS 13 and Later (System Settings)

  1. Open System Settings from the Apple menu.
  2. Click Printers and Scanners.
  3. Click your printer in the list.
  4. Click Options and Supplies.
  5. Click the Options tab to configure default driver settings.
  6. Make your changes and click OK.

Set Default Paper Size for All Printing on Mac

  1. Open System Settings, then General, then Language and Region.
  2. Change Paper Size to match your regional default (A4 or US Letter).

This setting applies globally across every application on your Mac. It prevents individual apps from defaulting to the wrong paper size without needing per-app configuration.

Older macOS (System Preferences)

Open System Preferences, click Print and Fax (or Printers and Scanners in newer versions of older macOS), select your printer, and click Options and Supplies. The Options tab contains driver-specific default settings for your model.

Tip: On macOS, the Paper Size setting in Language and Region is the single most effective change you can make. It controls the default paper size across all printing dialogs on the entire system. Setting it to A4 in the UK or EU saves constant per-app corrections.

Common Default Printer Settings Issues and Fixes

Even after following every step above, some users find their settings revert or fail to apply. These four issues account for the majority of problems when configuring default printer settings.

Default Printer Settings Keep Reverting

Four specific causes produce this problem, and each has a different fix:

Fix default printer settings reverting Windows 11.
Disabling Let Windows manage my default printer stops settings from reverting automatically.

The first is the “Let Windows manage my default printer” toggle still being on. Disable it in Settings, Bluetooth and devices, Printers and scanners, Printer preferences. The second is Group Policy overwriting your manual settings at logon. Run gpresult /r in an administrator Command Prompt to see which policies are applied and which printer-related GPOs are active. The third is Point and Print syncing settings from the print server each time you reconnect. Contact your print server administrator to update the server-side defaults. The fourth is the printer driver resetting on reconnection, which is especially common with wireless printers. Update or reinstall the driver to resolve the reset behavior.

Error 0x00000709 When Configuring Default Printer

This error appears when Windows cannot write to the printer registry key due to a permission conflict or registry corruption.

  1. Press Windows + R, type regedit, and press Enter.
  2. Navigate to HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Windows.
  3. Check that the Device value exists and contains your printer name.
  4. If access is denied, right-click the Windows registry key and select Permissions. Grant Full Control to your user account.
  5. Open services.msc, find Print Spooler (spoolsv.exe), right-click, and select Restart.
  6. Return to Printers and scanners and try configuring the default again.

Set as Default Button Not Visible

The Set as default button disappears when “Let Windows manage my default printer” is enabled. Open Settings, Bluetooth and devices, Printers and scanners, scroll to Printer preferences, and toggle “Let Windows manage my default printer” to Off. The button reappears on the printer detail page immediately.

Printer Settings Not Saving After Reboot

Wireless printers occasionally lose their saved configuration after reconnection because the driver re-registers with a fresh state. For persistent settings, reinstall the printer driver completely. In Devices and Printers, right-click the printer and select Remove device. Then add it again through Add a printer, reconnect the wireless printer, and reconfigure the defaults. This forces a clean driver registration with your settings written correctly into the new profile.

Windows 11 24H2 and the Modern Print Platform

Windows 11 24H2 introduced the Modern Print Platform with the IPP Class Driver. This universal driver replaces legacy v3 and v4 printer drivers for most HP, Canon, Brother, and Epson models that carry Mopria certification. The configuration steps for Printing Preferences and Printing Defaults remain identical to earlier Windows 11 versions.

However, some advanced driver settings (custom paper sizes, specialized color modes, tray-specific settings) may not appear in the IPP Class Driver dialog because the universal driver does not expose all manufacturer-specific options. For these settings, use the manufacturer’s management app (HP Smart, Canon IJ Printer Assistant, Brother ControlCenter, or Epson Printer Settings) or install the full manufacturer driver package alongside the IPP driver.

For enterprise environments using Microsoft Intune, Intune now supports printer policy configurations that deploy default settings to Intune-managed devices. This removes the requirement for on-premises Group Policy infrastructure in organizations that have moved to cloud-only management.

Which Method Should You Use?

The right method for configuring default printer settings depends on your environment, account type, and how many machines you manage.

User TypeRecommended MethodWhy
Home user, single accountMethod 1 (Printing Preferences)Simple, affects only your account
Shared home PC (multiple accounts)Method 2 (Printing Defaults, Advanced tab)Applies to all family accounts
Small business, single PCMethod 2 (Printing Defaults, Advanced tab)System-wide, no domain required
IT admin, domain environmentMethod 4 (Group Policy) + Method 3 (PowerShell)Scalable, policy-controlled
PowerShell and automationMethod 3 (Set-PrintConfiguration)Scriptable, repeatable across machines
Mac usermacOS System SettingsBuilt-in macOS path
Print service (Email to Print, Web Print)Method 2 only (Printing Defaults)LocalSystem cannot read Printing Preferences

Also read: Microsoft Edge Canary Build

Frequently Asked Questions

What is the difference between Printing Preferences and Printing Defaults?

Printing Preferences stores settings in your Windows user profile and affects only your account. Printing Defaults stores settings in the printer driver at the system level and affects every user on the machine. Use Printing Preferences for personal settings and Printing Defaults for shared PCs or managed environments.

How do I configure default printer settings for all users on a shared PC?

Right-click your printer in Devices and Printers and select Printer properties. Click the Advanced tab, then click Printing Defaults. Configure paper size, duplex, color mode, and any other settings. Click Apply, then OK. These settings apply to every user account on the machine immediately.

How do I set duplex printing as the default in Windows 11?

Open Settings, Bluetooth and devices, Printers and scanners. Click your printer, then Printing preferences. Find the duplex or two-sided printing option and set it to Flip on long edge for portrait documents or Flip on short edge for landscape documents. Click Apply and OK to save. For all users, use Printer Properties, Advanced tab, Printing Defaults instead.

How do I set grayscale as the default print mode?

Open Printing Preferences for your account (Settings, Bluetooth and devices, Printers and scanners, click printer, Printing preferences) and set Color to Grayscale or Black Only. For all users, use Printing Defaults on the Advanced tab. In PowerShell, run Set-PrintConfiguration -PrinterName “Your Printer Name” -Color $false to set grayscale programmatically.

Why do my default printer settings keep reverting?

The most common cause is “Let Windows manage my default printer” being enabled in Printers and scanners settings. Disable this toggle first. If settings still revert, run gpresult /r to check whether a Group Policy Object is overwriting your changes at logon. Point and Print can also sync server-side settings that overwrite local changes on reconnection.

How do I fix the “Set as default” button not appearing?

Open Settings, Bluetooth and devices, Printers and scanners. Scroll to Printer preferences and toggle “Let Windows manage my default printer” to Off. The Set as default button reappears immediately on the printer detail page. Windows hides the button when its automatic management feature is active.

Can I configure default printer settings using PowerShell?

Yes. Use the Set-PrintConfiguration cmdlet from the PrintManagement module. For example: Set-PrintConfiguration -PrinterName “Your Printer Name” -Color $false -DuplexingMode TwoSidedLongEdge -PaperSize A4. Run Get-PrintConfiguration -PrinterName “Your Printer Name” to read the current settings before making changes.

How do I configure default printer settings on a Mac?

Open System Settings, click Printers and Scanners, select your printer, and click Options and Supplies. The Options tab contains driver-specific default settings. For the default paper size across all apps, open System Settings, General, Language and Region, and change Paper Size to A4 or US Letter. This applies globally to every application on the system.

What is error 0x00000709 and how do I fix it?

Error 0x00000709 appears when Windows cannot write to the printer registry key at HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Windows due to a permissions conflict. Open regedit, navigate to that path, right-click the Windows key, select Permissions, and grant Full Control to your user account. Then open services.msc and restart the Print Spooler service.

How do I configure default printer settings in Windows 11 24H2?

The configuration steps remain the same as earlier Windows 11 versions. Use Settings, Bluetooth and devices, Printers and scanners, Printing preferences for per-user settings. Use Printer Properties, Advanced tab, Printing Defaults for all-users settings. Note that the IPP Class Driver introduced in Windows 11 24H2 may not expose all advanced driver options. For these, use your printer manufacturer’s management app.

Leave a Reply

Your email address will not be published. Required fields are marked *