Advertisement
PC_Aide

All icons & notification on the taskbar.bat

Feb 13th, 2019
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 1.50 KB | None | 0 0
  1. ::&--------------------------------------------------------------------------------------------------------------
  2. :: SRC -> https://www.tenforums.com/tutorials/5313-hide-show-notification-area-icons-taskbar-windows-10-a.html
  3. :: Elevated
  4. :: Data -> o -> on | 1 -> off
  5. ::
  6. :: O/P -> https://imgur.com/a/Y3zesIp
  7. ::
  8. :: By default, the value don't exist  
  9. ::&--------------------------------------------------------------------------------------------------------------
  10. ::&◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼
  11. :: mp4 ->
  12. ::&◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼
  13.  
  14. ::Current User
  15. reg add "hkcu\software\microsoft\windows\currentVersion\explorer" /v enableAutoTray /t reg_dword /d 0 /f && taskKill /f /im explorer.exe && start explorer.exe
  16.  
  17. ::All User | O/P -> https://imgur.com/ZUeIuor
  18. reg add "hklm\software\microsoft\windows\currentVersion\explorer" /v enableAutoTray /t reg_dword /d 0 /f && taskKill /f /im explorer.exe && start explorer.exe
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement