I have an application, which after it disconnects from a VPN connection, resets the screensaver settings. What I'd like to do is create a GPO script or batch file to run every time the user logs into the workstation, without the user having to confirm the modifications.
Currently I have this reg file:
Windows Registry Editor Version 5.00
[HKEY_CURRENT_UESR\Control Panel\Desktop]
"ScreenSaveActive"="1"
"ScreenSaverIsSecure"="1"
"ScreenSaveTimeOut"="450"
"SCRNSAVE.EXE"="ribbons.scr"
I've set this to run under GPO > UC > WS > Scripts > Logon > ScriptPath [Path to .reg file] | Script Params [regedit /s].
regedit /s as silent install.
Any suggestions one what might work better or fault in my setup?