Category filter
Script to turn system icons on/off on Windows devices
System icons like Clock, Volume, Network, Power, and Action Center, located in the taskbar’s notification area, provide quick access to essential functionalities. For example, enabling the Network icon in the notification area simplifies quick access to network settings for remote workers, streamlining their workflow. Conversely, disabling the Action Center icon can minimize distractions. This can be done with the help of script. IT administrators can execute the script to turn system icons on/off on Windows 10 devices with the help of Hexnode’s
Execute Custom Script remote action.
Batch scripts to turn different system icons on/off
The following different scripts can be used to turn system icons on/off individually:
Script to disable Clock system icon on Taskbar
1 |
REG ADD "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" /V HideClock /T REG_DWORD /D 1 /F |
The above command modifies a Windows Registry entry and sets the “HideClock” value under the “Explorer” key in the Registry to a DWORD value of 1. It effectively removes the clock system icon on the Windows taskbar. The /F switch forces this change without confirmation prompts.
Script to disable Volume system icon on Taskbar
1 |
REG ADD "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" /V HideSCAVolume /T REG_DWORD /D 1 /F |
The above command modifies a Windows Registry entry and sets the “HideSCAVolume” value under the “Explorer” key in the Registry to a DWORD value of 1. It effectively removes the Volume system icon on the Windows taskbar. The /F switch forces this change without confirmation prompts.
Script to disable Network system icon on Taskbar
1 |
REG ADD "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" /V HideSCANetwork /T REG_DWORD /D 1 /F |
The above command modifies a Windows Registry entry and sets the “HideSCANetwork” value under the “Explorer” key in the Registry to a DWORD value of 1. It effectively removes the Network system icon on the Windows taskbar. The /F switch forces this change without confirmation prompts.
Script to disable Power system icon on Taskbar
1 |
REG ADD "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" /V HideSCAPower /T REG_DWORD /D 1 /F |
The above command modifies a Windows Registry entry and sets the “HideSCAPower” value under the “Explorer” key in the Registry to a DWORD value of 1. It effectively removes the Power system icon on the Windows taskbar. The /F switch forces this change without confirmation prompts.
Script to disable Action Center system icon on Taskbar
1 |
REG ADD "HKLM\SOFTWARE\Policies\Microsoft\Windows\Explorer" /V DisableNotificationCenter /T REG_DWORD /D 1 /F |
The above command modifies a Windows Registry entry and sets the “HideSCAPower” value under the “Explorer” key in the Registry to a DWORD value of 1. It effectively removes the Action Center system icon on the Windows taskbar. The /F switch forces this change without confirmation prompts.
Script to enable Clock system icon on Taskbar
1 |
REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" /V HideClock /F |
The command mentioned above will add the Clock system icon to the taskbar.
Script to enable Volume system icon on Taskbar
1 |
REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" /V HideSCAVolume /F |
The above command adds the Volume icon to the taskbar.
Script to enable Network system icon on Taskbar
1 |
REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" /V HideSCANetwork /F |
The command mentioned above will add the Network system icon to the taskbar.
Script to enable Power system icon on Taskbar
1 |
REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" /V HideSCAPower /F |
The mentioned command adds the Power system icon to the taskbar on laptops.
Script to enable Action Center system icon on Taskbar
1 |
REG DELETE "HKLM\SOFTWARE\Policies\Microsoft\Windows\Explorer" /V DisableNotificationCenter /F |
The command mentioned above will add the Action Center system icon to the taskbar.