I've been able to get 2 slideshows to run simultaneously using command line switches and PowerShell, but I have some questions:
Is it possible to launch GPS on 3 monitors in a single command rather than 3 separate ones? Per the order of my monitors I would like it to run on I tried these, but it would only run on #3:
Invoke-Expression "& `"C:\Program Files\gPhotoShowPro\gPhotoShow64.exe`" /m4, /m2, /m3, /s SlideShow.gss"
Invoke-Expression "& `"C:\Program Files\gPhotoShowPro\gPhotoShow64.exe`" /m4 /m2 /m3 /s SlideShow.gss"
2. Similarly, I'd like to be able to exit all 3 at the same time instead of having to left click each monitor, then press ESC. Is that also possible?
Command line questions
Re: Command line questions
Hello,
In order to run gPhotoShow on 3 monitors you must start 3 instances of the program and the only way to do it is to run 3 commands with different /m parameters.
for example in a bat file add these lines:
start "" "C:\Program Files\gPhotoShowPro\gPhotoShow64.exe" /m1 /s slideshow1.gss
start "" "C:\Program Files\gPhotoShowPro\gPhotoShow64.exe" /m2 /s slideshow2.gss
start "" "C:\Program Files\gPhotoShowPro\gPhotoShow64.exe" /m3 /s slideshow3.gss
then you can close them with:
start "" "C:\Program Files\gPhotoShowPro\gPhotoShow64.exe" /q1
start "" "C:\Program Files\gPhotoShowPro\gPhotoShow64.exe" /q2
start "" "C:\Program Files\gPhotoShowPro\gPhotoShow64.exe" /q3
In order to run gPhotoShow on 3 monitors you must start 3 instances of the program and the only way to do it is to run 3 commands with different /m parameters.
for example in a bat file add these lines:
start "" "C:\Program Files\gPhotoShowPro\gPhotoShow64.exe" /m1 /s slideshow1.gss
start "" "C:\Program Files\gPhotoShowPro\gPhotoShow64.exe" /m2 /s slideshow2.gss
start "" "C:\Program Files\gPhotoShowPro\gPhotoShow64.exe" /m3 /s slideshow3.gss
then you can close them with:
start "" "C:\Program Files\gPhotoShowPro\gPhotoShow64.exe" /q1
start "" "C:\Program Files\gPhotoShowPro\gPhotoShow64.exe" /q2
start "" "C:\Program Files\gPhotoShowPro\gPhotoShow64.exe" /q3
Gianpaolo Bottin
gPhotoShow.com
gPhotoShow.com