Windows Vista Forums
Vista Forums Home Join Vista Forums Windows 7 Forum Vista Tutorials Tags
Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks.

Go Back   Vista Forums > Vista Newsgroups > Vista General

Vista - Notification Area

Reply
 
Old 10-07-2007   #1 (permalink)
spjr2


 
 

Notification Area

Is there any way to delete Past Items in the Notification Area(Customize
Notification Icons)? I had a VBScript I used with XP which doesn't work with
Vista.

My System SpecsSystem Spec
Old 10-07-2007   #2 (permalink)
Saucy


 
 

Re: Notification Area

"spjr2" <spjr2@xxxxxx> wrote in message
news:65283285-7A6F-40C2-A267-8D9CAC035870@xxxxxx
Quote:

> Is there any way to delete Past Items in the Notification Area(Customize
> Notification Icons)? I had a VBScript I used with XP which doesn't work
> with
> Vista.

Right-click on the Taskbar > select Properties > Notification Area tab >
check the "Hide inactive icons" checkbox > click the "Customize" button >
customize your Notification Area:

You can set any icon to:

Show
Hide
Hide when inactive

and Default setting.

Click OK


Saucy

My System SpecsSystem Spec
Old 10-07-2007   #3 (permalink)
Jon


 
 

Re: Notification Area


"spjr2" <spjr2@xxxxxx> wrote in message
news:65283285-7A6F-40C2-A267-8D9CAC035870@xxxxxx
Quote:

> Is there any way to delete Past Items in the Notification Area(Customize
> Notification Icons)? I had a VBScript I used with XP which doesn't work
> with
> Vista.
If you post in your current script (right-click > edit), then I'll show you
what needs changing (when I'm next in).

--
Jon



My System SpecsSystem Spec
Old 10-07-2007   #4 (permalink)
Wayne L


 
 

RE: Notification Area

spjr2 - Go to "howtogeek.com" homepage; find Windows Vista on the right;
scroll down to "Tips and Tweaks"; find " Clean Up Past Notification Icons in
Windows " and go from there.
It works, but they start building up again so keep this tip handy. Wayne
--
Wayne L


"spjr2" wrote:
Quote:

> Is there any way to delete Past Items in the Notification Area(Customize
> Notification Icons)? I had a VBScript I used with XP which doesn't work with
> Vista.
My System SpecsSystem Spec
Old 10-07-2007   #5 (permalink)
Ramesh, MS-MVP


 
 

Re: Notification Area

Use the script here:

How to Clear Past Items from the Notification Area in Windows Vista:
http://www.winhelponline.com/articles/140/1/

--
Regards,

Ramesh Srinivasan, Microsoft MVP [Windows Shell/User]
Windows® Troubleshooting http://www.winhelponline.com


"spjr2" <spjr2@xxxxxx> wrote in message news:65283285-7A6F-40C2-A267-8D9CAC035870@xxxxxx
Is there any way to delete Past Items in the Notification Area(Customize
Notification Icons)? I had a VBScript I used with XP which doesn't work with
Vista.
My System SpecsSystem Spec
Old 10-08-2007   #6 (permalink)
spjr2


 
 

Re: Notification Area

I got this from another site (kellys-korner)
'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 = "To work correctly, the script will close" & vbCR
Message = Message & "and restart the Windows Explorer shell." & vbCR
Message = Message & "This will not harm your system." & vbCR & vbCR
Message = Message & "Continue?"

X = MsgBox(Message, vbYesNo, "Notice")

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 "Finished." & vbcr & vbcr & "© Doug Knox and Kelly Theriot", 4096,
"Done"

Else

MsgBox "No changes were made to your system." & vbcr & vbcr & "© Doug Knox
and Kelly Theriot", 4096, "User Cancelled"

End If

"Jon" wrote:
Quote:

>
> "spjr2" <spjr2@xxxxxx> wrote in message
> news:65283285-7A6F-40C2-A267-8D9CAC035870@xxxxxx
Quote:

> > Is there any way to delete Past Items in the Notification Area(Customize
> > Notification Icons)? I had a VBScript I used with XP which doesn't work
> > with
> > Vista.
>
> If you post in your current script (right-click > edit), then I'll show you
> what needs changing (when I'm next in).
>
> --
> Jon
>
>
>
>
My System SpecsSystem Spec
Old 10-08-2007   #7 (permalink)
spjr2


 
 

RE: Notification Area

Thanks for the tip-I'm always looking for Windows help sites.

"Wayne L" wrote:
Quote:

> spjr2 - Go to "howtogeek.com" homepage; find Windows Vista on the right;
> scroll down to "Tips and Tweaks"; find " Clean Up Past Notification Icons in
> Windows " and go from there.
> It works, but they start building up again so keep this tip handy. Wayne
> --
> Wayne L
>
>
> "spjr2" wrote:
>
Quote:

> > Is there any way to delete Past Items in the Notification Area(Customize
> > Notification Icons)? I had a VBScript I used with XP which doesn't work with
> > Vista.
My System SpecsSystem Spec
Old 10-08-2007   #8 (permalink)
spjr2


 
 

Re: Notification Area

Thanks for your help

"Ramesh, MS-MVP" wrote:
Quote:

> Use the script here:
>
> How to Clear Past Items from the Notification Area in Windows Vista:
> http://www.winhelponline.com/articles/140/1/
>
> --
> Regards,
>
> Ramesh Srinivasan, Microsoft MVP [Windows Shell/User]
> Windows® Troubleshooting http://www.winhelponline.com
>
>
> "spjr2" <spjr2@xxxxxx> wrote in message news:65283285-7A6F-40C2-A267-8D9CAC035870@xxxxxx
> Is there any way to delete Past Items in the Notification Area(Customize
> Notification Icons)? I had a VBScript I used with XP which doesn't work with
> Vista.
>
My System SpecsSystem Spec
Old 10-08-2007   #9 (permalink)
Jon


 
 

Re: Notification Area

"spjr2" <spjr2@xxxxxx> wrote in message
news:A6C97928-897D-4FC6-8EBB-EE29C6204B7B@xxxxxx
Quote:

>I got this from another site (kellys-korner)
> '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 = "To work correctly, the script will close" & vbCR
> Message = Message & "and restart the Windows Explorer shell." & vbCR
> Message = Message & "This will not harm your system." & vbCR & vbCR
> Message = Message & "Continue?"
>
> X = MsgBox(Message, vbYesNo, "Notice")
>
> 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 "Finished." & vbcr & vbcr & "© Doug Knox and Kelly Theriot", 4096,
> "Done"
>
> Else
>
> MsgBox "No changes were made to your system." & vbcr & vbcr & "© Doug Knox
> and Kelly Theriot", 4096, "User Cancelled"
>
> End If
>




Looks fine. The only change with Vista is that the registry locations have
now changed. So if you wanted to use the same script then you'd just need to
update these 2 lines to point to the new locations

Quote:

> WshShell.RegDelete
> "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\TrayNotify\IconStreams"
> WshShell.RegDelete
> "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\TrayNotify\PastIconsStream"
>

ie

WshShell.RegDelete "HKEY_CURRENT_USER\Software\Classes\Local
Settings\Software\Microsoft\Windows\CurrentVersion\TrayNotify\IconStreams"

WshShell.RegDelete "HKEY_CURRENT_USER\Software\Classes\Local
Settings\Software\Microsoft\Windows\CurrentVersion\TrayNotify\PastIconsStream"



adjusted of course for Windows Mail wordwrap and indent markers ;-)

You can also use 'HKCU' instead of 'HKEY_CURRENT_USER' if you like.

--
Jon



My System SpecsSystem Spec
Old 10-08-2007   #10 (permalink)
Ramesh, MS-MVP


 
 

Re: Notification Area

You're welcome!

--
Regards,

Ramesh Srinivasan, Microsoft MVP [Windows Shell/User]
Windows® Troubleshooting http://www.winhelponline.com


"spjr2" <spjr2@xxxxxx> wrote in message newsA0FB08A-9A7E-4CB7-A731-465764770E2B@xxxxxx
Thanks for your help

"Ramesh, MS-MVP" wrote:
Quote:

> Use the script here:
>
> How to Clear Past Items from the Notification Area in Windows Vista:
> http://www.winhelponline.com/articles/140/1/
>
> --
> Regards,
>
> Ramesh Srinivasan, Microsoft MVP [Windows Shell/User]
> Windows® Troubleshooting http://www.winhelponline.com
>
>
> "spjr2" <spjr2@xxxxxx> wrote in message news:65283285-7A6F-40C2-A267-8D9CAC035870@xxxxxx
> Is there any way to delete Past Items in the Notification Area(Customize
> Notification Icons)? I had a VBScript I used with XP which doesn't work with
> Vista.
>
My System SpecsSystem Spec
Reply

Thread Tools


Similar Threads
Thread Forum
Solved notification area General Discussion
Notification Area Vista General
notification area Vista General
Notification Area Icon Vista performance & maintenance
CONTROL OF THE NOTIFICATION AREA Vista General


Vista Forums is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
© Designer Media Ltd

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46