![]() |
![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() |
| 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. |
| |||||||
![]() |
| |
| | #1 (permalink) |
| | 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 Specs![]() |
| | #2 (permalink) |
| | 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 Specs![]() |
| | #3 (permalink) |
| | 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. what needs changing (when I'm next in). -- Jon |
My System Specs![]() |
| | #4 (permalink) |
| | 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 Specs![]() |
| | #5 (permalink) |
| | 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 Specs![]() |
| | #6 (permalink) |
| | 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 Specs![]() |
| | #7 (permalink) |
| | 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 Specs![]() |
| | #8 (permalink) |
| | 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 Specs![]() |
| | #9 (permalink) |
| | 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 Specs![]() |
| | #10 (permalink) |
| | 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 news A0FB08A-9A7E-4CB7-A731-465764770E2B@xxxxxxThanks 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 Specs![]() |
![]() |
| Thread Tools | |
| |
Similar Threads | ||||
| Thread | Forum | |||
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 | |||