Icons in the taskbar always active and visible

Good morning to everyone on the forum, I had a further request: is it possible through NTLite to always set all the icons in the taskbar active and visible? Furthermore, I cannot create Office silent in Italian, I have followed various guides but in the end it always gives me an error, even if I follow the guide published on this forum (which recommends winrar). Thanks for any replies.
 

Attachments

  • Screenshot 2024-02-15 082629.png
    Screenshot 2024-02-15 082629.png
    79.7 KB
For all non-keyboard input devices, you can import a .reg file from Post-Setup (User).
Code:
Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\TabletTip\1.7]
"TipbandDesiredVisibility"=dword:00000001

[HKEY_CURRENT_USER\Software\Microsoft\Touchpad]
"TouchpadDesiredVisibility"=dword:00000001

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\PenWorkspace]
"PenWorkspaceButtonDesiredVisibility"=dword:00000001

There is no global setting to force all taskbar tray icons to be visible, because each App has to register if they want to provide Notifications. What you need is a script run with Admin rights to update the icon visibility.

This PowerShell script works on W10 or 11, and can be added to Post-Setup (User). But if you expect to install more Apps later, then run the script again as Administrator.
Code:
powershell -nop -ep bypass -f Unhide_TrayIcons.ps1
 

Attachments

  • Unhide-TrayIcons.zip
    1 KB
I just tried putting the ps1 file as user but it doesn't work, the icons are always hidden and you have to click on the little arrow to see them
 
Back
Top