gerardfraser

Display switch behavior fix for hotkey on Windows 11 update EG:Windows 11 22h2 build 22621.1928

Jul 9th, 2023
533
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.50 KB | Fixit | 0 0
  1. Display switch behavior fix for hotkey on Windows 11 update
  2. EG:Windows 11 22h2 build 22621.1928 has changed display switch behavior again
  3. 1 = /internal
  4. 2 = /clone
  5. 3 = /extend
  6. 4 = /external
  7.  
  8. Method: Manually Create "Display Switch" Shortcuts on desktop for your needs
  9.  
  10. 1) Right click on desktop, click on new and then click on shortcuts.
  11. 2) Type the location of the item or copy and paste from below, then click on next.
  12. 3) Type "Display Switch or give your own name"for the name, and click on the Finish button.
  13. 4) You can pin the shortcut to Taskbar or Start Menu, you may assign a keyboard shortcut to it as well.
  14.  
  15. Updated display switch for hotkeys behaviors work on newest Windows 11 June 27 2023
  16. (Projection flyout)
  17. C:\Windows\System32\cmd.exe /C DisplaySwitch.exe
  18. Will bring up all modes
  19.  
  20. (PC screen only)
  21. C:\Windows\System32\cmd.exe /C DisplaySwitch 1
  22. Only the current main display is enabled. All other connected displays will be disabled. (When you're connected to a wireless projector, this option changes to Disconnect.)
  23.  
  24. (Duplicate/Clone)
  25. C:\Windows\System32\cmd.exe /C DisplaySwitch 2
  26. The main display will be mirrored on the second display.
  27.  
  28. (Extend)
  29. C:\Windows\System32\cmd.exe /C DisplaySwitch 3
  30. The main display is extended across the all connected display screens and allows you to have a desktop that spans them.
  31.  
  32. (Second screen only)
  33. C:\Windows\System32\cmd.exe /C DisplaySwitch 4
  34. The current main display will be disabled. All other connected displays will remain enabled with the second screen used as your new main display.
  35.  
  36.  
  37.  
  38.  
  39. Old display switch for hotkeys behaviors does not work on newest Windows 11 June 27 2023Windows
  40. [spoiler]
  41. (Projection flyout)
  42. %windir%\System32\DisplaySwitch.exe
  43. Will bring up all modes
  44. (PC screen only)
  45. %windir%\System32\DisplaySwitch.exe /internal
  46. Only the current main display is enabled. All other connected displays will be disabled. (When you're connected to a wireless projector, this option changes to Disconnect.)
  47. (Duplicate/Clone)
  48. %windir%\System32\DisplaySwitch.exe /clone
  49. The main display will be mirrored on the second display.
  50. (Extend)
  51. %windir%\System32\DisplaySwitch.exe /extend
  52. The main display is extended across the all connected display screens and allows you to have a desktop that spans them.
  53. (Second screen only)
  54. %windir%\System32\DisplaySwitch.exe /external
  55. The current main display will be disabled. All other connected displays will remain enabled with the second screen used as your new main display.
  56. [/spoiler]
Advertisement
Add Comment
Please, Sign In to add comment