-
-
Notifications
You must be signed in to change notification settings - Fork 0
Windows Usage
Zac Smith edited this page Jun 26, 2026
·
3 revisions
DisplaySnooze for Windows is a normal .exe.
Double-click:
DisplaySnooze.exeor run it from PowerShell:
.\DisplaySnooze.exeBy default it turns the displays off immediately, then repeats the monitor-off command every 4 seconds for 3 minutes.
.\DisplaySnooze.exe <guard-seconds> <interval-seconds>Examples:
.\DisplaySnooze.exe 300
.\DisplaySnooze.exe 600 5guard-seconds controls how long DisplaySnooze keeps repeating the display-off command.
- Default:
180 - Minimum:
15 - Maximum:
1800
interval-seconds controls how often it repeats the display-off command.
- Default:
4 - Minimum:
1 - Maximum:
60
DisplaySnooze does not:
- Lock your PC.
- Log you out.
- Put the PC to sleep.
- Hibernate.
- Shut down.
- Close apps.
- Change Windows power settings.
- Install a service.
- Add itself to startup.
- Use the network.
It sends the standard Windows monitor power command:
WM_SYSCOMMAND / SC_MONITORPOWER / 2
That is the Windows API way to ask the displays to power off.