Problemi del taskbar/traybar/area di notifica ?

Se vi capita di veder sparire le icone dei programmi minimizzati in basso a destra nell’area di notifica (traybar) o avete malfunzionamenti legati alla taskbar (l’area dove appaiono i pulsanti dei programmi in esecuzione) o alla barra degli strumenti di avvio veloce, provate questo strumento:

http://www.kellys-korner-xp.com/TaskBarRepairToolPlus!.zip

E’ gratuito per quasi tutte le funzioni, alcune altre richiedono una registrazione da 5$.

Su questo sito http://www.kellys-korner-xp.com c’è inoltre una marea di strumenti perlopiù gratuiti per i problemi di XP.

Se invece volete una soluzione fai-da-te testata eccola qui; copiate quanto segue in un file di testo con estensione .vbs (ad es. riparatray.vbs) ed eseguitelo con un doppio clic:

‘xp_pastitems.vbs – Remove Past Items from the System Tray
‘Based on fixes by Doug Knox and Kelly Theriot.
‘© Doug Knox and Kelly Theriot – 8/23/2003

Message = “Per funzionare correttamente questo script chiuderà” & vbCR
Message = Message & “e riavvierà Windows Explorer.” & vbCR
Message = Message & “Questo non pregiudica il sistema o il vostro lavoro.” & vbCR & vbCR
Message = Message & “Continuo ?”

X = MsgBox(Message, vbYesNo, “Attenzione”)

If X = 6 Then

On Error Resume Next

Set WshShell = WScript.CreateObject(“WScript.Shell”)

WshShell.RegDelete “HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\TrayNotify\IconStreams”
WshShell.RegDelete “HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\TrayNotify\PastIconsStream”

Set WshShell = Nothing

On Error GoTo 0

For Each Process in GetObject(“winmgmts:”). _
ExecQuery (“select * from Win32_Process where name=’explorer.exe'”)
Process.terminate(0)
Next

MsgBox “Finito.” & vbcr & vbcr & “© Doug Knox and Kelly Theriot”, 4096, “Fatto”

Else

MsgBox “Il sistema non è stato modificato.” & vbcr & vbcr & “© Doug Knox and Kelly Theriot”, 4096, “L’utente ha rinunciato.”

End If