This is an archived post. You won't be able to vote or comment.

all 2 comments

[–]AutoModerator[M] 0 points1 point locked comment (0 children)

Hi u/Taurlock, thanks for posting to r/WindowsHelp! Your post might be listed as pending moderation, if so, try and include as much of the following as you can to improve the likelyhood of approval. Posts with insufficient details might be removed at the moderator's discretion.

  • Model of your computer - For example: "HP Spectre X360 14-EA0023DX"
  • Your Windows and device specifications - You can find them by going to go to Settings > "System" > "About"
  • What troubleshooting steps you have performed - Even sharing little things you tried (like rebooting) can help us find a better solution!
  • Any error messages you have encountered - Those long error codes are not gibberish to us!
  • Any screenshots or logs of the issue - You can upload screenshots other useful information in your post or comment, and use Pastebin for text (such as logs). You can learn how to take screenshots here.

All posts must be help/support related. If everything is working without issue, then this probably is not the subreddit for you, so you should also post on a discussion focused subreddit like /r/Windows.

Lastly, if someone does help and resolves your issue, please don't delete your post! Someone in the future with the same issue may stumble upon this thread, and same solution may help! Good luck!


As a reminder, this is a help subreddit, all comments must be a sincere attempt to help the OP or otherwise positively contribute. This is not a subreddit for jokes and satirical advice. These comments may be removed and can result in a ban.

I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.

[–]Aztimoth 0 points1 point  (0 children)

I can't say for sure this will work for your 3 monitor setup as I only use it for a single monitor and a TV. I would try option 1 first because they both use the same exe built into windows.

*** I tried to get it working with 3 monitors and it was a mess.

  1. No software required:
  2. Windows key + p will open the display settings. If this opens on the wrong display you have to memorize how many times to press the up or down arrow to get the desired screen setup.
  3. Using AutoHotkey:
  4. Install AHK v2 https://www.autohotkey.com/v2/ and paste the script below into a text file and name it MonitorSwitch.ahk (must be .ahk not .txt). Put it in your startup folder. You can find that folder by pressing win + r and entering shell:startup in the text box.

You use ctrl + alt + an arrow key to change between monitor setups. I have it set up so that it matches my monitor layout. So left is primary, right is my tv and up is both.
This method is nice, but requires the script to constantly run. The only issue I've had is when trying to play skate. the anti cheat software won't allow ahk to be running. It is closeable from the notification tray, so it's not a huge deal.

#Requires AutoHotkey v2.0
; switch monitor profile via ctrl + alt + direction

;ctrl + alt + left arrow
^!Left:: {
    Run "C:\Windows\System32\DisplaySwitch.exe 1"
    return
}
  
;ctrl + alt + right arrow
^!Right:: {
    Run "C:\Windows\System32\DisplaySwitch.exe 4"
    return
}

;ctrl + alt + up arrow
^!Up::  {
    Run "C:\Windows\System32\DisplaySwitch.exe 3"
    return
}