Category filter
Script to Change Screensaver Time on Windows
A screensaver is set to turn on after a period of inactivity of the user. It is important to protect your devices when unattended as it is vulnerable to potential intruders. A screensaver prevents someone from viewing your personal files and can also be used as a medium to display your brand when idle. You can set a time delay for inactivity before the preset screensaver kicks in with Hexnode’s custom script feature.
PowerShell Script
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
param( [int]$timeLimit ) try { if($timeLimit) { "changing machine inactivity limit to "+ $timeLimit + " seconds" $path = 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System\' $name = 'InactivityTimeoutSecs' Set-ItemProperty -Path $path -Name $name -Value $timeLimit "-----inactivity limit successfully updated-----" } else { "-----------please provide machine inactivity limit as argument (in seconds)-----------" } } catch { Write-Output $_.Exception.Message } |
The script takes input $timeLimit
in seconds and modifies the wait time for the screensaver already set by the user on the device to take effect.
The script works by modifying the registry to change InactivityTimeoutSecs
at the path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System\
.
Time delay is set in seconds. If not provided, the script returns an output to enter the inactivity limit in seconds as an argument.
Batch Script
1 |
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v InactivityTimeoutSecs /t REG_DWORD /d <time> /f |
The reg add
command will create a REG_DWORD under the location HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System. Replace <time>
with an integer value ranging from 0 to 599940, indicating the wait time for the screensaver already set by the user on the device to take effect. The restriction will take effect after the device restarts. You can use the Restart Device action to remotely initiate a device restart.
For example:
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v InactivityTimeoutSecs /t REG_dWORD /d 60 /f