How do I get Hot Fix described in KB 836877

D

Darren

I wrote a script to cycle though the print jobs in sitting
in the print queue, the scripts repeats until the count
reaches zero.

This script worked for over a year. Now I get the
following error.

H:\pdf\printmon.vbs(12, 6) (null): 0x80041001

Here is the script that I run.

strComputer = "."
Set objWMIService = GetObject("winmgmts:"
& "{impersonationLevel=impersonate}!\
\" & strComputer & "\root\cimv2")
do
WaitPrinter = 0
Set colPrintJobs = objWMIService.ExecQuery("SELECT *
FROM Win32_PrintJob")
For Each objPrintJob in colPrintJobs
strPrinter = Split(objPrintJob.Name,",",-
1,1)
If strPrinter(0) = "PDF995" Then
WaitPrinter = WaitPrinter + 1
Wscript.Echo strPrinter(0)& ": " &
WaitPrinter
End If
Next
loop until WaitPrinter = 0
Wscript.Echo "WaitPrinter: " & WaitPrinter


The article sorta describes my problem, but how do I get
the hot fix.

My windows 2000 came on the machine from compaq, when I
call then they want me to pay. All I want is the fix not
to have to pay for something that's not my fault.

Any help would be appreciated.
 
S

Shilpa Sinha [MSFT]

Hi

To resolve this problem immediately, contact Microsoft Product Support
Services to obtain the fix for free. For a complete list of Microsoft
Product Support Services phone numbers and information about support costs,
visit the following Microsoft Web site:


http://support.microsoft.com/default.aspx?scid=fh;EN-US;CNTACTMS

Alternatively,

You can send me your information in email, your correct email address,
first and last name, contact number and the exact issue that you want the
hotfix for (mention the reference KB article) then it can be mailed to you.

Note :: A hot fix is for the issue described only and if you dont have
exactly that issue then you may not want to install the hotfix

Shilpa Sinha
This posting is provided "AS IS" with no warranties, and confers no rights.




From: "Darren" <[email protected]>
Subject: How do I get Hot Fix described in KB 836877
Date: Mon, 2 Aug 2004 07:04:14 -0700
Newsgroups: microsoft.public.win2000.printing

I wrote a script to cycle though the print jobs in sitting
in the print queue, the scripts repeats until the count
reaches zero.

This script worked for over a year. Now I get the
following error.

H:\pdf\printmon.vbs(12, 6) (null): 0x80041001

Here is the script that I run.

strComputer = "."
Set objWMIService = GetObject("winmgmts:"
& "{impersonationLevel=impersonate}!\
\" & strComputer & "\root\cimv2")
do
WaitPrinter = 0
Set colPrintJobs = objWMIService.ExecQuery("SELECT *
FROM Win32_PrintJob")
For Each objPrintJob in colPrintJobs
strPrinter = Split(objPrintJob.Name,",",-
1,1)
If strPrinter(0) = "PDF995" Then
WaitPrinter = WaitPrinter + 1
Wscript.Echo strPrinter(0)& ": " &
WaitPrinter
End If
Next
loop until WaitPrinter = 0
Wscript.Echo "WaitPrinter: " & WaitPrinter


The article sorta describes my problem, but how do I get
the hot fix.

My windows 2000 came on the machine from compaq, when I
call then they want me to pay. All I want is the fix not
to have to pay for something that's not my fault.

Any help would be appreciated.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top