Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Update > Re: Print notification since SP2

Reply
Thread Tools Display Modes

Re: Print notification since SP2

 
 
Torgeir Bakken \(MVP\)
Guest
Posts: n/a

 
      10-28-2004
Colleen Gayle Lane wrote:

> Ever since installing SP2 (I believe) I get a notification about print jobs
> sent to any networked printer. I does not happen when I print to my local
> printer. It's a pop up from the taskbar. How do I turn this off?
> Thanks.

Hi

How To Enable or Disable Print Job Notifications in Windows XP
http://support.microsoft.com/?kbid=308217


--
torgeir, Microsoft MVP Scripting and WMI, Porsgrunn Norway
Administration scripting examples and an ONLINE version of
the 1328 page Scripting Guide:
http://www.microsoft.com/technet/scr...r/default.mspx
 
Reply With Quote
 
 
 
 
mn4az
Guest
Posts: n/a

 
      11-05-2004
Torgeir -

I am trying to use a custom GPO to toggle these switches. However, I must
be doing something wrong - the "Printer Settings" appear but there is nothing
inside of it. Any chance you can look through the code and provide feedback?

TIA

TR

CLASS USER ;This modifies the HKEY_CURRENT_USER portion of the registry
; the following command creates a node called Printer Settings
; under User Configuration.
CATEGORY !!XPSP2_Print_Bubble

; the following command specifies the registry key to modify
KEYNAME "Printers\Settings"

; the following command specifies the name of the policy
; by using the variable "policyname"
POLICY !!policyname
#if version >= 4
SUPPORTED !!SUPPORTED_WindowsXPSP2
#endif

; the following command specifies text on the Explain tab
EXPLAIN !!explaintext

; the following statement specifies the registry value to modify
VALUENAME "EnableBalloonNotificationsRemote
"
VALUEOFF NUMERIC 0
VALUEON NUMERIC 1

END POLICY

END CATEGORY ;;XPSP2_Print_Bubble


; the following strings section assigns character strings
; to the variable names specified in the previous section
[strings]
XPSP2_Print_Bubble="Printer Settings"
policyname="Print Bubble Settings"
explaintext="This policy determines if the Windows XP SP2 print bubble is
active or not"
labeltext="Disable print bubble on"
SUPPORTED_WindowsXPSP2="At least Microsoft Windows XP Professional with SP2"

"Torgeir Bakken (MVP)" wrote:

> Colleen Gayle Lane wrote:
>
> > Ever since installing SP2 (I believe) I get a notification about print jobs
> > sent to any networked printer. I does not happen when I print to my local
> > printer. It's a pop up from the taskbar. How do I turn this off?
> > Thanks.

> Hi
>
> How To Enable or Disable Print Job Notifications in Windows XP
> http://support.microsoft.com/?kbid=308217
>
>
> --
> torgeir, Microsoft MVP Scripting and WMI, Porsgrunn Norway
> Administration scripting examples and an ONLINE version of
> the 1328 page Scripting Guide:
> http://www.microsoft.com/technet/scr...r/default.mspx
>

 
Reply With Quote
Reply

Thread Tools
Display Modes

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 Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
If I transfer the spooler file to another machine and then print itwill it print? Matrixinline Windows Vista Drivers 0 08-25-2008 09:47 AM
Vista Can't Print to Win2K shared printer-Test Print disappears fr Jeremy Windows Vista Networking 2 06-29-2008 07:31 PM
Xerox Print Notification Icon Doesn't Display Balloon Popup atart Windows Vista Printing / Faxing / Scanning 0 02-16-2007 08:07 PM
print processor: simplex and duplex combined in a single print job Arioch Windows Vista Drivers 0 11-03-2005 05:11 PM
RE: Print notification since SP2 Ritesh Nigam - Microsoft Techie Windows Update 0 10-27-2004 04:53 PM



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 47 48 49 50 51 52 53 54 55 56 57 58 59