Print spooling

I am having trouble printing form a DOS based application on one of our
work stations. I am trying ot print to an OKIPAGE 14ex connected directly
to the Netware server running version 5.0. The workstation prints just
fine from Windows but not from the DOS app that we use every day. The
workstation will just spool the jobs. This has just started recently.
There has been no software or hardware changes done to the machine. All of
the other computers on the network can print to the Oki just fine. I can
make the faulty workstation print if I end the capture to the Oki. Then
the print jobs that were spooling will print. Any help on this??? please..
Mark A. Smith ASE Service Advisor/Webmaster
Bernard's Garage

[email protected] wrote:
> I am having trouble printing form a DOS based application on one of our
> work stations. I am trying ot print to an OKIPAGE 14ex connected directly
> to the Netware server running version 5.0. The workstation prints just
> fine from Windows but not from the DOS app that we use every day. The
> workstation will just spool the jobs. This has just started recently.
> There has been no software or hardware changes done to the machine. All of
> the other computers on the network can print to the Oki just fine. I can
> make the faulty workstation print if I end the capture to the Oki. Then
> the print jobs that were spooling will print. Any help on this??? please..
>
> Mark A. Smith ASE Service Advisor/Webmaster
> Bernard's Garage
>
Try putting a timeout on the capture, if I recall correctly, else it
assumes it should wait until you exit the DOS application program.
And, since you don't say which version of Windows, make sure you don't
have the parallel port set to infinite retry.
-- DE

Similar Messages

  • Acrobat XI Pro update / print spooler problem

    Running Acrobat XI Pro on Windows XP Pro 5.1 sp 3..
    -- Acrobat tries to update 11.0.02. I see the icon in the Windows tray for a long time. I open the Acrobat Updater, and it is stuck on "Service to stop:  Print Spooler."
    -- It was like that for about a day ... maybe two... then it gave the 'Install Failed" error, and, if I remember correctly, gave the error message 1602.
    -- When I looked up the error, the stated remedy was to try again but using the Help --> Check for Updates menu item inside Acrobat (instead of letting automatic updater do it).
    -- So I did that yesterday evening, about 10 hours ago, and currently, the install is still stuck on "Service to stop: Print Spooler."
    This actually happened once before some months ago, and I forget what I did to fix or end the situation... but whatever that was, I'm not finding it now.
    Help?

    Please follow the steps mentioned here: http://helpx.adobe.com/acrobat/kb/error-1602-update-acrobat-reader.html
    ~Deepak

  • Printing ZPL (Zebra) data to printer spooler without character conversion

    Hi all,
    We are printing shipping labels from UPS, with a process where we recive the ZPL label code directly from UPS, and we just need to pass the data to the printer to get the labels. We have already implemented this with Fedex and some custom labels, and it works perfectly. The problem with the UPS label data is that it contains non-printable characters (in the MaxiCode data field). When passed to the SAP printer spooler (see code example below), the data gets corrupted because SAP interprets these non-printable characters as printer control codes.
    I have verified this by saving the ZPL data to a local file, before printing it through the SAP spooler. I then print this raw data and compare the output with the labels printed from the spooler. The MaxiCode (the big 2D barcode) is different in these labels. UPS has also tested the labels, and rejected them because of incorrect data in the barcode.
    For printing, we are using printers defined as type "PLAIN", but I also tried using the "LZEB2" device type with the same result. The error we see in the spooler entry is this:
    Print ctrl S_0D_ is not defined for this printer. Page 1, line 2, col. 2201
    Print output may not be as intended
    The printer ctrl code differs, depending om the label. I have examined the spooler data in "raw" mode, and there is always an ASCII character 28 (hex 1C) in front of the characters that SAP think are control codes, and this is why I think these non-printable characters are the reason for the problems.
    This is the function module I use to print the ZPL data (and as stated above, this works fine for Fedex and custom labels). The ZPL data is converted to binary format before passed to the function module, but I also tried to send the data in text format with another FM, but the result is the same. I have experimented with the "codepage" parameter, and this one gives the least amount of errors, and some labels actually get through without errors. But still at least 50% of the labels gets corrupted, with log entries like above.
    CALL FUNCTION 'RSPO_SR_WRITE_BINARY'
          EXPORTING
            handle           = lv_spool_handle
            data             = lv_label_line_bin
            length           = lv_len
            codepage         = '2010'
          EXCEPTIONS
            handle_not_valid = 1
            operation_failed = 2
            OTHERS           = 3.
    Does anyone know if there is a way to send data to the spooler without character conversion or interpretation of printer control codes? Or is there any other smart way to get around this problem?
    /Leif

    I do a more direct output to the spooler, to avoid any issues with the WRITE statement and SAP's report output processing. At the same time, I insert line breaks so that the output is easy to debug in the spooler if needed. Also included is the code to to detect the escape code (ASCII #28) and to insert a control code ZZUPS in its place (you can skip this for Fedex). Here's a simplified example, but please note this is for a Unicode system, some minor changes is required in a non-Unicode system.
    CONSTANTS: lc_spcode TYPE c LENGTH 5 VALUE 'ZZUPS',
               lc_xlen TYPE i VALUE 5.
       DATA: lv_print_params TYPE pri_params,
             lv_spool_handle TYPE sy-tabix,
             lv_name TYPE tsp01-rq0name,
             lv_spool_id TYPE rspoid,
             lv_crlf(2) TYPE c,
             lv_lf TYPE c,
             lstr_label_data TYPE zship_label_data_s,
             lv_label_line TYPE char512,
             lv_label_line_bin TYPE x LENGTH 1024,
             lv_len TYPE i,
             ltab_label_data_255 TYPE TABLE OF char512,
             ltab_label_data TYPE TABLE OF x,
             lv_c1 TYPE i,
             lv_c2 TYPE i,
             lv_cnt1 TYPE i,
             lv_cnt2 TYPE i,
             lv_x(2) TYPE x.
       FIELD-SYMBOLS: <n> TYPE x.
       lv_crlf = cl_abap_char_utilities=>cr_lf.
       lv_lf = lv_crlf+1(1).
       lv_name = 'ZPLLBL'.
    CALL FUNCTION 'RSPO_SR_OPEN'
         EXPORTING
           dest                   = i_dest
           name                   = lv_name
           prio                   = '5'
           immediate_print        = 'X'
           titleline              = i_title
           receiver               = sy-uname
    *      lifetime               = '0'
           doctype                = ''
         IMPORTING
           handle                 = lv_spool_handle
           spoolid                = lv_spool_id
         EXCEPTIONS
           device_missing         = 1
           name_twice             = 2
           no_such_device         = 3
           operation_failed       = 4
           OTHERS                 = 5.
       IF sy-subrc <> 0.
         RAISE spool_open_failed.
       ENDIF.
    LOOP AT i_label_data INTO lstr_label_data.
         CLEAR ltab_label_data_255.
         SPLIT lstr_label_data-label_data AT lv_lf INTO TABLE ltab_label_data_255.
         LOOP AT ltab_label_data_255 INTO lv_label_line.
           IF lv_label_line NE ''.
             lv_len = STRLEN( lv_label_line ).
    *       Convert character to hex type
             lv_c1 = 0.
             lv_c2 = 0.
             DO lv_len TIMES.
               ASSIGN lv_label_line+lv_c1(1) TO <n> CASTING.
               MOVE <n> TO lv_x.
               IF lv_x = 28.
                 lv_cnt1 = 0.
                 lv_label_line_bin+lv_c2(1) = lv_x.
                 lv_c2 = lv_c2 + 1.
                 DO lc_xlen TIMES.
                   ASSIGN lc_spcode+lv_cnt1(1) TO <n> CASTING.
                   MOVE <n> TO lv_x.
                   lv_cnt2 = lv_c2 + lv_cnt1.
                   lv_label_line_bin+lv_c2(2) = lv_x.
                   lv_c2 = lv_c2 + 2.
                   lv_cnt1 = lv_cnt1 + 1.
                   lv_len = lv_len + 1.
                 ENDDO.
               ELSE.
                 lv_label_line_bin+lv_c2(2) = lv_x.
                 lv_c2 = lv_c2 + 2.
               ENDIF.
               lv_c1 = lv_c1 + 1.
             ENDDO.
    *       Print binary data to spool
             lv_len = lv_len * 2. "Unicode is 2 bytes per character
             CALL FUNCTION 'RSPO_SR_WRITE_BINARY'
               EXPORTING
                 handle                 = lv_spool_handle
                 data                   = lv_label_line_bin
                 LENGTH                 = lv_len
               EXCEPTIONS
                 handle_not_valid       = 1
                 operation_failed       = 2
                 OTHERS                 = 3.
             IF sy-subrc <> 0.
               RAISE spool_write_failed.
             ENDIF.
           ENDIF.
         ENDLOOP.
       ENDLOOP.
       CALL FUNCTION 'RSPO_SR_CLOSE'
         EXPORTING
           handle = lv_spool_handle.
       IF sy-subrc <> 0.
         RAISE spool_close_failed.
       ENDIF.

  • How to monitor Print Spool folder in Business Objects XI R2 - Crystal report

    Hi Guru's
    We recently had a issue where disc space was full in BO server and it was down. The reason was there was one job in print spool folder which was eating up whole space in C drive.
    We had to stop the print spool service and delete the jobs and restart it back.
    In order to prevent this from happening what can be done??.
    One way that my client suggested is to write a script where in it will send us the size of print spool folder every hour so we can find the report which is causing this. I have no idea how this can be done.
    This happened once and I dont have an answer when my manager asks will it happen again. Is there a way where we can monitor this or stop this from happening.
    My current environment is
    BOXI R2 , crystal report XI is the reporting tool.
    Thanks.

    Normally you should run your CR reports in the INfoView. You can start a report either by double clicking on it or by selecting View in the context menu. Still in order to fetch data you have to press the Refresh button in the CR viewer window (in the InfoView).
    In the CMC I assume that you are using the Run now option in the context menu. Please note that this will just schedule your report immediatelly. hen the report is scheduled a new instance is created hich is available in the History of the report. In order to see a report in the CMC select again View in the context menu and you can again fetch data by pressing the Refresh button.
    Regards,
    Stratos

  • Print spooler crashes whenever I try to print to Deskjet F4280 over the network.

    Greetings,
    I have a nice and cheap F4280 connected to my computer via USB. My computer is running Windows XP SP3 (downgraded from Vista, had the same problem with Vista as well). I can print fine from my printer, but whenever I try to print from a laptop over the wireless network, the print spooler on my computer crashes and the F4280 doesn't do anything.
    I downloaded a Microsoft tool to restart the print spooler, but when I resend the document to the printer over the netword, the spooler drashes again.
    I've downloaded all the latest drivers, and attempted to run the critical patch, but an error message said I was already up to date and didn't need to install it.
    Does anyone have any ideas?

    Resolution/Fix:
    You first need to clear out your print queue to prevent the print spooler from crashing again.
    On the computer designated as the server do the following:
    Stop the printer spool service by right clicking on your My Computer icon and selecting "Manage"
    Expand "Services and Applications" and the click on services
    Browse through the list of services and find "Printer Spooler".
    Right click on the "Print Spooler" service and select "Stop" if Stop is grayed out or disabled and "Start" is an available option, then the service is already stopped.
    Go to the c:\Windows\System32\Spool\Printers folder
    You should see some files in this directory with a .SHD file extension or a .SPL extension you will want to delete these. In some cases you may see other files in this directory as well, and in general it is safe to delete them. Files besides the .SHD and .SPL should be backed up before you delete them to be safe.
    You may either reboot the computer or Start the "Print Spooler" service manually.
    Once your print spool is clear you can now proceed with the following on the server computer:
    Click on Start then control panel, and then Printer and Faxes
    Right click on the HP Deskjet F4280 printer and select Properties
    Click on the Advanced tab
    Uncheck "Enable advanced printing features"
    Click the OK button
    You should now be able to print fine from any computer on the network

  • Jobs stay in queue and keep printing until you cancel them--then stops the print spooler...why?

    My Printer: HP Photosmart C309a
    My  Laptop: HP G71 series
    Operating System: Windows 7 (64 bit) but runs a lot of stuff on 32 bit
    Problem: I print ONE copy of a multiple page document in Adobe Reader 9. I select even pages only (after which I would reinsert the pages and tell it to print odd pages only, to get the other side). The printer makes a sound indicating the job is finished, I remove my pages to collate them, and then the printer continues to print the job again without so much as a keystroke.
    Naturally, you find the printer in the devices on the control panel, click "see what's printing" and highlight the job and cancel it.
    Then somehow it turns off my print spooler. 
    I have tried everything suggested on other forums, like
    restart the laptop/restart the printer
    going to c\windows\system32\spool\printers and deleting whatever is hung up in there (usually a shockwave file).
    Going to Services\print spooler \properties and making sure the settings are set to automatic
    Uninstall\reinstall latest driver and software
    Switching from Adobe Reader 10 to Adobe Reader 9
    Use System Restore to try to reset the system to a previous state.
    Run Trend Micro to check for viruses and spyware--nothing shows up.
    I am positive the pdf doc is NOT the problem, because I can print it on my husband's laptop multiple times over with no problems.
    Does anyone have this problem as well? Has anyone found a genuine solution other than manually canceling print jobs in queue and constantly restarting the print spooler?
    Thanks in advance for any suggestions.
    --Holly

    Hi,
     I believe your printer is wirelessly connected to your computer, right?!
     What's the current printer software version installed in your laptop computer?! 
     to see: click start>control panel>uninstall a program under Programs then it will tell you the software version like HP Photosmart c309a v13 or v14.
    If the software version is v13, click here to download and install the current software.
    IF all things still fail, try to use the workaround provided by HP in this link. It says:
    Workaround
    Your HP printing product can operate sufficiently using an alternate print driver, although there might be some limitations. For instance, some buttons on the product control panel might not function, but the product prints normally from the computer. If the solutions in this document do not solve the issue, download and install an alternate print driver.
    Follow these steps to install the HP Deskjet 990C print driver.
      NOTE:  These steps install the new print driver using the same port that the product already uses. The product functions normally with multiple drivers on the same port.
    Find the port that the product already uses.
    Click the Windows icon ( ), and then click Control Panel . The Control Panel opens in a new window.
    Click Hardware and Sounds .
    Click Printers . The Printers folder opens.
    Right-click the product icon ( ), and then click Properties . The Propertieswindow opens.
    Click the Ports tab. A window opens with a list of ports. The port for the product has a checkmark or a highlight.
    Note the name of the port indicated for the product.
    Close the Properties window, and then continue with the next steps.
    Click Add a Printer in the menu bar at the top of the Printers window. The Windows Add Printer Wizard opens.
    Click Add a local printer .
    Select Use an existing Port .
    Click the drop-down menu next to Use an existing Port , and then select the port that you noted earlier in these steps.
    Click Next .
    In the Manufacturer pane, click HP .
    In the Printers pane, click HP Deskjet 990c , and then click Next . (IF YOU CANT FIND DESKJET 990C, JUST CLICK WINDOWS UPDATE WITHIN THIS WINDOW. THEN FIND DESKJET 990C and then click next)
    Type a name for the new printer in the Printer name box, or keep the default name.
    Select Set as the default printer , and then click Next . A window opens with a progress bar as the printer installs. Then a new window opens.
    Click Do not share this printer , and then click Next .
    If you want to print a test page, click the Print test page button.
    Click Finish to complete the driver installation.
    Try printing again, but select HP Deskjet 990c from the Print dialog box.
    If this solves the issue, follow these steps to use the HP Deskjet 990c print driver whenever you send print jobs to the product.
    In the program you are using, select the option to print. The Print dialog box opens.
    Click the Name drop-down menu, and then select HP Deskjet 990c .
    Change print settings as desired in the Paper size , Quality , and Paper type drop-down menus.
    Select the Print range and Copies options as desired.
    Click OK . The product prints the file.
    Kiko

  • Print spooler log error ID 808 [Internet Explorer 11 + MS Office 2003-2007 x86 on Win7 sp1 x64 ONLY!]

    howdy all,
    could you please help me to resovle the very much odd issue of IE11 on Win7sp1x64 as below.
    Note: my original post @ MS support is here [oops, sorry, I'm not allowed to paste a normal link here] "http://answers.microsoft.com/en-us/ie/forum/ie11-windows_7/print-spooler-error-id-808-internet-explorer-11-on/f52ff25c-4702-4ce3-827e-e1e9a5d324cf"
    and now it's a repost due to advice of MS MVP PA Bear.
    SUMMARY:
    my 1st post there:
    howdy all pros around,
    i'd much appreciate any pro advice concerning the absolutely odd printer spooler issue as below.
    sorry to post this again when there are a lot of look same cases available posted and discussed but now i shall insist that this is niether a printer driver nor a ms win7 spooler itself issue but the one of solely Internet Explorer 11
    [11.0.9600.17041] installed onto fully updated Win7sp1x64(!) when i have 3 win7sp1 machines around and this issue doesn't occur on single 32-bit win7 pc!
    the funniest point is that the issue doesn't prevent  both win7sp1x64 computers to print normally!
    also this never occurs while printing any docs or even web pages from Google Chrome.
    but it always appears in win7 admin logs twice(!) while printing any web page from IE11! although there is no problem if you print web page from IE11 to PDF file...
    this never happened with IE8 before its update thru MS Update to IE11 a couple of days ago.
    error in short:
    The print spooler failed to load a plug-in module C:\Windows\system32\spool\DRIVERS\x64\3\UNIDRVUI.DLL, error code 0xc1. See the event user data for context information.
    error in details:
    Log Name:      Microsoft-Windows-PrintService/Admin
    Source:        Microsoft-Windows-PrintService
    Date:          2014-Jun-01 8:19:51 PM
    Event ID:      808
    Task Category: Initializing
    Level:         Error
    Keywords:      Print Spooler
    User:          .......
    Computer:      ...... PC
    Description:
    The print spooler failed to load a plug-in module C:\Windows\system32\spool\DRIVERS\x64\3\UNIDRVUI.DLL, error code 0xc1. See the event user data for context information.
    Event Xml:
    < Event xmlns=
      <System>
        <Provider Name="Microsoft-Windows-PrintService" Guid="{747EF6FD-E535-4D16-B510-42C90F6873A1}" />
        <EventID>808</EventID>
        <Version>0</Version>
        <Level>2</Level>
        <Task>36</Task>
        <Opcode>12</Opcode>
        <Keywords>0x8000000000020000</Keywords>
        <TimeCreated SystemTime="2014-06-01T11:19:51.957120800Z" />
        <EventRecordID>343</EventRecordID>
        <Correlation />
        <Execution ProcessID="10148" ThreadID="2188" />
        <Channel>Microsoft-Windows-PrintService/Admin</Channel>
        <Computer>...pc name...</Computer>
        <Security UserID="S-1-5-21-2467594599-1786318240-3752314299-1000" />
      </System>
      <UserData>
        <LoadPluginFailed xmlns:auto-ns3="..." xmlns="http    ...">
          <PluginDllName>C:\Windows\system32\spool\DRIVERS\x64\3\UNIDRVUI.DLL</PluginDllName>
          <ErrorCode>0xc1</ErrorCode>
          <Context>112</Context>
        </LoadPluginFailed>
      </UserData>
    < /Event>
    you shall be assured that i've carefully looked thru many threads regarding the similar issues, and i'd much appreciate any non-common advice, when all common ways like uninstall/install printer etc don't work for sure.
    thanks much
    p.s. my printer model is hp deskjet 970cse - connected to a router thru usb and installed on all 3 win7sp1 machines as a local printer via the created standard tcp/ip port.
    p.p.s. btw here are results of tool filever.exe as kindly provided long ago by Alan Morris of MS [oops, sorry, I'm not allowed to paste a normal link here] "http://answers.microsoft.com/en-us/windows/forum/windows_7-hardware/windows-7-hp-printer-problems/6833a54c-6974-4fe9-b74c-93ed879781b0?page=2"
    from one of my win7sp1x64 machines:
    Microsoft Windows [Version 6.1.7601]
    Copyright (c) 2009 Microsoft Corporation.  All rights reserved.
    C:\Users\...>filever c:\windows\system32\spool\drivers\x64\3\*.dll
    --a-- W32x64 DLL ENU      11.0.0.305 shp     55,432 09-23-2012 adobepdf.dll
    --a-- W32x64 DLL ENU      11.0.0.305 shp     26,768 09-23-2012 adobepdfui.dll
    --a-- W32x64 DLL ENU      11.0.0.305 shp     39,048 09-23-2012 adregp.dll
    --a-- W32x64 DLL ENU      11.0.0.305 shp  1,294,472 09-23-2012 aduigp.dll
    --a-- W32x64 DRV ENU  6.1.7601.17514 shp    623,104 11-21-2010 fxsapi.dll
    --a-- W32x64 DRV ENU  0.3.7601.17514 shp    380,416 11-21-2010 fxsdrv.dll
    --a-- W32x64 DRV ENU  6.1.7601.17514 shp  6,566,400 11-21-2010 fxsres.dll
    --a-- W32x64 DRV ENU  6.1.7601.17514 shp    434,688 11-21-2010 fxstiff.dll
    --a-- W32x64 DRV ENU  6.1.7601.17514 shp    160,256 11-21-2010 fxsui.dll
    --a-- W32x64 DRV ENU  6.1.7601.17514 shp    156,672 11-21-2010 fxswzrd.dll
    --a-- W32x64 DLL ENU         1.0.0.1 shp    522,240 06-22-2009 hpf900al.dll
    --a-- W32x64 DLL ENU        0.20.6.0 shp  1,692,672 05-07-2008 hpfimg50.dll
    --a-- W32x64 DLL ENU         1.0.0.1 shp     79,872 05-07-2008 hpfud50.dll
    --a-- W32x64 DLL ENU         1.0.0.1 shp    134,144 06-22-2009 hpfui50.dll
    --a-- W32x64 DRV ENU  0.3.7601.18126 shp  1,402,880 04-10-2013 jnwdrv.dll
    --a-- W32x64 DRV ENU  0.3.7600.16385 shp     98,816 07-14-2009 jnwdui.dll
    --a-- W32x64 DRV ENU  0.3.7601.17514 shp    715,776 11-21-2010 mxdwdrv.dll
    --a-- W32x64 DLL ENU  0.3.7601.17514 shp    221,184 11-21-2010 mxdwdui.dll
    --a-- W32x64 DLL ENU         1.0.0.1 shp     16,384 09-20-2010 oemps.dll
    --a-- W32x64 DRV ENU  0.3.6000.16386 shp    850,432 09-20-2010 ps5ui.dll
    --a-- W32x64 DRV ENU  0.3.6000.16386 shp    628,736 09-20-2010 pscript5.dll
    --a-- W32x64 DRV   -       0.3.151.3 shp     47,392 12-08-2013 tpprn.dll
    --a-- W32x64 DLL ENU     7.15.297.19 shp    172,328 12-08-2013 tpprnui.dll
    --a-- W32x64 DLL   -     7.15.297.20 shp     75,512 12-08-2013 tpprnuichs.dll
    --a-- W32x64 DLL CHT     7.15.297.21 shp     75,544 12-08-2013 tpprnuicht.dll
    --a-- W32x64 DLL   -     7.15.297.22 shp     80,208 12-08-2013 tpprnuicsy.dll
    --a-- W32x64 DLL DEU     7.15.297.23 shp     81,704 12-08-2013 tpprnuideu.dll
    --a-- W32x64 DLL   -     7.15.297.24 shp     80,200 12-08-2013 tpprnuiell.dll
    --a-- W32x64 DLL ESN     7.15.297.25 shp     80,712 12-08-2013 tpprnuiesn.dll
    --a-- W32x64 DLL   -     7.15.297.26 shp     81,208 12-08-2013 tpprnuifra.dll
    --a-- W32x64 DLL   -     7.15.297.27 shp     80,224 12-08-2013 tpprnuihun.dll
    --a-- W32x64 DLL JPN     7.15.302.41 shp     76,656 12-08-2013 tpprnuijpn.dll
    --a-- W32x64 DLL   -     7.15.297.29 shp     76,568 12-08-2013 tpprnuikor.dll
    --a-- W32x64 DLL   -     7.15.297.30 shp     80,176 12-08-2013 tpprnuiplk.dll
    --a-- W32x64 DLL   -     7.15.297.31 shp     79,680 12-08-2013 tpprnuiptg.dll
    --a-- W32x64 DLL   -     7.15.297.32 shp     80,728 12-08-2013 tpprnuirus.dll
    --a-- W32x64 DLL   -     7.15.297.33 shp     80,184 12-08-2013 tpprnuitha.dll
    --a-- W32x64 DLL   -        7.9.30.2 shp    152,816 12-08-2013 tpps.dll
    --a-- W32x64 DRV ENU  0.3.7601.17514 shp    479,232 11-21-2010 unidrv.dll
    --a-- W32x64 DRV ENU  0.3.7601.17514 shp    884,224 11-21-2010 unidrvui.dll
    --a-- W32x64 DRV ENU  0.3.7601.17514 shp    762,368 11-21-2010 unires.dll
    --a-- W32x64 DLL ENU  6.1.7601.17514 shp  1,576,448 11-21-2010 xpssvcs.dll
    well, as far as i can see all binaries here are x64. moreover these files are same on another x64 pc and similar on x86 one but naturally x86 and located in another folder w32x86.
    my last post there:
    oops. action replay.
    1. z printer works well (i.e. printing anyting w/o any problem) on 3 PCs - 2 of 3 with win7sp1x64; and 1 of 3 - win7sp1x86. all 3 with IE11 installed.
    2. however BOTH (that is 2 of 3) above PCs of win7sp1x64 return errors to admin log every time when printing any web page from IE11. this occurs only if printing from IE11. non of other printing jobs are affected including a printing from Google
    Chrome and Opera.
    3. win7sp1x86 PC prints from IE11 w/o any errors in log!
    4. a quote from my initial post:
    you shall be assured that i've carefully looked thru many threads regarding the similar issues, and i'd much appreciate any non-common advice, when all common ways like uninstall/install printer etc don't work for sure.
    appreciate.
    THANKS A LOT!
    UPDATE! i'm sorry to provide you with a bit incomplete/incorrect error sympthoms.
    this error is being returned to win7sp1x64 PCs print server logs not only while printing from IE11 but from MS Office 2003 & 2007 as well, however all non-MS applications to print out from (Adobe, ACDSee, Chrome, Opera, etc.) aren't affected at all.
    also test page printing is always OK! 
    so i've amended the header of my post accordingly.
    thanks again!

    howdy Karen,
    2 (two) PCs of quite similar win7sp1x64 config affected!
    sorry but your kind prompt doesn't work. i've not only tried to remove all printers except AdobePDF Converter, CANVAS PS, Fax, MS XPS Writer in common way from Devices & Printers menu but also removed all their dependencies in Printer Server config menu
    (access thru DOS printui /s /t2) except same AdobePDF Converter, CANVAS PS, MS XPS Writer (all x64 Type 3 - User Mode).
    moreover i've managed to update the troubled core component thru a manual install of HP PLC6 Universal Driver, so now its updated as below:
    Microsoft Windows [Version 6.1.7601]
    Copyright (c) 2009 Microsoft Corporation.  All rights reserved.
    C:\Users\..>printui /s /t2
    C:\Users\..>filever c:\windows\system32\spool\drivers\x64\3\*.dll
    --a-- W32x64 DLL ENU      11.0.0.305 shp     55,432 09-23-2012 adobepdf.dll
    --a-- W32x64 DLL ENU      11.0.0.305 shp     26,768 09-23-2012 adobepdfui.dll
    --a-- W32x64 DLL ENU      11.0.0.305 shp     39,048 09-23-2012 adregp.dll
    --a-- W32x64 DLL ENU      11.0.0.305 shp  1,294,472 09-23-2012 aduigp.dll
    --a-- W32x64 DRV ENU  6.1.7601.17514 shp    623,104 11-21-2010 fxsapi.dll
    --a-- W32x64 DRV ENU  0.3.7601.17514 shp    380,416 11-21-2010 fxsdrv.dll
    --a-- W32x64 DRV ENU  6.1.7601.17514 shp  6,566,400 11-21-2010 fxsres.dll
    --a-- W32x64 DRV ENU  6.1.7601.17514 shp    434,688 11-21-2010 fxstiff.dll
    --a-- W32x64 DRV ENU  6.1.7601.17514 shp    160,256 11-21-2010 fxsui.dll
    --a-- W32x64 DRV ENU  6.1.7601.17514 shp    156,672 11-21-2010 fxswzrd.dll
    --a-- W32x64 DLL ENU         1.0.0.1 shp    522,240 06-23-2009 hpf900al.dll
    --a-- W32x64 DLL ENU         0.1.6.7 shp  5,263,872 05-08-2008 hpfiglhn.dll
    --a-- W32x64 DLL ENU         0.5.1.0 shp    231,936 06-23-2009 hpfime50.dll
    --a-- W32x64 DLL ENU        0.20.6.0 shp  1,692,672 05-08-2008 hpfimg50.dll
    --a-- W32x64 DLL ENU         0.4.5.0 shp     16,384 05-08-2008 hpfres50.dll
    --a-- W32x64 DLL ENU         1.0.0.1 shp     79,872 05-08-2008 hpfud50.dll
    --a-- W32x64 DLL ENU         1.0.0.1 shp    134,144 06-23-2009 hpfui50.dll
    --a-- W32x64 DLL ENU      61.53.25.9 shp  1,485,312 06-23-2009 hpz3alhn.dll
    --a-- W32x64 DLL ENU      61.53.25.9 shp  1,442,304 05-08-2008 hpz3rlhn.dll
    --a-- W32x64 DLL ENU      61.53.25.9 shp    365,568 06-23-2009 hpzevlhn.dll
    --a-- W32x64 DLL ENU      61.53.25.9 shp     88,064 06-23-2009 hpzprlhn.dll
    --a-- W32x64 DLL ENU      61.53.25.9 shp    562,176 05-08-2008 hpzsslhn.dll
    --a-- W32x64 DLL ENU      61.53.25.9 shp  3,447,808 05-08-2008 hpzstlhn.dll
    --a-- W32x64 DLL ENU      61.53.25.9 shp  2,414,080 06-23-2009 hpzuilhn.dll
    --a-- W32x64 DRV ENU  0.3.7601.18126 shp  1,402,880 04-10-2013 jnwdrv.dll
    --a-- W32x64 DRV ENU  0.3.7600.16385 shp     98,816 07-14-2009 jnwdui.dll
    --a-- W32x64 DRV ENU  0.3.7601.17514 shp    715,776 11-21-2010 mxdwdrv.dll
    --a-- W32x64 DLL ENU  0.3.7601.17514 shp    221,184 11-21-2010 mxdwdui.dll
    --a-- W32x64 DLL ENU         1.0.0.1 shp     16,384 09-20-2010 oemps.dll
    --a-- W32x64 DRV ENU  0.3.7601.21853 shp    854,304 12-04-2013 ps5ui.dll
    --a-- W32x64 DRV ENU  0.3.7601.21853 shp    636,704 12-04-2013 pscript5.dll
    --a-- W32x64 DRV   -       0.3.151.3 shp     47,392 12-08-2013 tpprn.dll
    --a-- W32x64 DLL ENU     7.15.297.19 shp    172,328 12-08-2013 tpprnui.dll
    --a-- W32x64 DLL   -     7.15.297.20 shp     75,512 12-08-2013 tpprnuichs.dll
    --a-- W32x64 DLL CHT     7.15.297.21 shp     75,544 12-08-2013 tpprnuicht.dll
    --a-- W32x64 DLL   -     7.15.297.22 shp     80,208 12-08-2013 tpprnuicsy.dll
    --a-- W32x64 DLL DEU     7.15.297.23 shp     81,704 12-08-2013 tpprnuideu.dll
    --a-- W32x64 DLL   -     7.15.297.24 shp     80,200 12-08-2013 tpprnuiell.dll
    --a-- W32x64 DLL ESN     7.15.297.25 shp     80,712 12-08-2013 tpprnuiesn.dll
    --a-- W32x64 DLL   -     7.15.297.26 shp     81,208 12-08-2013 tpprnuifra.dll
    --a-- W32x64 DLL   -     7.15.297.27 shp     80,224 12-08-2013 tpprnuihun.dll
    --a-- W32x64 DLL JPN     7.15.302.41 shp     76,656 12-08-2013 tpprnuijpn.dll
    --a-- W32x64 DLL   -     7.15.297.29 shp     76,568 12-08-2013 tpprnuikor.dll
    --a-- W32x64 DLL   -     7.15.297.30 shp     80,176 12-08-2013 tpprnuiplk.dll
    --a-- W32x64 DLL   -     7.15.297.31 shp     79,680 12-08-2013 tpprnuiptg.dll
    --a-- W32x64 DLL   -     7.15.297.32 shp     80,728 12-08-2013 tpprnuirus.dll
    --a-- W32x64 DLL   -     7.15.297.33 shp     80,184 12-08-2013 tpprnuitha.dll
    --a-- W32x64 DLL   -        7.9.30.2 shp    152,816 12-08-2013 tpps.dll
    --a-- W32x64 DRV ENU  0.3.7601.21853 shp    485,664 12-04-2013 unidrv.dll
    --a-- W32x64 DRV ENU  0.3.7601.21853 shp    890,656 12-04-2013 unidrvui.dll
    --a-- W32x64 DRV ENU  0.3.7601.17514 shp    768,800 12-04-2013 unires.dll
    --a-- W32x64 DLL ENU  6.1.7601.17514 shp  1,576,448 11-21-2010 xpssvcs.dll
    C:\Users\..>
    than made a clean Deskjet 970ce printer install.
    same thing - test page printing OK but same error in log if print from IE11 and MS Office.
    any other ideas?
    thanks

  • How do i get a print spooler for office jet 6500 E709n

    somehow my print spooler is gone how do i get another, i have run the install, diagnostic and utility and none fix the problem. I can see the printer in my wireless network but can't print to it
    This question was solved.
    View Solution.

    If your PRINT SPOOLER IS "GONE", you may have to contact WINDOWS for this issue. I would like to double check first though.
    What operating system are you using? If windows 7 or XP, do the following:
    1. Click Start Menu
    2. RIGHT-click computer
    3. Choose MANAGE
    4. Click Services and Applications
    5. Choose Services
    6. Scroll down until you see PRINTER SPOOLER, if it is there, click on it, and START it
    IF you DO NOT SEE IT IN THAT LIST, you will have to contact WINDOWS, because you may have to reformat your operating system, but contact them first.
    Let me know if this helps, thanks.
    **Click the KUDOS star on the left to say 'Thanks'**
    Please mark a reply "ACCEPTED AS SOLUTION" if it solved your problem, so others can find it.

  • HP Laserjet 2820 - print spooler was unable to connect

    Working in Microsoft 2003 and printer is on a wireless network. In over a year - never had a problem until 5 days ago an error message appeared when I attempted printing which stated... print spooler was unable to connect to your printer. This can be caused by your printer being turned off, the cable being unplugges, or being connected to a VPN, which will block your access to your local network.
    Also, when I attempted accessing the Print Settings from HP Director, it would not open and gave an error message...An unknown error occurred. Make certain that the device's power cord is plugged in, the power is turned on, and that all cables are properly connected. Check the Troubleshooting tab or product documentation for more information.
    Next, I thought I would delete the software and re-install.  However - I no longer have the installation disk for the printer.I then tried changing the printer port to a standard port. That did not work.
    Help would be greatly appreciated.
    Thank you.

    hi everyone
    i have same problem on hp clj2820, half page printed, half page
    1)  i cleaned laser mirrors and verify conectors and wires of laser scanner unit ... the problem persist
    2) i inspected carousel assembly, a small plastic gear on the upper left side was wrong aligned, 1 tooth scrolled up or down, i fit this tooth in correct position ... the problem persist
    what is happening?, regards

  • Printer spool issue with HP LaserJet 1018

    I seem to be having a recurring problem with the HP LaserJet 1018 that I am hoping someone has also had and can help me resolve.  When I go to print I get a message that I need to set up a printer (it does not recognize the printer is there).  When I click on set up a new printer, I receive a message that the local print spooler service is not running.  Nothing I do seems to solve the problem. 
    This happened to me with my previous 1018 printer.  The exact same thing.  I had a second 1018 available to me that I connected and it worked just fine for about two months and now is doing the same thing as the first.  
    I have an HP Pavilion Entertainment PC with Windows 7 (64 bit) operating system.  I previously had a Dell with Windows XP that the first printer worked on for a long time (maybe 2+ years).  I got this new computer within the past six months and both these printers stopped working while on this computer.
    Any help or ideas would be appreciated. 

    Welcome to the HP Forums  fastndfury,
    I see by your post that you are only getting the error on the Windows 8 computer, "The scanner is currently in use. Please wait until your previous task is completed and then try scanning again." I can help you with this issue.
    I have provided a document to go through the steps to see if it will help resolve this issue.
    'Another program has control of the scanner' Message Displays on the Computer When Scanning.
    If you need further assistance, let me know.
    Have a nice day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • Print spooler log error ID 808 [Internet Explorer 11 + MS Office 2003 x86 on Win7 sp1 x64 ONLY!]

    howdy all,
    Could you please help me to resovle the very much odd issue of HP Priner driver on Win7sp1x64 as below.
    1.HP Deskjet 970Cse printer connected thru usb to a router and installed to all LAN PCs  thru a standard tcp/ip ports works well (i.e. printing anyting w/o any problem) on 3 PCs - 2 of 3 with win7sp1x64; and 1 of 3 - win7sp1x86. All 3 with
    IE11[11.0.9600.17041] recently(!) updated from IE8.
    2. However BOTH (that is 2 of 3) above PCs of win7sp1x64 return errors to admin log every time when printing any web page from IE11 and/or docs from Office as below:
    Error in short:
    The print spooler failed to load a plug-in module C:\Windows\system32\spool\DRIVERS\x64\3\UNIDRVUI.DLL, error code 0xc1. See the event user data for context information.
    This error in log occurs only if printing from IE11 and/or MS Office. None of other printing jobs are affected including a printing from Acrobat, ACDSee, Google Chrome and Opera. The printing of Test Page by printer
    itself not affected as well!!!
    3. win7sp1x86 PC prints everything w/o any errors in log!
    4. Printer uninstall incl. cleaning of Print Server config + clean install doesn't work.
    5. Microsoft Windows [Version 6.1.7601]
    Copyright (c) 2009 Microsoft Corporation.  All rights reserved.
    C:\Users\..>printui /s /t2
    C:\Users\..>filever c:\windows\system32\spool\drivers\x64\3\*.dll
    --a-- W32x64 DLL ENU      11.0.0.305 shp     55,432 09-23-2012 adobepdf.dll
    --a-- W32x64 DLL ENU      11.0.0.305 shp     26,768 09-23-2012 adobepdfui.dll
    --a-- W32x64 DLL ENU      11.0.0.305 shp     39,048 09-23-2012 adregp.dll
    --a-- W32x64 DLL ENU      11.0.0.305 shp  1,294,472 09-23-2012 aduigp.dll
    --a-- W32x64 DRV ENU  6.1.7601.17514 shp    623,104 11-21-2010 fxsapi.dll
    --a-- W32x64 DRV ENU  0.3.7601.17514 shp    380,416 11-21-2010 fxsdrv.dll
    --a-- W32x64 DRV ENU  6.1.7601.17514 shp  6,566,400 11-21-2010 fxsres.dll
    --a-- W32x64 DRV ENU  6.1.7601.17514 shp    434,688 11-21-2010 fxstiff.dll
    --a-- W32x64 DRV ENU  6.1.7601.17514 shp    160,256 11-21-2010 fxsui.dll
    --a-- W32x64 DRV ENU  6.1.7601.17514 shp    156,672 11-21-2010 fxswzrd.dll
    --a-- W32x64 DLL ENU         1.0.0.1 shp    522,240 06-22-2009 hpf900al.dll
    --a-- W32x64 DLL ENU        0.20.6.0 shp  1,692,672 05-07-2008 hpfimg50.dll
    --a-- W32x64 DLL ENU         1.0.0.1 shp     79,872 05-07-2008 hpfud50.dll
    --a-- W32x64 DLL ENU         1.0.0.1 shp    134,144 06-22-2009 hpfui50.dll
    --a-- W32x64 DRV ENU  0.3.7601.18126 shp  1,402,880 04-10-2013 jnwdrv.dll
    --a-- W32x64 DRV ENU  0.3.7600.16385 shp     98,816 07-14-2009 jnwdui.dll
    --a-- W32x64 DLL ENU         1.0.0.1 shp     16,384 09-20-2010 oemps.dll
    --a-- W32x64 DRV ENU  0.3.7601.21853 shp    854,304 12-04-2013 ps5ui.dll
    --a-- W32x64 DRV ENU  0.3.7601.21853 shp    636,704 12-04-2013 pscript5.dll
    --a-- W32x64 DRV   -       0.3.151.3 shp     47,392 12-08-2013 tpprn.dll
    --a-- W32x64 DLL ENU     7.15.297.19 shp    172,328 12-08-2013 tpprnui.dll
    --a-- W32x64 DLL   -     7.15.297.20 shp     75,512 12-08-2013 tpprnuichs.dll
    --a-- W32x64 DLL CHT     7.15.297.21 shp     75,544 12-08-2013 tpprnuicht.dll
    --a-- W32x64 DLL   -     7.15.297.22 shp     80,208 12-08-2013 tpprnuicsy.dll
    --a-- W32x64 DLL DEU     7.15.297.23 shp     81,704 12-08-2013 tpprnuideu.dll
    --a-- W32x64 DLL   -     7.15.297.24 shp     80,200 12-08-2013 tpprnuiell.dll
    --a-- W32x64 DLL ESN     7.15.297.25 shp     80,712 12-08-2013 tpprnuiesn.dll
    --a-- W32x64 DLL   -     7.15.297.26 shp     81,208 12-08-2013 tpprnuifra.dll
    --a-- W32x64 DLL   -     7.15.297.27 shp     80,224 12-08-2013 tpprnuihun.dll
    --a-- W32x64 DLL JPN     7.15.302.41 shp     76,656 12-08-2013 tpprnuijpn.dll
    --a-- W32x64 DLL   -     7.15.297.29 shp     76,568 12-08-2013 tpprnuikor.dll
    --a-- W32x64 DLL   -     7.15.297.30 shp     80,176 12-08-2013 tpprnuiplk.dll
    --a-- W32x64 DLL   -     7.15.297.31 shp     79,680 12-08-2013 tpprnuiptg.dll
    --a-- W32x64 DLL   -     7.15.297.32 shp     80,728 12-08-2013 tpprnuirus.dll
    --a-- W32x64 DLL   -     7.15.297.33 shp     80,184 12-08-2013 tpprnuitha.dll
    --a-- W32x64 DLL   -        7.9.30.2 shp    152,816 12-08-2013 tpps.dll
    --a-- W32x64 DRV ENU  0.3.7601.17514 shp    479,232 11-21-2010 unidrv.dll
    --a-- W32x64 DRV ENU  0.3.7601.17514 shp    884,224 11-21-2010 unidrvui.dll
    --a-- W32x64 DRV ENU  0.3.7601.17514 shp    762,368 11-21-2010 unires.dll
    6. C:\Windows\System32
    spoolss.dll = v6.1.7600.16385
    spoolsv.exe = v6.1.7601.22149
    C:\Windows\SysWOW64
    spoolss.dll = v6.1.7600.16385
    spoolsv.exe = v6.1.7600.16385
    7. I blame IE11 when there was no such error before its update from IE8.
    8. This is a re-repost from here "http://answers.microsoft.com/en-us/ie/forum/ie11-windows_7/print-spooler-log-error-id-808-internet-explorer/f52ff25c-4702-4ce3-827e-e1e9a5d324cf" and here "http://social.technet.microsoft.com/Forums/windows/en-US/7b24d6b9-171a-4703-82f9-81cb4732e02f/print-spooler-log-error-id-808-internet-explorer-11-ms-office-20032007-x86-on-win7-sp1-x64?forum=w7itproappcompat"
    w/o any good answer!
    That's it. Any questions are welcome.
    Thank you.
    PS: I just wanna confirm that this odd error occurs only when printing from IE11 and MS Office 2003 on Win7sp1x64. MS Office 2007 is not affected!

    OK, Z COMPLETE SOLUTION FOUND! 
    Although z cause of this odd issue is yet unclear. However it seems to be z HP driver problem after all.
    Actually my printer is not HP Deskjet 970Cse but HP Photosmart 1115 Series. Z very nice working dinosaur, which was officially run out by HP Support from WinXPx86 times. Though it was always working
    just nice with either HP Deskjet (DJ) 970Cse Win7driver (better) or HP Photosmart (PS) 7200 Series one (worse – when it works no so good with TCP/IP printer installation).
    Well… when I got into z recent problem with DJ970cse driver I happened to check if printer works with z PS7200 one. Oops, same not good as before but NO LOG ERROR! A bit of study gave me understanding
    that both drivers are using z absolutely same core files but PS7200 driver uses its own PCL Language Monitor as well as z Print Processor (not a standard winprint of Windows).
    And while I unfortunately got no any reasonable ideas on how to solve this issue from IT Pros and others MS MVP during a few days after my posting here and there, except those very smart ones
    like ‘uninstall, reboot and install again’, I had no option other than to find solution by myself.
    I’ve downloaded a bunch of HP printer models Win7x64 driver pack from MS Update Catalog "http://catalog.update.microsoft.com/v7/site/Search.aspx?q=hp%20deskjet%20970cse" (x86 also available.
    This driver pack is for maybe over 400 HP printer models incl. both DJ970Cse & PS7200) and modded its genuine INF file for HardwareID of my PS1115 as HPPHOTOSMART_11150FFF with use of 970Cse driver but also some DLLs and PCL Language Monitor
    of PS7200 one.
    This modded by me INF file is attached as a Code Block. Pls be advised that all originally integrated printer devices strings except DJ970cse & PS7200 ones were deleted for convenience and 
    z 1 new combined string for PS1115 added. Then everybody interested can compare & track z changes done. This modded driver is now installed and working w/o any glitch on 2 of my Win7sp1x64 PCs. Although I’ve maybe spent totally a day or
    so on all that fuss of posting about & studying around.
    My final conclusion is z very much common one
     – f**k HP… and/or MS as well, when it’s yet unknown why this error occurred after z years of no problem use of DJ970Cse driver but after Win7sp1 updating to IE11 and/or KB2775511 and only with x64 version
    of OS.
    bye for now.
    PS: btw, why I’m not able to attach any small text file or post a link to MS site here???!!!
    END
    UPDATE 2014-06-12-Thu: there is one more small glitch of printing to paper from IE11 only found! now it's about a Print Processor settings...
    pls set not any hp oem print processor but z standard windows one aka 'winprint' to be used for printing in Printer properties > Advanced sub-menu, otherwise a printout is incorrect in part of a printed page header &
    footer. a page print preview is ok but z printed header is incomplete = cut at right side, and no footer printed at all.
    pls be advised that above note is valid for both modded & genuine driver installed and for both x86 & x64 win7...
    rgds,
    ; Windows Inbox Printer Drivers
    [Version]
    Signature="$Windows NT$"
    Provider="Microsoft"
    ClassGUID={4D36E979-E325-11CE-BFC1-08002BE10318}
    Class=Printer
    CatalogFile=prnhp001.cat
    DriverVer=06/21/2006,6.1.7233.0
    [Manufacturer]
    "HP"=HP,NTamd64
    [HP.NTamd64]
    "HP DeskJet 970Cse" = HPFDJ97E.GPD,HEWLETT-PACKARDDESKJ8FFF,HP_DeskJet_970Cse ; Hardware ID
    "HP Photosmart 1115 Series" = HPFDJ97E.GPD.ICM_LH_PHASE5,HPPHOTOSMART_11150FFF,HP_Photosmart_1115_Series ; Hardware ID
    "HP Photosmart 7200 Series" = HPP7200T.GPD.ICM_LH_PHASE5,hpphotosmart_7200_se8fD3,hpphotosmart_7200_se5294,HP_Photosmart_7200_Series ; Hardware ID
    [OEM URLS]
    "HP"="http://go.microsoft.com/fwlink/?LinkID=37&prd=10798&sbp=Printers"
    [Previous Names]
    "HP DeskJet 970Cse"="HP DeskJet 970C Series"
    [ControlFlags]
    ExcludeFromSelect=HWPC211,HWP2250,HWP2286,HWP2284,HWPC212,HWP2140,\
    HWP21A0,HWP20F0,HWP2160,HWP20D0,HWP20E0,HWP2100,HWP21B0,HWP21E0,\
    Hewlett-PackardHP_LaD4FF,Hewlett-Packardhp_LaFBC4
    [HPFDJ97E.GPD]
    [email protected],@HPFUD50.DLL,@HPFUI50.DLL,@HPFIMG50.DLL,@HPF900AL.DLL,@HPFDJ97E.GPD,@HPFDJ970.GPD,@HPFDJ97X.GPD,@HPFNAM50.GPD
    DataFile=HPFDJ97E.GPD
    CoreDriverSections="{D20EA372-DD35-4950-9ED8-A6335AFE79F0},UNIDRV.OEM,UNIDRV_DATA","{D20EA372-DD35-4950-9ED8-A6335AFE79F3},sRGBPROFILE.OEM"
    [HPFDJ97E.GPD.ICM_LH_PHASE5]
    CopyFiles=HPC_COMMON_LH,HP_PRNPROC,@HPFDJ50.INI,@HPFUD50.DLL,@HPFUI50.DLL,@HPFIMG50.DLL,@HPF900AL.DLL,@HPFDJ97E.GPD,@HPFDJ970.GPD,@HPFDJ97X.GPD,@HPFNAM50.GPD,@HPZEVLHN.DLL,@HPZSTLHN.DLL,@HPZUILHN.DLL,HP_LANGMON
    DataFile=HPFDJ97E.GPD
    LanguageMonitor="PCL hpz3llhn,hpz3llhn.dll"
    PrintProcessor="hpzpplhn,hpzpplhn.dll"
    CoreDriverSections="{D20EA372-DD35-4950-9ED8-A6335AFE79F0},UNIDRV.OEM,UNIDRV_DATA"
    [HPP7200T.GPD.ICM_LH_PHASE5]
    CopyFiles=HPC_COMMON_LH,HP_PRNPROC,@HPZ3RLHN.DLL,@HPZ3ALHN.DLL,@HPZSSLHN.DLL,@HPP7200T.GPD,@HPP7X00T.GPD,@HPZ3CLHN.INI,@HPZSMLHN.GPD,@HPZ3MLHN.GPD,@HPP7200T.XML,@HPZSCLHN.DTD,@HPFRES50.DLL,@HPFIME50.DLL,@HPFIGLHN.DLL,@HPZPRLHN.DLL,HP_LANGMON
    DataFile=HPP7200T.GPD
    LanguageMonitor="PCL hpz3llhn,hpz3llhn.dll"
    PrintProcessor="hpzpplhn,hpzpplhn.dll"
    CoreDriverSections="{D20EA372-DD35-4950-9ED8-A6335AFE79F0},UNIDRV.OEM,UNIDRV_DATA"
    [MS_ABOUT_UI]
    HPCABOUT.DLL
    HPCSTR.DLL
    [CIO_COPYFILES_SPOOL]
    HPZIDR12.DLL,,,0x00000020
    HPZINW12.DLL,,,0x00000020
    HPZIPM12.DLL,,,0x00000020
    HPZIPR12.DLL,,,0x00000020
    HPZIPT12.DLL,,,0x00000020
    HPZISN12.DLL,,,0x00000020
    [CIO_COPYFILES_SYS32]
    HPZIDR12.DLL,,,0x00000020
    HPZINW12.DLL,,,0x00000020
    HPZIPM12.DLL,,,0x00000020
    HPZIPR12.DLL,,,0x00000020
    HPZIPT12.DLL,,,0x00000020
    HPZISN12.DLL,,,0x00000020
    [MS_COLOR]
    HPCCLJ1.DLL
    HPCCLJUI.DLL
    [DMC_x86]
    HPCDMCLH.DLL,,,0x00000020
    [GPD_COMMON3]
    HPZSMLHN.GPD
    [DUSTDEVIL_COPYFILES_SPOOL]
    HPBMIAPI.DLL,,,0x00000020
    HPBMINI.DLL,,,0x00000020
    HPBOID.DLL,,,0x00000020
    HPBOIDPS.DLL,,,0x00000020
    HPBPRO.DLL,,,0x00000020
    HPBPROPS.DLL,,,0x00000020
    HPEACLHN.HPI,,,0x00000020
    [DUSTDEVIL_COPYFILES_SYS32]
    HPBMIAPI.DLL,,,0x00000020
    HPBMINI.DLL,,,0x00000020
    HPBOID.DLL,,,0x00000020
    HPBOIDPS.DLL,,,0x00000020
    HPBPRO.DLL,,,0x00000020
    HPBPROPS.DLL,,,0x00000020
    HPEACLHN.HPI,,,0x00000020
    [HP_ICC]
    HP DJ 6900-PREM PAPER(TRICOLOR+BLACK).ICC,hpf69000.icc,,0x00000020
    HP DJ 6900-PREM PAPER(TRICOLOR+GRAY).ICC,hpf69002.icc,,0x00000020
    HP DJ 6900-PREM PAPER(TRICOLOR+PHOTO).ICC,hpf69001.icc,,0x00000020
    HP DJ 6900-PREM PLUS PHOTO(TRICOLOR+BLACK).ICC,hpf69003.icc,,0x00000020
    HP DJ 6900-PREM PLUS PHOTO(TRICOLOR+GRAY).ICC,hpf69005.icc,,0x00000020
    HP DJ 6900-PREM PLUS PHOTO(TRICOLOR+PHOTO).ICC,hpf69004.icc,,0x00000020
    HP OJ 6300-PREM PAPER(TRICOLOR+BLACK).ICC,hpo63000.icc,,0x00000020
    HP OJ 6300-PREM PAPER(TRICOLOR+PHOTO).ICC,hpo63001.icc,,0x00000020
    HP OJ 6300-PREM PAPER(TRICOLOR+GRAY).ICC,hpo63002.icc,,0x00000020
    HP OJ 6300- PREM PLUS PHOTO(TRICOLOR+BLACK).ICC,hpo63003.icc,,0x00000020
    HP OJ 6300- PREM PLUS PHOTO(TRICOLOR+PHOTO).ICC,hpo63004.icc,,0x00000020
    HP OJ 6300- PREM PLUS PHOTO(TRICOLOR+GRAY).ICC,hpo63005.icc,,0x00000020
    [HP_LANGMON]
    HPZ3LLHN.DLL
    [HP_LIDIL_LANGMON]
    HPZLLLHN.DLL
    [HP_PRNPROC]
    HPZPPLHN.DLL
    [HPC_COMMON]
    HPZEVLHN.DLL
    HPZSTLHN.DLL
    HPZUILHN.DLL
    [HPC_COMMON_LH]
    HPZEVLHN.DLL
    HPZSTLHN.DLL
    HPZUILHN.DLL
    [HPCLJ5V2_COLOR]
    HPCLJ5.ICM
    [HPDJ500C_COLOR]
    HP500ND.ICM
    HP500NG.ICM
    [HPPRPROC]
    HPZPPLHN.DLL,,,0x00000020
    [MANUAL_DUPLEX]
    HPZEVLHN.DLL,,,0x00000020
    [PSRENDER]
    HPZSRLHN.DLL,,,0x00000020
    [RENDER]
    HPZ5RLHN.DLL,,,0x00000020
    [RES_COMMON]
    HPZSTLHN.DLL,,,0x00000020
    [STRING_DLL]
    HPZSTLHN.DLL,,,0x00000020
    [UI]
    HPZLSLHN.DLL,,,0x00000020
    HPZSSLHN.DLL,,,0x00000020
    HPZUILHN.DLL,,,0x00000020
    [PML_user_Inst.AddService]
    ; PML Service configuration info
    DisplayName = "Pml Driver HPZ12"
    ServiceType = 0x00000020
    StartType = 0x2
    ErrorControl = 1
    ServiceBinary = %11%\svchost.exe -k HPCIO
    AddReg=PML_Addreg
    [NET_user_Inst.AddService]
    ; NET Service configuration info
    DisplayName = "NET Driver HPZ12"
    ServiceType = 0x00000020
    StartType = 0x2
    ErrorControl = 1
    ServiceBinary = %11%\svchost.exe -k HPCIO
    AddReg=NET_Addreg
    [PML_AddReg]
    ; Registry configuration info
    HKLM,SOFTWARE\Microsoft\Windows NT\CurrentVersion\SvcHost,"HPCIO",0x00010008,"Pml Driver HPZ12"
    HKLM,SYSTEM\CurrentControlSet\Services\Pml Driver HPZ12\Parameters,"ServiceDll",0x00020000,"%11%\HPZipm12.dll"
    [Net_AddReg]
    ; Registry configuration info
    HKLM,SOFTWARE\Microsoft\Windows NT\CurrentVersion\SvcHost,"HPCIO",0x00010008,"NET Driver HPZ12"
    HKLM,SYSTEM\CurrentControlSet\Services\Net Driver HPZ12\Parameters,"ServiceDll",0x00020000,"%11%\HPZinw12.dll"
    [DustDevilReg]
    11,,HPBMIAPI.DLL,1,300
    11,,HPBOID.DLL,1,300
    11,,HPBOIDPS.DLL,1,300
    11,,HPBPRO.DLL,1,300
    11,,HPBPROPS.DLL,1,300
    [DestinationDirs]
    DefaultDestDir=66000
    HP_PRNPROC=66001
    HPPRPROC=66001
    CIO_COPYFILES_SYS32=66002
    DUSTDEVIL_COPYFILES_SYS32=66002
    HP_LANGMON=66002
    HP_LIDIL_LANGMON=66002
    HP_ICC=66003
    HPCLJ5V2_COLOR=66003
    HPDJ500C_COLOR=66003
    [SourceDisksFiles]
    hpf69000.icc = 1
    hpf69001.icc = 1
    hpf69002.icc = 1
    hpf69003.icc = 1
    hpf69004.icc = 1
    hpf69005.icc = 1
    hpo63000.icc = 1
    hpo63001.icc = 1
    hpo63002.icc = 1
    hpo63003.icc = 1
    hpo63004.icc = 1
    hpo63005.icc = 1
    HP_3P522.PPD = 1
    HP4M3_V1.PPD = 1
    HP4M6_V1.PPD = 1
    HP4ML_V1.PPD = 1
    HP4MP3_1.PPD = 1
    HP4MP6_1.PPD = 1
    HP4MPLS.GPD = 1
    HP4PLUS3.PPD = 1
    HP4PLUS6.PPD = 1
    HP4SI6_1.PPD = 1
    HP500ND.ICM = 1
    HP500NG.ICM = 1
    HP5SI.GPD = 1
    HP5SIM.GPD = 1
    HPBMIAPI.DLL = 1
    HPBMINI.DLL = 1
    HPBOID.DLL = 1
    HPBOIDPS.DLL = 1
    HPBPRO.DLL = 1
    HPBPROPS.DLL = 1
    HPC1220P.PPD = 1
    HPC1220P.XML = 1
    HPC1RWSL.PPD = 1
    HPC1RWSL.XML = 1
    HPC1RXSL.PPD = 1
    HPC1RXSL.XML = 1
    HPC2GW6L.GPD = 1
    HPC2GW6L.XML = 1
    HPC3050F.GPD = 1
    HPC3050F.XML = 1
    HPC3052F.GPD = 1
    HPC3052F.XML = 1
    HPC3055F.GPD = 1
    HPC3055F.XML = 1
    HPC3346L.GPD = 1
    HPC3346L.XML = 1
    HPC3390F.GPD = 1
    HPC3390F.XML = 1
    HPC34I6L.GPD = 1
    HPC34I6L.XML = 1
    HPC35W6L.GPD = 1
    HPC35W6L.XML = 1
    HPC38O6L.GPD = 1
    HPC38O6L.XML = 1
    HPC3BG6L.GPD = 1
    HPC3BG6L.XML = 1
    HPC3H06L.GPD = 1
    HPC3H06L.XML = 1
    HPC3IE6L.GPD = 1
    HPC3IE6L.XML = 1
    HPC3JS6L.GPD = 1
    HPC3JS6L.XML = 1
    HPC3UW6L.GPD = 1
    HPC3UW6L.XML = 1
    HPC3XO6L.GPD = 1
    HPC3XO6L.XML = 1
    HPC48S6L.GPD = 1
    HPC48S6L.XML = 1
    HPC5200F.GPD = 1
    HPC5201F.GPD = 1
    HPC5200F.XML = 1
    HPC5201F.XML = 1
    HPC520XF.GPD = 1
    HPC6686L.GPD = 1
    HPC6686L.XML = 1
    HPC6906L.GPD = 1
    HPC6906L.XML = 1
    HPC6AE6L.GPD = 1
    HPC6AE6L.XML = 1
    HPC6K4SL.PPD = 1
    HPC6K4SL.XML = 1
    HPC6LI5L.GPD = 1
    HPC6LI5L.XML = 1
    HPC6LISL.PPD = 1
    HPC6LISL.XML = 1
    HPC6Y06L.GPD = 1
    HPC6Y06L.XML = 1
    HPCABOUT.DLL = 1
    HPCCLJ1.DLL = 1
    HPCCLJ1.INI = 1
    HPCCLJUI.DLL = 1
    HPCDMCLH.DLL = 1
    HPCFONT.DLL = 1
    HPCLJ5.ICM = 1
    HPCLJ5V2.PPD = 1
    HPCSTR.DLL = 1
    HPDJ340.GPD = 1
    HPDJ340M.GPD = 1
    HPDJ400.GPD = 1
    HPDJ400M.GPD = 1
    HPDJ420.GPD = 1
    HPDJ500.GPD = 1
    HPDJ500C.GPD = 1
    HPDJ5550.CFG = 1
    HPDJ600.GPD = 1
    HPDJ600M.GPD = 1
    HPDJ890C.GPD = 1
    HPDJRES.DLL = 1
    HPF0450T.GPD = 1
    HPEACLHN.HPI = 1
    HPF0450T.XML = 1
    HPF3550T.GPD = 1
    HPF3550T.XML = 1
    HPF3650T.GPD = 1
    HPF3650T.XML = 1
    HPF3745T.GPD = 1
    HPF3745T.XML = 1
    HPF3840T.GPD = 1
    HPF3840T.XML = 1
    HPF3920T.GPD = 1
    HPF3920T.XML = 1
    HPF4A63L.GPD = 1
    HPF4A63L.XML = 1
    HPF4A6AL.GPD = 1
    HPF4BK3L.GPD = 1
    HPF4BK3L.XML = 1
    HPF5400T.GPD = 1
    HPF5400T.XML = 1
    HPF5740T.GPD = 1
    HPF5740T.XML = 1
    HPF5940T.GPD = 1
    HPF5940T.XML = 1
    HPF6540T.GPD = 1
    HPF6540T.XML = 1
    HPF6840T.GPD = 1
    HPF6840T.XML = 1
    HPF6940T.GPD = 1
    HPF6940T.XML = 1
    HPF6980T.GPD = 1
    HPF6980T.XML = 1
    HPF880AL.DLL = 1
    HPF900AL.DLL = 1
    HPF940AL.DLL = 1
    HPFDJ50.INI = 1
    HPFDJ640.GPD = 1
    HPFDJ69X.GPD = 1
    HPFDJ6XX.GPD = 1
    HPFDJ816.GPD = 1
    HPFDJ830.GPD = 1
    HPFDJ840.GPD = 1
    HPFDJ845.GPD = 1
    HPFDJ84X.GPD = 1
    HPFDJ89X.GPD = 1
    HPFDJ920.GPD = 1
    HPFDJ930.GPD = 1
    HPFDJ940.GPD = 1
    HPFDJ948.GPD = 1
    HPFDJ94X.GPD = 1
    HPFDJ950.GPD = 1
    HPFDJ955.GPD = 1
    HPFDJ957.GPD = 1
    HPFDJ95X.GPD = 1
    HPFDJ96C.GPD = 1
    HPFDJ970.GPD = 1
    HPFDJ97E.GPD = 1
    HPFDJ97I.GPD = 1
    HPFDJ97X.GPD = 1
    HPFDJ980.GPD = 1
    HPFDJ98C.GPD = 1
    HPFDJ990.GPD = 1
    HPFDJ99E.GPD = 1
    HPFDJ99X.GPD = 1
    HPFH5900.EXP = 1
    HPFIGLHN.DLL = 1
    HPFIME50.DLL = 1
    HPFIMG50.DLL = 1
    HPFNAM50.GPD = 1
    HPFRES50.DLL = 1
    HPFUD50.DLL = 1
    HPFUI50.DLL = 1
    HPIII522.PPD = 1
    HPIIP522.PPD = 1
    HPIJ2280.CFG = 1
    HPIJ3000.CFG = 1
    HPLJ__31.PPD = 1
    HPLJ_3P1.PPD = 1
    HPLJ1100.GPD = 1
    HPLJ2.GPD = 1
    HPLJ21P6.GPD = 1
    HPLJ2300.CFG = 1
    HPLJ2P.GPD = 1
    HPLJ2PP.GPD = 1
    HPLJ2X.GPD = 1
    HPLJ3.GPD = 1
    HPLJ3P.GPD = 1
    HPLJ4.GPD = 1
    HPLJ4100.CFG = 1
    HPLJ4200.CFG = 1
    HPLJ4300.CFG = 1
    HPLJ4550.CFG = 1
    HPLJ4600.CFG = 1
    HPLJ4L.GPD = 1
    HPLJ4M.GPD = 1
    HPLJ4ML.GPD = 1
    HPLJ4MV.GPD = 1
    HPLJ4MV1.PPD = 1
    HPLJ4P.GPD = 1
    HPLJ4PS.GPD = 1
    HPLJ4SI.GPD = 1
    HPLJ4V.GPD = 1
    HPLJ5.GPD = 1
    HPLJ5100.CFG = 1
    HPLJ5500.CFG = 1
    HPLJ5L.GPD = 1
    HPLJ5M.GPD = 1
    HPLJ5M_4.PPD = 1
    HPLJ5MP.GPD = 1
    HPLJ5N.GPD = 1
    HPLJ5P.GPD = 1
    HPLJ5P_1.PPD = 1
    HPLJ5SI1.PPD = 1
    HPLJ5SIM.PPD = 1
    HPLJ6L.GPD = 1
    HPLJ6MP.GPD = 1
    HPLJ6P.GPD = 1
    HPLJ6P_4.PPD = 1
    HPLJ8150.CFG = 1
    HPLJ8550.CFG = 1
    HPLJ9000.CFG = 1
    HPMCPB25.GPD = 1
    HPMCPC25.GPD = 1
    HPMCPC25.PPD = 1
    HPMCPD25.CFG = 1
    HPMCPD25.PPD = 1
    HPMCPDP5.XML = 1
    HPMCPDPS.XML = 1
    HPMCPL25.GPD = 1
    HPMCPM25.GPD = 1
    HPMOJ50.INI = 1
    HPMOJR40.GPD = 1
    HPMOJR45.GPD = 1
    HPMOJR4I.GPD = 1
    HPMOJR60.GPD = 1
    HPMOJR65.GPD = 1
    HPMOJR80.GPD = 1
    HPMOJR8I.GPD = 1
    HPMOJRX.GPD = 1
    HPMOPY.GPD = 1
    HPMOPYUI.INI = 1
    HPMPSC50.GPD = 1
    HPO0410T.GPD = 1
    HPO0410T.XML = 1
    HPO1100T.GPD = 1
    HPO1100T.XML = 1
    HPO1200T.GPD = 1
    HPO1200T.XML = 1
    HPO1300T.GPD = 1
    HPO1300T.XML = 1
    HPO1310T.GPD = 1
    HPO1310T.XML = 1
    HPO13X0T.GPD = 1
    HPO1400T.GPD = 1
    HPO1400T.XML = 1
    HPO1500T.GPD = 1
    HPO1500T.XML = 1
    HPO1600T.GPD = 1
    HPO1600T.XML = 1
    HPO1X00T.GPD = 1
    HPO2100T.GPD = 1
    HPO2100T.XML = 1
    HPO2150T.GPD = 1
    HPO2150T.XML = 1
    HPO2170T.GPD = 1
    HPO2170T.XML = 1
    HPO2200T.GPD = 1
    HPO2200T.XML = 1
    HPO2300T.GPD = 1
    HPO2300T.XML = 1
    HPO2350T.GPD = 1
    HPO2350T.XML = 1
    HPO2400T.GPD = 1
    HPO2400T.XML = 1
    HPO2500T.GPD = 1
    HPO2500T.XML = 1
    HPO2600T.GPD = 1
    HPO2600T.XML = 1
    HPO2700T.GPD = 1
    HPO2700T.XML = 1
    HPO3100T.GPD = 1
    HPO3100T.XML = 1
    HPO3200T.GPD = 1
    HPO3200T.XML = 1
    HPO3300T.GPD = 1
    HPO3300T.XML = 1
    HPO3X00T.GPD = 1
    HPO4100T.GPD = 1
    HPO4100T.XML = 1
    HPO4105T.GPD = 1
    HPO4105T.XML = 1
    HPO410XT.GPD = 1
    HPO4200T.GPD = 1
    HPO4200T.XML = 1
    HPO4300T.GPD = 1
    HPO4300T.XML = 1
    HPO4PG3L.GPD = 1
    HPO4PG3L.XML = 1
    HPO5500T.GPD = 1
    HPO5500T.XML = 1
    HPO5600T.GPD = 1
    HPO5600T.XML = 1
    HPO5H83L.GPD = 1
    HPO5H83L.XML = 1
    HPO6200T.GPD = 1
    HPO6200T.XML = 1
    HPO6300T.GPD = 1
    HPO6300T.XML = 1
    HPO6X00T.GPD = 1
    HPO7200T.GPD = 1
    HPO7200T.XML = 1
    HPO7300T.GPD = 1
    HPO7300T.XML = 1
    HPO7400T.GPD = 1
    HPO7400T.XML = 1
    HPO7X00T.GPD = 1
    HPOEMUI.DLL = 1
    HPOF300T.GPD = 1
    HPOF300T.XML = 1
    HPOGDS3L.GPD = 1
    HPOGDS3L.XML = 1
    HPOH3550.EXP = 1
    HPOH5500.EXP = 1
    HPOJ1600.CFG = 1
    HPOJ2600.CFG = 1
    HPOJ2700.CFG = 1
    HPOJ6200.CFG = 1
    HPOJ720.GPD = 1
    HPOJ7200.CFG = 1
    HPOJ7300.CFG = 1
    HPOJ7400.CFG = 1
    HPOJ750.GPD = 1
    HPOJ750I.GPD = 1
    HPOJ920.GPD = 1
    HPOJ950.GPD = 1
    HPOJG55.GPD = 1
    HPOJG55I.GPD = 1
    HPOJG85.GPD = 1
    HPOJG85I.GPD = 1
    HPOJG95.GPD = 1
    HPOJK60.GPD = 1
    HPOJK60I.GPD = 1
    HPOJK80.GPD = 1
    HPOJK80I.GPD = 1
    HPOJV30.GPD = 1
    HPOJV40.GPD = 1
    HPOJV40I.GPD = 1
    HPOJV45.GPD = 1
    HPP0320T.GPD = 1
    HPP0320T.XML = 1
    HPP0330T.GPD = 1
    HPP0330T.XML = 1
    HPP0370T.GPD = 1
    HPP0370T.XML = 1
    HPP0380T.GPD = 1
    HPP0380T.XML = 1
    HPP03X0T.GPD = 1
    HPP0420T.GPD = 1
    HPP0420T.XML = 1
    HPP0470T.GPD = 1
    HPP0470T.XML = 1
    HPP1160T.GPD = 1
    HPP1160T.XML = 1
    HPP2570T.GPD = 1
    HPP2570T.XML = 1
    HPP7200T.GPD = 1
    HPP7200T.XML = 1
    HPP7400T.GPD = 1
    HPP7400T.XML = 1
    HPP7800T.GPD = 1
    HPP7800T.XML = 1
    HPP78X0T.GPD = 1
    HPP7X00T.GPD = 1
    HPP8000T.GPD = 1
    HPP8000T.XML = 1
    HPP8100T.GPD = 1
    HPP8100T.XML = 1
    HPP8200T.GPD = 1
    HPP8200T.XML = 1
    HPP8400T.GPD = 1
    HPP8400T.XML = 1
    HPP8700T.GPD = 1
    HPP8700T.XML = 1
    HPP8X00T.GPD = 1
    HPPH0330.EXP = 1
    HPPH0380.EXP = 1
    HPPH0420.EXP = 1
    HPPH0470.EXP = 1
    HPPH1500.EXP = 1
    HPPH3100.EXP = 1
    HPPH3200.EXP = 1
    HPPH3300.EXP = 1
    HPPH7800.EXP = 1
    HPPH8000.EXP = 1
    HPPH8100.EXP = 1
    HPPH8200.EXP = 1
    HPPH8400.EXP = 1
    HPV600AL.DLL = 1
    HPV700AL.DLL = 1
    HPV800AL.DLL = 1
    HPV820AL.DLL = 1
    HPV880AL.DLL = 1
    HPVDB720.DLL = 1
    HPVDB820.DLL = 1
    HPVDJ50.INI = 1
    HPVDJ610.GPD = 1
    HPVDJ612.GPD = 1
    HPVDJ615.GPD = 1
    HPVDJ660.GPD = 1
    HPVDJ66E.GPD = 1
    HPVDJ67X.GPD = 1
    HPVDJ690.GPD = 1
    HPVDJ691.GPD = 1
    HPVDJ693.GPD = 1
    HPVDJ694.GPD = 1
    HPVDJ695.GPD = 1
    HPVDJ697.GPD = 1
    HPVDJ69X.GPD = 1
    HPVDJ6XX.GPD = 1
    HPVDJ710.GPD = 1
    HPVDJ720.GPD = 1
    HPVDJ7XX.GPD = 1
    HPVDJ812.GPD = 1
    HPVDJ815.GPD = 1
    HPVDJ82E.GPD = 1
    HPVDJ82I.GPD = 1
    HPVDJ82X.GPD = 1
    HPVDJ870.GPD = 1
    HPVDJ87E.GPD = 1
    HPVDJ87I.GPD = 1
    HPVDJ87X.GPD = 1
    HPVDJ882.GPD = 1
    HPVDJ89E.GPD = 1
    HPVDJ89I.GPD = 1
    HPVDJ89X.GPD = 1
    HPVIMG50.DLL = 1
    HPVNAM50.GPD = 1
    HPVSCP50.DLL = 1
    HPVUD50.DLL = 1
    HPVUI50.DLL = 1
    HPW0460T.GPD = 1
    HPW0460T.XML = 1
    HPW1000T.GPD = 1
    HPW1000T.XML = 1
    HPW1200T.GPD = 1
    HPW1200T.XML = 1
    HPW1B83L.GPD = 1
    HPW1B83L.XML = 1
    HPW1QI3L.GPD = 1
    HPW1QI3L.XML = 1
    HPW1RC3L.GPD = 1
    HPW1RC3L.XML = 1
    HPW2BC6L.GPD = 1
    HPW2BC6L.XML = 1
    HPW9800T.GPD = 1
    HPW9800T.XML = 1
    HPWH0460.CFG = 1
    HPWH9800.CFG = 1
    HPWK550T.GPD = 1
    HPWK550T.XML = 1
    HPWK850T.GPD = 1
    HPWK850T.XML = 1
    HPWM50AL.DLL = 1
    HPWM5100.GPD = 1
    HPWM5112.GPD = 1
    HPWM5122.GPD = 1
    HPWM5125.GPD = 1
    HPWM5225.GPD = 1
    HPWM5350.GPD = 1
    HPWM535M.GPD = 1
    HPWM5CON.INI = 1
    HPWM5DB1.DLL = 1
    HPWMACRO.GPD = 1
    HPZ3ALHN.DLL = 1
    HPZ3CLHN.INI = 1
    HPZ3LLHN.DLL = 1
    HPZ3MLHN.GPD = 1
    HPZ3RLHN.DLL = 1
    HPZ5CLHN.INI = 1
    HPZ5RLHN.DLL = 1
    HPZ6CLHN.INI = 1
    HPZ6MLHN.GPD = 1
    HPZ6RLHN.DLL = 1
    HPZEVLHN.DLL = 1
    HPZFNLHN.NTF = 1
    HPZIDR12.DLL = 1
    HPZLALHN.DLL = 1
    HPZINW12.DLL = 1
    HPZIPM12.DLL = 1
    HPZIPR12.DLL = 1
    HPZIPT12.DLL = 1
    HPZISN12.DLL = 1
    HPZLELHN.DLL = 1
    HPZLLLHN.DLL = 1
    HPZLSLHN.DLL = 1
    HPZPPLHN.DLL = 1
    HPZPRLHN.DLL = 1
    HPZSCLHN.DTD = 1
    HPZSCLHN.INI = 1
    HPZSMLHN.GPD = 1
    HPZSRLHN.DLL = 1
    HPZSSLHN.DLL = 1
    HPZSTLHN.DLL = 1
    HPZUILHN.DLL = 1
    [PrinterPackageInstallation.amd64]
    PackageAware=TRUE
    CoreDriverDependencies={D20EA372-DD35-4950-9ED8-A6335AFE79F0},{D20EA372-DD35-4950-9ED8-A6335AFE79F1},{D20EA372-DD35-4950-9ED8-A6335AFE79F2},{D20EA372-DD35-4950-9ED8-A6335AFE79F3}
    [Strings]
    ;Localizable
    Disk1="Windows Installation Disc"
    [SourceDisksNames.x86]
    1 = %Disk1%,,,"I386"
    [SourceDisksNames.amd64]
    1 = %Disk1%,,,"Amd64"
    [SourceDisksNames.ia64]
    1 = %Disk1%,,,"Ia64"

  • OfficeJet Pro L7780 - Have to Restart Print Spooler every job I print (Windows 7 32-bit)

    I have an OfficeJet Pro L7780 that shows as offline in Devices and Printers constantly.  I discovered if I queue up print jobs to it and then restart the print spooler all of the jobs will come out perfectly then the printer will instantly go offline.   Here is what I've done for troubleshooting already:
    Upgrade to newest firmware (R2011NxNxeN0)
    Factory Reset by hold # and 3 at boot
    Changed Ink and Print Heads
    Installed newest 14.0 driver (tried both Basic and IT Pro Driver)
    Rebooted and restarted printer and computer
    Tried all this on a 2nd Windows 7 computer with the same results
    Anyone actually use this printer on Windows 7 32-bit over the wired network port!!?!
    This question was solved.
    View Solution.

    Same printer, same problem, same remediation by restarting Printer Spooler service.  Only difference is OS is Win 7 Ultimate 64-bit.
    FYI- I'm using my L7780 via a wifi connection using WPA2 security and a static IP and network RAW printing to port 9100.  The printer always appears available via network pings but not to the print spooler.  As such, printer is always "grayed out" and disabled but will accept jobs into its queue.
    After endless searching this is what appears to be working as a fix:  Turn off SNMP on printer port.
    Printer Properties -> Ports Tab -> (Select Port) -> Configure Port -> uncheck "SNMP Status Enabled"
    Hopefully this works for others- but I also found mention that others found a fix in toggling other settings such as "Enable bidirection printing" check box.  Who knows what seemingly unrelated software triggers this issue but it began one strange day and drove me crazy.

  • Printer won't print, fixes won't fix! Reset the printer spooler dependencies to default.

    Using a stand-alone Dell XPS 420 with Vista 32 bit and an OKI C1500 printer connected by USB. Always a problem getting the printer going after it has been disconnected, but this time it's a big problem! Get a printer spooler error message and it defaults
    to 'use printer offline' so have:
     restarted Printer Spooler in Services and set it to Automatic start and set it's Recovery to restart after each failure
    rebooted, restored PC, power recycled printer, tried different usb slots, cable works OK
    deleted printer driver in case it was corrupt and downloaded a new one
    applied the automatic Fixit programme
    applied a fix to prnter dependencies resetting them to RPCSS
    None of the above has worked.
    Now I would like to know how to reset the default drivers for the spooler and find out the cause and how to fix the problem!
    Recently removed a Trojan that hi-jacked 32Rundll and stopped Microsoft Security Essentilals from running.
    I need any explanation in slow. simple dorkspeak like 'Step one: press down on the button with B on it'  or I won't understand!
    A lot to to ask I guess! Thanks,

    Hi,
    o to Start / Run and type in "services.msc" without quotation marks, then press Enter or click OK.
    In the window that opens (Services) look for "Print Spooler" on the right
    Right-click "Print Spooler" and select "Properties".
    Click on the "Recovery" tab and change all 3 drop-down boxes to "Restart The Service".
    Make sure the 2 text boxes underneath say "1" in them.
    Click Ok until you are back at the Services window, close it and you're good to go.
    Go back into the properties of the "Print Spooler" tab and be sure to click Start to restart the Print Spooler service and it will restart the service immediately.
    The Print spooler depends on the Remote Procedure Call (RPC) service. Is this service disabled? Go to services.msc look for RPC. Check state: Automatic
    Printer Support

  • Windows 8 stops printer spooler in vista pc

    My AIO HP F4280 printer spooler service in my Windows Vista PC stops when I send a print job via wireless from my Windows 8 laptop PC. I downloaded and installed the Windows 8 software for the F4280 and if the printer is connected to the Windows 8 PC, prints from the Windows 8 PC, as well as prints sent via wireless from the Vista PC, are done with no issues.
    Going back to wireless from the Win 8 to the Vista continues to stop the spooler service.
    All known updates for both PCs have been installed.

    Hello Campersteve. Please refer to this Microsoft forum for troubleshooting on this issue: http://answers.microsoft.com/en-us/windows/forum/windows_8-hardware/print-spooler-keeps-stopping-win...
    The forum contains great troubleshooting steps that could resolve the issue. Let me know if this assists you or not. I'm only here to help!
    Mario
    I worked on behalf of HP.

  • How to setup a print spool  in UNIX

    Hi support, i am new to basis and to sdn..
      could you please help me with how to setup a print spool  in UNIX.
    Thank you
    Martin

    Message 1 :
    On UNIX:
    1.     Login as sidadm
    2.     Su - root
    3.     Execute "jetadmin" (or use u201Csamu201D if you are familiar with it).
    4.     Select option 1
    5.     Select option 3
    6.     Enter the IP address of the printer
    7.     Select option 1 again and assign an appropriate queue name
    8.     Follow the instructions to complete
    9.     "lpstat -t"  to confirm the printer is enabled
    10.     Setup on R3
    Message 2:
    On SAP
    1.     Transaction u201CSPADu201D
    2.     Switch to change mode
    3.     Chose Output Device
    4.     Select Printer you want to create/copy/change
    5.     To use or by pass DAZEL:
    1.     use Dazel:
    a.     Host Spool Access Method: E
    b.     Host Printer: 1_usbprint03_xxxxxx
    c.     Logical OMS: R3 SID Dazel LOMS
    2.     by pass Dazel:
    a.     Host Spool Access Method: L
    b.     Host Printer: (queue name on UNIX Spool)
    To test printing, try to print something (i.e. spool server list) and go to  Transaction u201CSP01u201D to change the result.

  • Print Spooler does not work after Win 8.1 install

    I upgraded several computers to Win 8.1.  Most are operating normally and do not have this problem.  This is relevant to show that it is not a printer hardware or compatibility problem.  On one computer, the print function is not working. 
    I've tried reinstalling printers, getting new drivers, etc.  It comes down to this.  An active (connected) printer is selected and print test page is selected.  The dialog box says that the print queue is full.  I went to the queue subdirectory
    and deleted all files, no change to the results.  The Print spooler is active in task manager.  Stopping and restarting the print spooler makes no difference.  Any ideas?

    I had similar problems with HP Printers on the LAN (after upgrade from Windows 8 tot 8.1 
    32bit)
    HP Laserjet 4000  Laserjet 4050 and Laserjet 4250 - all with Network interface.
    Erratic behaviour: inserting blank pages, no duplex printing, programs stalling when printing etc…
    Printers and network are fully functional and work perfectly with W7 and XP. Not with Windows 8.1.
    Strange thing: Epson Aculaser and Ricoh Aficio 3224  worked fine but those were installed after the Windows update.
    So definitely something with the Microsoft drivers for the HP Laserjet printers.
    After a few installs and uninstalls of the HP printer drivers the problems stayed.
    Then I removed all HP related driver files (C:\\Windows\\system32\\spool\\PRINTERS")
    and all references in the Register because the standard uninstall of the drivers did not remove all files.
    -> First uninstall ALL  HP printers (laserjet, deskjet, officejet etc ..)
    -> Then look in
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print\Monitors]
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print\Environments\Windows NT x86\Drivers]
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print\Environments\Windows NT x86\Print Processors]
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print\Printers]
    Make a backup of the registry keys and then remove all files starting with hp….
    Remove the print processors starting with hp 
    (i.e. hpzpplhn.exe)
    Then restart your system.
    Reinstall the printers, they should be OK now.
    If you still have duplex printing problems : replace the hpzpplhm print processor with the winprint processor. (may give other limitations, google for more info).
    In my case this solved the erratic printing problems.

Maybe you are looking for