Go Back   Technology Questions > Software Questions > Operating System Questions > Vista Community > Windows Vista

Windows Vista Discuss the different versions of Windows Vista, Fuji, or Vienna

Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old 10-07-2007, 11:10 AM
spjr2
Tablet PC Guest
 
Posts: n/a
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.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

 
Old 10-07-2007, 11:10 AM
Xploder HD Movie Player for PS3. Manage, convert and transfer media files between the PC and PS3.
  #2 (permalink)  
Old 10-07-2007, 12:40 PM
Saucy
Tablet PC Guest
 
Posts: n/a
Re: Notification Area

"spjr2" <spjr2@discussions.microsoft.com> wrote in message
news:65283285-7A6F-40C2-A267-8D9CAC035870@microsoft.com...
> 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

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #3 (permalink)  
Old 10-07-2007, 01:40 PM
Jon
Tablet PC Guest
 
Posts: n/a
Re: Notification Area


"spjr2" <spjr2@discussions.microsoft.com> wrote in message
news:65283285-7A6F-40C2-A267-8D9CAC035870@microsoft.com...
> 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



Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #4 (permalink)  
Old 10-07-2007, 06:10 PM
Wayne L
Tablet PC Guest
 
Posts: n/a
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:

> 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.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #5 (permalink)  
Old 10-07-2007, 07:50 PM
Ramesh, MS-MVP
Tablet PC Guest
 
Posts: n/a
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@discussions.microsoft.com> wrote in message news:65283285-7A6F-40C2-A267-8D9CAC035870@microsoft.com...
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.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #6 (permalink)  
Old 10-08-2007, 10:20 AM
spjr2
Tablet PC Guest
 
Posts: n/a
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\Ex plorer\TrayNotify\IconStreams"
WshShell.RegDelete
"HKCU\Software\Microsoft\Windows\CurrentVersion\Ex plorer\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:

>
> "spjr2" <spjr2@discussions.microsoft.com> wrote in message
> news:65283285-7A6F-40C2-A267-8D9CAC035870@microsoft.com...
> > 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
>
>
>
>

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #7 (permalink)  
Old 10-08-2007, 10:30 AM
spjr2
Tablet PC Guest
 
Posts: n/a
RE: Notification Area

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

"Wayne L" wrote:

> 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:
>
> > 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.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #8 (permalink)  
Old 10-08-2007, 10:30 AM
spjr2
Tablet PC Guest
 
Posts: n/a
Re: Notification Area

Thanks for your help

"Ramesh, MS-MVP" wrote:

> 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@discussions.microsoft.com> wrote in message news:65283285-7A6F-40C2-A267-8D9CAC035870@microsoft.com...
> 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.
>

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #9 (permalink)  
Old 10-08-2007, 10:50 AM
Jon
Tablet PC Guest
 
Posts: n/a
Re: Notification Area

"spjr2" <spjr2@discussions.microsoft.com> wrote in message
news:A6C97928-897D-4FC6-8EBB-EE29C6204B7B@microsoft.com...
>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\Ex plorer\TrayNotify\IconStreams"
> WshShell.RegDelete
> "HKCU\Software\Microsoft\Windows\CurrentVersion\Ex plorer\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


> WshShell.RegDelete
> "HKCU\Software\Microsoft\Windows\CurrentVersion\Ex plorer\TrayNotify\IconStreams"
> WshShell.RegDelete
> "HKCU\Software\Microsoft\Windows\CurrentVersion\Ex plorer\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



Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #10 (permalink)  
Old 10-08-2007, 06:30 PM
Ramesh, MS-MVP
Tablet PC Guest
 
Posts: n/a
Re: Notification Area

You're welcome!

--
Regards,

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


"spjr2" <spjr2@discussions.microsoft.com> wrote in message news:DA0FB08A-9A7E-4CB7-A731-465764770E2B@microsoft.com...
Thanks for your help

"Ramesh, MS-MVP" wrote:

> 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@discussions.microsoft.com> wrote in message news:65283285-7A6F-40C2-A267-8D9CAC035870@microsoft.com...
> 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.
>

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #11 (permalink)  
Old 10-18-2007, 02:40 PM
Azad
Tablet PC Guest
 
Posts: n/a
RE: Notification Area



"spjr2" wrote:

> 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.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Reply

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Status/Notification messages in tray/notification area Charlie22 Windows XP 8 09-19-2007 01:10 AM
CONTROL OF THE NOTIFICATION AREA Louis Miller Windows Vista 1 04-12-2007 01:15 PM


All times are GMT -8. The time now is 03:15 PM.


2003 - 2008 All Rights Reserved. Technology Questions

SEO by vBSEO 3.1.0