Forum Discussion
Steven_613
Dec 31, 2021Copper Contributor
Making Teams start on Secondary Monitor
Is there a way to force Teams to start on my secondary monitor (Screen 2)? Every morning I start Teams, it comes up on Screen 1 and I have to move it over to Screen 2 so I can do my work while still ...
- Dec 31, 2021
HiSteven_613 It's not a Teams function - it's a function of selecting the monitor where you want any particular program to open. You just drag the Teams icon over to the monitor you want to use - here is one of the many online instructions I found: https://www.youtube.com/watch?v=1w7aOUgq8eQ.
AKI_SSI
Apr 21, 2026Copper Contributor
The best option is to install and use "AutoHotKey" and run the following script in the ahk file:
(Note: I am using a wide monitor so adjust the first parameter (3840,...)as required
SetTitleMatchMode 2
Loop {
for window in WinGetList("Microsoft Teams") {
try {
WinMove(3840,0,1280,800,window)
}
}
sleep 1000
}