Is there a way to autostart apps and have them appear on a specific screen?
I have a startupscript that looks like this:
Set shell = CreateObject("WScript.Shell")
progList = Array("C:\Program Files\Microsoft Office\Office12\OUTLOOK.EXE",_
"C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\devenv.exe",_
"C:\Program Files\Adobe\Adobe Dreamweaver CS4\Dreamweaver.exe",_
"C:\Program Files\Internet Explorer\iexplore.exe",_
"C:\Program Files\Microsoft Office\Office12\WINWORD.EXE")
For Each prog in progList
'WScript.Echo "File Name: " & prog
shell.run """" & prog & """", 1, false
WScript.sleep 20000 '20 seconds
Next
But I have 3 screens. Is there a way to have appX appear on screen 1, appY to appear on screen 2 and appZ to appear on screen 3 etc in the startup process?
firefox.exe -P other-profile -no-remotewill startup a second firefox instance usingother-profile. – quack quixote Nov 19 '09 at 9:18