Script to turn system icons on/off on Windows devices - Hexnode Help Center (2024)

Jump To

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.

Disclaimer:


The sample scripts provided below are adapted from third-party open source sites.

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

Script to Disable Volume system icon

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

Script to Disable Network system icon

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

Script to Disable Power system icon

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

Script to Disable Action-Center system icon

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.

Note:


After executing the script successfully, restart the device for changes to take effect.

Script to enable Clock system icon on Taskbar

Script to Enable Clock system icon

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

Script to Enable Volume system icon

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

Script to Enable Network system icon

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

Script to Enable Power system icon

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

Script to Enable Action-Center system icon

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.

Notes:

  • It is recommended to manually validate the script execution on a system before executing the action in bulk.
  • Hexnode will not be responsible for any damage/loss to the system on the behavior of the script.
Script to turn system icons on/off on Windows devices - Hexnode Help Center (2024)

References

Top Articles
Latest Posts
Article information

Author: Jerrold Considine

Last Updated:

Views: 5301

Rating: 4.8 / 5 (78 voted)

Reviews: 85% of readers found this page helpful

Author information

Name: Jerrold Considine

Birthday: 1993-11-03

Address: Suite 447 3463 Marybelle Circles, New Marlin, AL 20765

Phone: +5816749283868

Job: Sales Executive

Hobby: Air sports, Sand art, Electronics, LARPing, Baseball, Book restoration, Puzzles

Introduction: My name is Jerrold Considine, I am a combative, cheerful, encouraging, happy, enthusiastic, funny, kind person who loves writing and wants to share my knowledge and understanding with you.