This script automates the process of switching your primary monitor with a dummy monitor using MultiMonitorTool. This is useful for users of Sunshine (a screen sharing software) who experience issues with sharing their primary monitor.
- If using Windows 11, you'll need to set the default terminal to Windows Console Host as there is currently a bug in Windows Terminal that prevents hidden consoles from working properly.
- That can be changed at Settings > System > For Developers > Terminal [Let Windows decide] >> (change to) >> Terminal [Windows Console Host]
- On older versions of Windows 11 it can be found at: Settings > Privacy & security > Security > For developers > Terminal [Let Windows decide] >> (change to) >> Terminal [Windows Console Host]
- The script will stop working if you move the folder, simply reinstall it to resolve that issue.
- Due to Windows API restrictions, this script does not work on cold reboots (hard crashes or shutdowns of your computer).
- If you're cold booting, simply sign into the computer using the "Desktop" app on Moonlight, then end the stream, then start it again.
- In the Sunshine WEB UI, make sure you leave the Output Name blank under the Audio/Video tab, otherwise it could cause breaking behavior with this script.
- This script no longer supports GFE, but you are able to retrieve a legacy version of this script that does support it: https://github.com/Nonary/MonitorSwapAutomation/releases/tag/legacy
- Version 0.19.1 or higher
- Host must be Windows
-
Open up MultiMonitorTool and click on
File -> Save Monitors Configuration
and save it in the current folder this script is located in with the name ofprimary.cfg
. -
Repeat the same steps of step 1, except save it with the name of
dummy.cfg
. -
Open up the
dummy.cfg
file and set every parameter related to your primary monitor's position, refresh rate, etc. to0
. For example:Name=\\.\DISPLAY1 MonitorID=MONITOR\GSMC0C8\{4d36e96e-e325-11ce-bfc1-08002be10318}\0009 SerialNumber=LGTV BitsPerPixel=0 Width=0 Height=0 DisplayFlags=0 DisplayFrequency=0 DisplayOrientation=0 PositionX=0 Name=\\.\DISPLAY11 MonitorID=MONITOR\XMD29831\{4d36e96e-e325-11ce-bfc1-08002be10318}\0007 SerialNumber=DUMMY BitsPerPixel=32 Width=3840 Height=2160 DisplayFlags=0 DisplayFrequency=120 DisplayOrientation=0 PositionX=0
In the example above, every numerical value has been set to 0, which lets the script know that the display should be turned off. Also take note in the example, that my dummy display should have values configured to let it know that it should be turned on.
-
Verify that the
dummy.cfg
file has only one display that contains values for theBitsPerPixel
,Width
,Height
, and so on. 4a. For theprimary.cfg file
, it does not matter if there are other displays enabled, but you would want to make sure your dummy is "zeroed out" so you don't end up with an invisible monitor. -
Basically, primary will "zero out" the dummy plug, and dummy will "zero out" the main display. This will automatically transfer games and windows back to the primary monitor if setup this way.
-
In the
dummy.cfg
file, locate your dummyMonitorId
and copy and paste it to thedummyMonitorId
key in the settings.json file. Make sure to escape the backslashes. -
Validate you have escaped the backslashes, below is an example of a valid settings.json file.
{ "startDelay": 2, "gracePeriod": 60, "configSaveLocation": "%TEMP%", "dummyMonitorId": "MONITOR\\XMD009A\\{4d36e96e-e325-11ce-bfc1-08002be10318}\\0010" }
-
Install the script by double clicking the Install.bat file, you may get a smart-screen warning... this is normal.
-
You will be prompted for administrator rights, as modifying Sunshine configuration will require admin rights in the coming future.
-
Verify that the sunshine.conf file is configured properly, if successful the global_prep_cmd should look like this global_prep_cmd = [{"do":"powershell.exe -executionpolicy bypass -file "F:\sources\MonitorSwapAutomation\MonitorSwap-Dummy.ps1"","elevated":"false","undo":"powershell.exe -executionpolicy bypass -file "F:\sources\MonitorSwapAutomation\MonitorSwap-Functions.ps1" True"}]
The paths referenced above will vary on your machine.
If you encounter issues with the script, you can try the following:
-
Check that your dummy monitor
MonitorId
matches the value in thedummyMonitorId
variable in thesettings.json
file. -
Check that you have escaped the backslashes for dummyMonitorId in the
settings.json
file. Valid: MONITOR\\GSMC0C8\\{4d36e96e-e325-11ce-bfc1-08002be10318}\\0009Invalid: MONITOR\GSMC0C8{4d36e96e-e325-11ce-bfc1-08002be10318}\0009
-
Check that you have set every parameter related to the primary monitor's resolution in the
dummy.cfg
file to0
. -
Check that you have set every parameter related to the dummy monitor's resolution in the
primary.cfg
file to0
. -
Check that you have at least one monitor not "zeroed out" in both the primary.cfg and dummy.cfg files.
-
Ensure that you have followed the requirements for Sunshine users as listed above.
-
Increase the startDelay in the settings file if you're experiencing the script only works intermitently.
-
If you are still experiencing issues, try uninstalling and installing it again.
ResolutionAutomation script isn't changing my resolution after connecting and or is intermittently working
- First, ensure that MonitorSwapper is installed first, then install the ResolutionAutomation script.
- If you installed them out of order, uninstall both, then install MonitorSwapper, then ResolutionAutomation.
- Adjust the start delay in the settings.json file to 3 or 4 seconds and that should resolve that issue.
- Sometimes the swap can take longer to do and the resolution swap is happening on your primary screen
- Adjusting the start delay will give the swap more time to complete, thus making sure resolution is changed on the correct monitor.
- You will have to do this workaround mentioned here: #9
- There is currently a bug in the MultiMonitor tool in some scenarios with people who have dual screens. I do not have the source code for that tool, so it is impossible for me to fix directly, a workaround has to be done until resolved by Nirsoft. Please report your issue to [email protected] so he can gather more users and data to ultimately resolve this issue.
- Fixes a bug that prevented the script from restoring the display in some scenarios, if user left their Moonlight client at the host screen.
- Fixed a bug that prevented the script from self-terminating itself after the user suspended the session longer than their defined grace period in the settings file.
- Better multi-monitor support by validating that all screens have been restored instead of just the main primary one.
- Primary monitor id is no longer required in settings and has been removed, script will now automatically figure out the primary monitors identity.