Doubt about ccm.log error= 0x8004100E

Hello guys,
I have a doubt about when ccm.log display error = 0X8004100E.
So, some my desktops scan by SCCM display error= 0x8004100E but client sccm is installed with sucess. My doubt is what reason display this error?
Maybe can I don't worry about this,but I need know reasons display this messages.
Thanks a lot.

This will be displayed if your site server cannot connect to ccm WMI namespace on the worksation. CCM wmi namespace will only be available if the workstation has ConfigMgr client, hence this will eventualy fail for the workstation that are new to
ConfigMgr.  I guess sccm uses this to check if the client is already present or not.
Kindly mark as answer/Vote as helpful if a reply from anybody helped you in this forum. Delphin

Similar Messages

  • Doubt about CURRENT LOG SEQUENCE NUMBER

    I just want to know that why the "current log sequence number" is added to the header of each data file ? why oracle needs to do that ? as it is also added to the control file and whenever it needs to know the current log sequence number , it can get it from control file , then why to add this in the header of data files ?

    For Recovery.
    When you are doing a Recovery of a database where the datafiles have been restored from backups but the controlfile has been recreated (thus, the controlfile has no information about log sequence numbers and checkpoint scns), the Recovery must read this information from the datafile headers.
    Say you have 5 datafiles and they have been backed up 6 months ago using ALTER TABLESPACE BEGIN BACKUP commands and, therefore, have different checkpoint SCNs. The checkpoint SCNs could be 1021, 1059, 1085, 1745, 2045.
    How would Oracle know which Log Sequence Numbers are needed ? It knows that a Recovery must start with SCN 1021. But if the information about Log Sequence Numbers is not available in the controlfile (either because it is as of today and the controlfile doesn't store information about 6 months of redo logs OR because the controlfile has been recreated), what is the Log Sequence Number corresponding to that SCN 1021 ?
    That information is available in the datafile header. You will NOT see it in V$DATAFILE or V$DATAFILE_HEADER. You will not see it in a level 1 dump of datafile headers.
    You will see an example here :
    http://web.singnet.com.sg/~hkchital/Incomplete_Recovery_with_BackupControlfile.doc
    Hemant K Chitale
    http://hemantoracledba.blogspot.com

  • Doubts about: tag nesting error in Struts project

    Hello, people...
    I'd like to know why this error is happenning... Does someone can help me, please? The code is below:
    *** JSP Page ***
    <%@ taglib uri="struts-html" prefix="html"%>
    <%@ taglib uri="struts-bean" prefix="bean"%>
    <%@ taglib uri="struts-logic" prefix="logic" %>
    <%@ taglib uri="project-tag" prefix="tag"%>
    <html:html>
    <head>
         <title><bean:message key="label.project"/></title>
    </head>
    <body onLoad="window_load();">
    <table border="0" width="100%">
    <tr>
    <td>
    <table border="0" cellpadding="0" cellspacing="0" width="100%">
         <tr>
         <td align="right"><!-- Bot?o Voltar --></td>
         </tr>
         <tr class="FonteTituloTela">
         <td><bean:message key="titulo.pesquisarEmpreendimento"/></td>
         </tr>
         </table>
    </td>
    </tr>
    <tr>
    <td>
         <html:form action="/pesquisarEmpreendimentoPopup.do" method="get" onsubmit="return validatePesquisarEmpreendimentoPopupForm(this);">
         <html:hidden property="action" />
         <table width="550">
         <tr>
         <td colspan="3"><bean:message key="titulo.dadosDaPesquisa"/></td>
         </tr>
         <tr>
         <td><bean:message key="label.codigo"/></td>
         <td colspan="2">
         <html:text property="nu_codigo" size="7"/>     
    </tr>
         <tr>
         <td><bean:message key="label.nome"/></td>
         <td colspan="2">
         <html:select property="criterio">
         <html:option value="1"><bean:message key="label.cboIniciando"/></html:option>
         <html:option value="2"><bean:message key="label.cboContendo"/></html:option>
         </html:select>     
         <html:text property="no_municipio" size="40"/>     
         </tr>
    <tr>
         <td>
              <tag:rollover imagemUp="<%=SiwarContext.getContextPath().concat(\"imagem/btn_confirmar_on.gif\")%>" imagemDown="<%=SiwarContext.getContextPath().concat(\"imagem/btn_confirmar_off.gif\")%>" onClick="javascript:document.pesquisarEmpreendimentoPopupForm.submit();"/>
         </td>
         </tr>
    </table>
         </td>
    </tr>
    <tr>
         <td align="center">
              <tag:subir width="500">
         </td>
    </tr>
    </table>
    </html:form>
    </body>
    </html:html>
    *** ActionForm ***
    package jm.action;
    import java.io.IOException;
    import org.apache.struts.action.*;
    import jm.form.PesquisarEmpreendimentoPopupForm;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class PesquisarEmpreendimentoPopupAction extends Action {
    public ActionForward execute( ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) {
    PesquisarEmpreendimentoPopupForm pesquisarEmpreendimentoPopupForm = (PesquisarEmpreendimentoPopupForm) form;
    // Acessar l?gica de neg?cio
    return mapping.findForward("pesquisarEmpreendimentoPopupFwd");
    *** Form class***
    package br.gov.caixa.siwar.tratarproponentes.form;
    import org.apache.struts.action.*;
    import org.apache.struts.validator.*;
    public class PesquisarEmpreendimentoPopupForm extends ValidatorForm {
         private String nu_codigo;
         private String no_municipio;
         public String getNo_municipio() {
              return no_municipio;
         public String getNu_codigo() {
              return nu_codigo;
         public void setNo_municipio(String no_municipio) {
              this.no_municipio = no_municipio;
         public void setNu_codigo(String nu_codigo) {
              this.nu_codigo = nu_codigo;
    *** Struts-config ***
    <form-beans>
    <form-bean name="pesquisarEmpreendimentoPopupForm" type="jm.form.PesquisarEmpreendimentoPopupForm" />
    </form-beans>
    <action-mappings>
    <action name="pesquisarEmpreendimentoPopupForm" type="jm.action.PesquisarEmpreendimentoPopupAction" path="/pesquisarEmpreendimentoPopup" scope="request" validate="false">
    <forward name="pesquisarEmpreendimentoPopupFwd" path="/jsp/tratarproponentes/PesquisarEmpreendimentoPopup.jsp" />
    </action>
    </action-mappings>
    *** validation ***
    <formset>
    <form name="pesquisarEmpreendimentoPopupForm">
    <field property="nu_codigo" depends="required,maxlength">
         <arg0 key="pesquisarEmpreendimentoPopupForm.nu_codigo"/>
         <var>
         <var-name>maxlength</var-name>
    <var-value>3</var-value>
         </var>
         </field>
         <field property="no_municipio" depends="required,maxlength">
         <arg0 key="pesquisarEmpreendimentoPopupForm.no_municipio"/>
         <var>
         <var-name>maxlength</var-name>
              <var-value>40</var-value>
         </var>
         </field>
    </form>
    </formset>
    Thanks,
    Vanisi Leal

    It's not about whether we can read the code and figure it out. It's about the fact that most of us have better things to do then to take your long bit of code and config files, (which you don't have the decency to put in code tags), read it or set things up to run it just to see what the problem is.
    You say there is a problem, so you must have run it and gotten some error or some unexpected other output, yet you can't be bothered to post that as well? You're title is not an error message that points to anything. If you posted the actual problem then you would get better responses.
    You can stuff your sorry's in a sack!

  • Doubt about message in SmsAdminUI.log

    Hi guys,
    I have a doubt about this message error in SmsAdminUI.log occur when I open console SCCM 2012:
    [6, PID:18032][DATE 08:13:35] :System.Runtime.InteropServices.COMException\r\n\r\n   at System.Runtime.InteropServices.Marshal.ThrowExceptionForHRInternal(Int32 errorCode, IntPtr errorInfo)
    [1, PID:9828][DATE 11:53:21] :Property: 'Compatible'\r\nSystem.Management.ManagementException\r\nNot found \r\n   at System.Management.ManagementException.ThrowWithExtendedInfo(ManagementStatus errorCode)
    My console open normally, any help?
    Thanks.

    I would not worry about it as long as the console works as expected.
    Torsten Meringer | http://www.mssccmfaq.de

  • SCCM 2007 Client Push Error - CCM.log

    Guys,
    CLinet push is not working on our SCCM 2007 server. Below is the error message from CCM.log
    ~ ERROR: Failed to connect to the \\\admin$ share using account 'Machine Account' SMS_CLIENT_CONFIG_MANAGER 2/21/2014 5:01:25 PM 1716 (0x06B4)
    I am not sure why admin share is \\\admin$. Please help.

    May be you have not set Access Account in
    Client Push Installation Properties.
    Please Visit the below link for better understanding of Client Push Installation.
    http://technet.microsoft.com/en-us/library/bb632380.aspx 
    -Ashu

  • Error Stack in Expert Routine, Infos about Object Log

    Hi all,
    currently I try to find some information about using the error stack in combination with an expert routine. So far I know that I have to use the Object Log, which is already in place in my code for monitor messages.
    LOOP AT itab_input INTO wa_input.
    IF sy-subrc <> 0.
            CLEAR msg.
            msg-msgid = 'MY_CLASS'.
            msg-msgty = 'E'.
            msg-msgno = '002'.
            msg-msgv1 = v1.
            msg-msgv2 = v2.
            msg-msgv3 = v3.
            APPEND msg TO t_msg.
            " ??? Write wa_input to error stack???
            CONTINUE.
          ENDIF.
    ENDLOOP.
    Does somebody know how I could append wa_input to the error stack? Or does somebody have a good documentation about Object log?
    Thanks a lot!
    Nita

    Good Morning,
    thanks a lot for your input. I tried to implement this function, but I do not know where I could get the Segment Id from.
    Do you know what i_use_crosstab is used for? I think i_with_message should be set to 'X' if I want to write wa_input-record it to the error stack.
    CALL METHOD log->verify_record
              EXPORTING
                i_use_crosstab  = ''
                i_segid         = lv_segid
                i_record        = wa_input-record
                i_with_message  = 'X'
              RECEIVING
                r_skip          = lv_skip
              EXCEPTIONS
                too_many_errors = 1
                not_in_crosstab = 2
                OTHERS          = 3.
    From semantic point of view the coding should do following:
    - To avoid a second loop in my expert routine it should only check the current src record. If this is wrong, which I already determine in my coding, it should write the record in the error stack. If it is correct, it should check whether there are already records with the same semantic key in the error stack and if yes, add it also to it.
    - I assume that I have to delete this record manually from my src. package than.
    Cheers
    Nita

  • 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"

  • Archiver hnug log error

    I am getting this error through Oracle Enterprise Manager for my Production RAc database
    It has been working fine for ages. Its just suddenly started doing this.
    The archiving is hung? Please can someone help explain what I need to do to resolve or if already ersolved. I'll know if its resolved as new archiving will be written in 1 days time otherwise it complain again when it tries to write to the archiving???
    SEVERITY
    critical
    CATEGORY
    Archiver Hung Alert Log Error
    TIME
    11-Sep-2008 23:02:43
    ALERT LOG STACK
    ORA-16038: log 3 sequence# 1351 cannot be archived
    ORA-19504: failed to create file ""
    ORA-00312: online log 3 thread 2: '/u02/logs/gbprod01/redo03a.log'
    ORA-00312: online log 3 thread 2: '/u02/logs/gbprod01/redo03b.log'
    Trace File: /opt/app/oracle/admin/gbprod01/udump/gbprod012_ora_21265.trc
    ALERT TRIGGERED
    11-Sep-2008 23:14:15
    The disk where the archiving would be written has plenty of space and full write access.
    $>df -kh /u03
    /dev/sdd 300G 186G 115G 62% /u03
    $>ls -ltr /u03/arch/gbprod01
    drwxr-xr-x 1 oracle oinstall 131072 Jun 12 2007 gbprod011
    Please can someone help as to what I need to do or whether it has resolved itself.
    FYI
    SQL> archive log list
    Database log mode Archive Mode
    Automatic archival Enabled
    Archive destination /u03/arch/ddprod01/ddprod011
    Oldest online log sequence 1326
    Next log sequence to archive 1327
    Current log sequence 1327
    SQL> select * from v$log;
    GROUP# THREAD# SEQUENCE# BYTES MEMBERS ARC STATUS
    FIRST_CHANGE# FIRST_TIME
    1 1 1327 52428800 2 NO CURRENT
    7883970584 11.09.2008 23:02:38
    2 1 1326 52428800 2 YES INACTIVE
    7883951113 11.09.2008 22:00:40
    3 2 1351 52428800 2 YES INACTIVE
    7883967749 11.09.2008 23:00:35
    GROUP# THREAD# SEQUENCE# BYTES MEMBERS ARC STATUS
    FIRST_CHANGE# FIRST_TIME
    4 2 1352 52428800 2 NO CURRENT
    7883970586 11.09.2008 23:02:38
    I'm also getting this in the trac file however this has been happening since the 7th of Sept and the problem has happened today. So this may be another issue.
    LGWR: Archivelog for thread 1 sequence 1261 will NOT be compressed
    *** 2008-07-31 17:14:16.863
    *** 2008-09-11 23:02:38.163
    LGWR: Archivelog for thread 1 sequence 1327 will NOT be compressed
    Thank you in addvance.
    Talha

    Had enough space in directory though it was complaining about not able to write to the location log. So we tried copying a large file in the same location which worked.
    So then we did a few
    SQL>alter system switch logfile;
    Which forced a log switch and subsequently put the redo in archive logs.
    We have an archive log as of today after the log switches in the archive log location where it was previously complaining.
    Hence problem resolved. Maybe it just complained in OEM temporerily, and it remains there as an error message though resolved. Need to remove error from OEM manually.
    Thank You for all your suggestions anyway.
    Safi

  • Alert log.xml or alert.log errors do not appear in EM

    Little puzzled here. Using 11.1.0.6 to test if alert errors will appear on 11.1.0.1 EM Grid pages. Simple ORA-1653 triggered via sql insert and then waited and waited. Nothing. I can use EM to open log file and to display the errors but no alerts are flagged on any of the pages.
    Is this a another bug?
    Roman

    You can read all about how the 11g alert log is monitored in: Monitoring 11g Database Alert Log Errors in Enterprise Manager [ID 949858.1]
    Yes, it describes some bugs (and workarounds) too.
    Eric

  • MacOSX Server administration : system.log errors to be investigated

    Hi all,
    I have the following lines repeated on my system.log errors. Can anyone tell me how to investigate/get rid of these ?
    Does it mean that my server has been compromised ?
    At night (when nobody is connected) :
    - cp: error processing extended attributes: Operation not permitted
    Regularly during the whole day since a while :
    - lmtpunix[10096]: warning: unable to post message for user: admin, mail is not enabled for this user
    For your information, I do not have any mailboxes on this server, I only need it to be able to send emails from time to time...
    Thank you in advance for your help

    If your Mac and Time Machine run normally, don't care about this logs in the Console.
    I've deleted the com.apple.mail.plist in Macintosh HD/Library/Preferences, as said in Constant stream of sandboxd Mail error...: Apple Support Communities
    and the logs about coresymbolicationd and com.apple.mail.plist have disappeared.
    I've the log about stream/token once by day : perhaps, you can search a plist about a software customising Time Machine (like TimeMachineEditor, …) and delete it.
    Search in the Preferences of your account, then in the Macintosh HD Library.
    (I had hundred of entries about fseventer, and deleting its Preferences plist solved the "issue" : sandboxing seems hating old Preferences plists, and writes the new plists in Containers).

  • Doubt about Bulk Collect with LIMIT

    Hi
    I have a Doubt about Bulk collect , When is done Commit
    I Get a example in PSOUG
    http://psoug.org/reference/array_processing.html
    CREATE TABLE servers2 AS
    SELECT *
    FROM servers
    WHERE 1=2;
    DECLARE
    CURSOR s_cur IS
    SELECT *
    FROM servers;
    TYPE fetch_array IS TABLE OF s_cur%ROWTYPE;
    s_array fetch_array;
    BEGIN
      OPEN s_cur;
      LOOP
        FETCH s_cur BULK COLLECT INTO s_array LIMIT 1000;
        FORALL i IN 1..s_array.COUNT
        INSERT INTO servers2 VALUES s_array(i);
        EXIT WHEN s_cur%NOTFOUND;
      END LOOP;
      CLOSE s_cur;
      COMMIT;
    END;If my table Servers have 3 000 000 records , when is done commit ? when insert all records ?
    could crash redo log ?
    using 9.2.08

    muttleychess wrote:
    If my table Servers have 3 000 000 records , when is done commit ? Commit point has nothing to do with how many rows you process. It is purely business driven. Your code implements some business transaction, right? So if you commit before whole trancaction (from business standpoint) is complete other sessions will already see changes that are (from business standpoint) incomplete. Also, what if rest of trancaction (from business standpoint) fails?
    SY.

  • Get more info about the last errors in Oracle

    Hi all,
    There is a log in a live system where it is possible to see every minute the following error:
    Sweep Incident[48073]: failed, err=[1858]
    I know that error can happen mainly when:
    1. Trying to insert caracter field in a numeric column
    2. Using in the wrong way the function to_date()
    I need more information about that error, what can be causing the error in the system and why. Is it possible to see more information about the last errors in Oracle? For example, if a query produces an error... is it possible to see in Oracle the error and the query that caused the error?
    Hope you can help me.
    Thanks in advance.

    Thanks Niall.
    I'm not sure if I got you...
    What I found is that MMON makes snapshots of the database 'health' and stores this information in the AWR. So, it seems like in the database there could be a numeric column that is storing character fields, and when MMON works, it finds that error... is that right?
    I found the following information:
    SQL> select substr(s.username,1,18) username,
    2 substr(s.program,1,22) program,
    3 decode(s.command,
    4 0,'No Command',
    5 1,'Create Table',
    6 2,'Insert',
    7 3,'Select',
    8 6,'Update',
    9 7,'Delete',
    10 9,'Create Index',
    11 15,'Alter Table',
    12 21,'Create View',
    13 23,'Validate Index',
    14 35,'Alter Database',
    15 39,'Create Tablespace',
    16 41,'Drop Tablespace',
    17 40,'Alter Tablespace',
    18 53,'Drop User',
    19 62,'Analyze Table',
    20 63,'Analyze Index',
    21 s.command||': Other') command
    22 from
    23 v$session s,
    24 v$process p,
    25 v$transaction t,
    26 v$rollstat r,
    27 v$rollname n
    28 where s.paddr = p.addr
    29 and s.taddr = t.addr (+)
    30 and t.xidusn = r.usn (+)
    31 and r.usn = n.usn (+)
    32 order by 1;
    USERNAME PROGRAM COMMAND
    oracle@airvs1b (MMON) No Command
    SQL> select addr, pid, spid, username, serial#, program,traceid, background, latchwait, latchspin from v$process where program='oracle@airvs1b (MMON)';
    ADDR PID SPID USERNAME SERIAL# PROGRAM
    000000044A4E48A8 24 15372 oracle 1 oracle@airvs1b (MMON)
    TRACEID B LATCHWAIT LATCHSPIN
    ---------------- ---------- ------------------------ --------------- 1
    SQL> select
    2 substr(a.spid,1,9) pid,
    3 substr(b.sid,1,5) sid,
    4 substr(b.serial#,1,5) ser#,
    5 substr(b.machine,1,6) box,
    6 substr(b.username,1,10) username,
    7 b.server,
    8 substr(b.osuser,1,8) os_user,
    9 substr(b.program,1,40) program
    10 from v$session b, v$process a
    11 where
    12 b.paddr = a.addr
    13 and a.spid=15372
    14 order by spid;
    PID SID SER# BOX USERNAME SERVER OS_USER PROGRAM
    15372 1082 1 airvs1 DEDICATED oracle oracle@airvs1b (MMON)
    Is there any way I can see what MMON is doing and when is failing?
    Thank you very much.
    Edited by: user11281526 on 19-jun-2009 5:18

  • Doubts about use of REPORTS_SERVERMAP with Forms11g HA

    Hi,
    I'm configuring a Linux 64bits Forms/Reports 11g HA environment, the point is that i have two nodes, each one with its Forms and Reports servers, let's say FormsA and ReportsA for the first node and FormsB and ReportsB for the seconde node.
    i want FormsA to be able to call reports from ReportsB and FormsB to be able to call reports from ReportsA.
    I've been reading about REPORT_SERVERMAP
    http://docs.oracle.com/cd/E12839_01/bi.1111/b32121/pbr_conf003.htm#autoId5
    But i have some doubts about its use:
    1. I will not use a shared cluster file system or any way of cache solution, i will only have my rdf files on each node, and i'm wondering if just by configuring this parameter i will be able to get the effect mentioned above ??
    2. The link provided says "Using RUN_REPORT_OBJECT. If the call specifies a Reports Server cluster name instead of a Reports Server name, the REPORTS_SERVERMAP environment variable must be set in the Oracle Forms Services default.env file"
    In fact i'm using RUN_REPORT_OBJECT but
    what is the Reports Server cluster name ?? and where do i find that name ??
    3. Is this configuration well defined:
    REPORTS_SERVERMAP=clusterReports:ReportsA;clusterReports:ReportsB
    4. At forms applications when using RUN_REPORT_OBJECT, can i assume that the report server name will be the cluster name specified at the REPORTS_SERVERMAP ??
    5. Which files should i modify rwservlet.properties or default.env ??
    Hope you can help me :)
    Regards
    Carlos

    Hi,
    1. I will not use a shared cluster file system or any way of cache solution, i will only have my rdf files on each node, and i'm wondering if just by configuring this parameter i will be able to get the effect mentioned above ??
    --> In such case what could go wrong is
    Suppose Run_report_object executed jobs successfully to ReportsA
    But web.show_document command for getjobid failed ( as ReportsA went down by this time)
    --> You will not get the output shown ( though job was successful)
    If shared cache was enabled, then Even if ReportsA is down, other cluster member ( say ReportsB)
    will respond back to web.show_document.
    Point 2,
    --> Under HA is it highly recommended to use web.show_document ( a servlet call) to execute reports. This is to help use all HA features at the HTTP , Webcache or load balancer level.
    However if there is migrated code or Run_report_object is must, then the recommendations as you see in the pointed document is must.
    REPORTS_SERVERMAP setting needs to be configured in rwservlet.properties file and also in default.env Forms configuration file to map the Reports Server cluster name to the Reports Server running on the mid-tier where the Load Balancer forwarded the report request.
    For example FormsA, ReportsA, cluster name say rep_cluster
    default.env file
    REPORTS_SERVERMAP=rep_cluster:ReportsA
    Where "rep_cluster" is the Reports Server cluster name and "ReportsA" is the name of the Reports Server running on the same machine as FormsA
    rwservlet.properties file
    <reports_servermap>rep_cluster:ReportsA</reports_servermap>
    At default.env this is not a valid entry
    REPORTS_SERVERMAP=clusterReports:ReportsA;clusterReports:ReportsB
    what is the Reports Server cluster name ?? and where do i find that name ??
    --> This is created via EM on the report server side.
    Would recommend to refer following documents at the myoracle support repository
         How to Setup Reports HA (High Availability - Clusters) in Reports 11g [ID 853436.1]
         REP-52251 and REP-56033 Errors When Calling Reports From Forms With RUN_REPORT_OBJECT Against a Reports Cluster in 11g. [ID 1074804.1]
    Thanks

  • Doubt about Patch

    Hi everyone!
    I have a doubt about applying patch.
    I just applied this patch (using GUI):
    Oracle® Database Patch Set Notes
    *10g Release 2 (10.2.0.4) Patch Set 3 for Microsoft Windows (32-Bit)*
    Initially, there was an error stating that some other process is accessing one particular dll.
    I ignored it.
    I rerun the patch installation thinking that I need to get that dll as well.
    It gave a list of what has been installed and what can be installed.
    So, I selected all the remainders and installed.
    It was successful. Now, would it have ignored that dll or installed it?
    Please advice.
    Thanks in advance.
    Cheers!
    Nith
    Edited by: user645399 on Nov 26, 2010 10:24 AM

    user645399 wrote:
    Hi everyone!
    I have a doubt about applying patch.
    I just applied this patch (using GUI):
    Oracle® Database Patch Set Notes
    *10g Release 2 (10.2.0.4) Patch Set 3 for Microsoft Windows (32-Bit)*
    Initially, there was an error stating that some other process is accessing one particular dll.
    I ignored it.
    I rerun the patch installation thinking that I need to get that dll as well.
    It gave a list of what has been installed and what can be installed.
    So, I selected all the remainders and installed.
    It was successful. Now, would it have ignored that dll or installed it?
    Please advice.
    Thanks in advance.
    Cheers!
    Nith
    Edited by: user645399 on Nov 26, 2010 10:24 AMEvenif you've stopped all the windows services, sometimes some DLLs remains utilized. What I do is, make all the oracle related services manual and then restart the server.
    You can't ignore any dll related errors. If a dll is in use, oracle patching process will not replace that with a newer version of dll. I'll strongly recommend the use of ' Microsoft Process Monitor' utility to monitor, what is running on my server.
    http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx
    Regards,
    S.K.

  • Doubt about Tunning View Objects

    Hi !. I have the following doubt about tunning View Objects:
    If I have the following configuration on a VO:
    All Rows
    In Batches Of: 11
    As Needed
    Access Mode: Scrollable
    Range Size: 10
    Total Records On The Table: More than 100
    What would happen is that while the initial render, the view cache is fetch with 11 rows from the table and the ui table shows 10. In subsequent scroll events, more queries again will be done but not when the user scrolls back. My doubt is this one: Why, while the initial render If I put a breakpoint in this overrided method executeQueryForCollection, the execution reachs there but in subsequent scroll events (forward) the execution doesn't reach there ?. I understand thast this should happen as the required rows are not yet in the cache. I would like to know a way to test this access mode and what method is executed in every roundtrip to the DB. Thankx !.

    I don't think ADF needs to execute the query again - it just needs to fetch the next set of records.
    So if the cursor is already open, no need to issue another query.
    You can use the HTTP Analyzer to watch network traffic
    Monitoring ADF Pages Round-Trips with the HTTP Analyzer
    And you can use the logging features of ADF to see the queries being executed.
    Declarative View Objects (VOs) for better ADF performance

Maybe you are looking for

  • Using a VMware Fusion XP environment with multiple Mac users

    Hi, I have installed an XP environment using VMware Fusion. I am only able to start this XP environment when logged in as the user that created it. How can I grant access to this environment to other MAC users on my machine? Any input is much appreci

  • Problem-OC4J Hanging

    Respected All Oracle ADF/OC4J Users, I Have Developed very large ADF (ADF BC Swing) Application i.e. One ERP Product, It Contains 300 Application Modules (Forms). I deployed this Application as EJB Session Bean on standalone OC4J which is on Fedora C

  • Excise tab comes for non excisable vendor also

    Hi, I am facing the issue at the time of GRN that I am getting excise tab for the non-excisable materials also.How can i remove this error message and excise tab for non-excisable vendors. I didn't maintain the Excise details for Non-excisable vendor

  • Help needed on integration of portal with ifs

    The requirement goes like this: I use IFS for Content management. I want to publish the jsps/ htmls lying on IFS on my oracle portal page. I need ways to integrate htmls/ jsps (lying on ifs) with portal page. Any inputs are welcome Thanks 'N' Regards

  • Transfering DV format files from Apple to Adobe Premiere pro for windows XP

    I have been asked to move files from my iMac computer to Adobie Premiere pro. Is there a simple way to do this? Can I import the raw format (DV) directly into Premiere Pro? Help