|
Answer» Hello everyone!
My new issue is with a custom screen saver. Our Home Office has sent out a screen saver to use at our campuses. They included an EXE that will install a screen saver and set it as the default. What i did was run the EXE so it placed the "ITEP_SS.scr" in "C:\WINDOWS\System32\". Then i copied the "ITEP_SS.scr" so i COULD make a BAT file that will be used to install it. Every TIME i run my BAT file the screen saver NEVER stays as the new one. After applying the BAT file to copy and install as the default the screen saver setting is set to "None". Does anyone have any suggestions? Below is what my BAT file looks LIKE. I added the pause in there to see if there were issues copying or adding the entries, but there are none.
Code: [Select]mkdir "C:\Program Files\IT\ITEP_SS\ScreenSaver" copy /Y "%~dp0\screensaver\ITEP_SS.scr" "C:\Program Files\IT\ITEP_SS\ScreenSaver" copy /Y "%~dp0\screensaver\ITEP_SS.scr" "%SystemRoot%\system32" pause reg add "HKCU\Control Panel\Desktop" /V ScreenSaveActive /T REG_SZ /F /D 0 reg add "HKCU\Control Panel\Desktop" /V ScrnSave.exe /T REG_SZ /F /D "%SystemRoot%\system32\ITEP_SS.scr" reg add "HKCU\Control Panel\Desktop" /V ScreenSaveTimeOut /T REG_SZ /F /D 3000 reg add "HKCU\Control Panel\Desktop" /V ScreenSaveActive /T REG_SZ /F /D 1 pause
Any ideas are MUCH appreciated.I am so sorry for the double post, but i found a partial FIX for my issues...
When you change the following line:
Code: [Select]reg add "HKCU\Control Panel\Desktop" /V ScrnSave.exe /T REG_SZ /F /D "%SystemRoot%\system32\ITEP_SS.scr" To
Code: [Select]reg add "HKCU\Control Panel\Desktop" /V ScrnSave.exe /T REG_SZ /F /D "ITEP_SS.scr" It seems to work for changing the screen saver. THe only issue now, it that the "wait" option is set to 20 minutes and i can not get it to disable or change. Any ideas guy and/or gals?
|