In Windows 11 22H2, Microsoft has replaced the legacy Print Dialog for all classic (win32) apps, e.g., Notepad, WordPad, Notepad++, etc., with a new dialog. Earlier, this dialog was available only for UWP apps (aka Store apps). Also, there is a new Print Queue dialog introduced in this version.
Step-by-step guide
Using Command Prompt
- Open a Command Prompt window.
Type the following command exactly as given below, and press Enter.
cmd
reg add "HKCU\Software\Microsoft\Print\UnifiedPrintDialog" /v "PreferLegacyPrintDialog" /d 1 /t REG_DWORD /f
- If the command was executed correctly, you should see the message “The operation completed successfully.”
Using Registry Editor
- Alternately, you can start the Registry Editor (regedit.exe) and go to the following branch
HKEY_CURRENT_USER\Software\Microsoft\Print\UnifiedPrintDialog
- Create a new REG_DWORD value named
PreferLegacyPrintDialog
SetPreferLegacyPrintDialog
data to 1. - Exit the Registry Editor.