i set the screensaver in the registry to run a prog to hide the taskbar completely , wat i need is to be able to tack on 2 more programs this same way of editing the screensaver.exe reg key,
also i need to be able to re-run these three prog/shtcuts when comp comes out of idleness, to reverse the hidetaskbar/ showdesktop(restore windows)/ and hidedesktopicons.exe
-bunsack
You could use the command processor to run multiple programs by making cmd.exe the program that runs and give it the programs to run seperated by &. Say you want to run C:\Program Files\Prog1\Prog1.exe and C:\Program Files\Prog2\Prog2.exe then set the command to run when it enters/exits the screensaver to
cmd.exe /s /c ""C:\Program Files\Prog1\Prog1.exe" & "C:\Program Files\Prog2\Prog2.exe""
You need the /s and double quotes if more than one path includes spaces, otherwise you can leave out the /s and just quote the one path, however the above will work regardless of spaces in the paths.
The cmd windows will go away after the last program finishes.
Cheers