OraOLEDB error '80004005' (more)

Immersed in an SQL-Server to Oracle conversion project with many SQL-Server stored procedures that return record sets. I am
attempting to establish the proper method of returning record sets to the .ASP code so as to minimize the changes required to
that code. Conversion of SQL-Server stored procedures to Oracle PL/SQL is progressing smootly.
PROBLEM: OraOLEDB error '80004005' when calling Oracle stored procedures that return result sets from .ASP
Anyone have any ideas what I can do to fix this?
TRIED:
     1) Granting Read/Write/Execute on Oracle Home directory on Web Server
     2) Modifying Windows Registry to point to proper Oracle Home .dll's for latest 10g Client
     3) Moving the REF CURSOR parameter in the stored procedure to the end of the parameter list
ENVIROMENT:
Oracle 10.1.0.2 Server
Oracle Provider for OLE DB release 10.1
Microsoft IIS Server 5.0 (Win 2000)
CODE:
<%@LANGUAGE="VBSCRIPT"%>
<%
SysCatConnString =      "Provider=OraOLEDB.Oracle;" & _
                         "Data Source=BPDB;" & _
                         "User ID=utst;" & _
                         "Password=cat;" & _
                         "PLSQLRSet=1;"
Set objConnection = Server.CreateObject("ADODB.Connection")
objConnection.Open SysCatConnString
If objConnection.Errors.Count = 0 Then
Response.Write "<br>NO connection errors"
End If
connState = objConnection.State
Response.Write "<br>connState = " & connState
set cmd = Server.CreateObject("ADODB.Command")
cmd.ActiveConnection = objConnection
cmd.Parameters.Append cmd.CreateParameter("p_Application_ID", adSmallInt, adParamInput, , 2)
cmd.Parameters.Append cmd.CreateParameter("p02_Userid", adBSTR, adParamInput, 4, "test")
cmd.Parameters.Append cmd.CreateParameter("p03_Password", adBSTR, adParamInput, 4, "test")
cmd.Parameters.Append cmd.CreateParameter("spRetVal", adSmallInt, adParamOutput)
cmd.CommandText = "{ CALL dbo.up_sc888UserLogin2(?,?,?,?) }"
cmd.CommandType = adCmdStoredProc
cmd.CommandTimeout = 0
cmd.Prepared = true
set rsUser = server.CreateObject("ADODB.Recordset")
Set rsUser = cmd.Execute
ERROR MESSAGE:
At cmd.Execute I continuously receive:
NO connection errors
connState = 1
OraOLEDB error '80004005'
Unspecified error
/testing.asp, line 39
NOTES:
I can execute other stored procedures successfully, but the problem is that I cannot get past this issue with calling
stored procedures that return record sets (as REF CURSORs).
ORACLE 10g Windows STORED PROCEDURE CODE:
PACKAGE dbo AS
TYPE ref_Return IS REF CURSOR;
     PROCEDURE up_sc888UserLogin2 (o_RetVal OUT ref_Return, p_Application_ID IN NUMBER, p_Userid IN VARCHAR2, p_Password
IN VARCHAR2, p_ErrorCode OUT NUMBER);
END dbo;
CREATE OR REPLACE PACKAGE BODY dbo AS
PROCEDURE up_sc888UserLogin2(
     o_RetVal           OUT ref_Return,
     p_Application_ID IN NUMBER,
     p_Userid           IN VARCHAR2,
     p_Password           IN VARCHAR2,
     p_ErrorCode          OUT NUMBER)
IS
BEGIN
INSERT INTO testing (p_UserID, p_Password) VALUES (p_UserID, p_Password);
INSERT INTO testing (p_UserID, p_Password) VALUES ('x', 'x');
COMMIT;
     OPEN o_RetVal FOR
     SELECT Person_ID, AccessControl
     FROM tPerson, tAccessRights
     WHERE UserID = 'dherrin'
          AND tAccessRights.Value = tPerson.AccessRights;
     p_ErrorCode := 0;
END up_sc888UserLogin2;
END dbo;
/

FIXED
1) use cmd.CommandText = "dbo.up_sc888UserLogin2" rather than the Oracle Provider documentation that states that one must use ODBC calling structures (cmd.CommandText = "{call dbo.up_sc888UserLogin2}")
2) Declare the result set object...
Set rsUser = Server.CreateObject("ADODB.Recordset")
3) so that one can set the following properties:
rsUser.CursorLocation = adUseClient
rsUser.CursorType = adOpenDynamic
These changes fixed my problem, now on to the SYNONYM problem...

Similar Messages

  • OraOLEDB error '80004005'

    We have installed 9i, on a Windows2000 server, and are accessing it through ASP pages on IIS4. We are getting a OraOLEDB error '80004005' frequently but not consistently, and restarting the IIS service resolves the problem temporarily. The OraOLEDB version is the latest download offered on OTN.
    The full text of the message is:
    OraOLEDB error '80004005'
    ORA-00604: error occurred at recursive SQL level 1 ORA-12705: invalid or unknown NLS parameter value specified
    /system/asp/oracle.asp, line 10
    Line 10 is our connect string, here is the bulk of the script:
         Dim cnn, rs, strSql, STR_ORA_CONN
         Set cnn = Server.CreateObject("ADODB.Connection")
         STR_ORA_CONN = "Provider=OraOLEDB.Oracle; Data Source=ora9; User ID=collab; Password=collab;"
         Set rs = Server.CreateObject("ADODB.Recordset")
         cnn.Open STR_ORA_CONN
         rs.Open "tblHeader", cnn, adOpenForwardOnly, adLockReadOnly, adCmdTable
         While NOT rs.EOF
              Response.Write rs("IdCH") & " " & rs("subject") & "<br>"
              rs.MoveNext
         Wend
         rs.Close
         cnn.Close
         Set rs = Nothing     
         Set cnn = nothing
    We turned on tracing according to the included documentation, with the following options:
    TraceCategory = 3
    TraceLevel = 23
    and here is the tail of the trace file:
    TID: 34 (ENTRY) ICommandOracleImpl::Cancel(void)
    TID: 34 (EXIT) ICommandOracleImpl::Cancel(hr=0): 209
    TID: 34 (ENTRY) IAccessorOracleImpl::ReleaseAccessor(44ece0, 0)
    TID: 34 (EXIT) ReleaseAccessor(hr=0): 827
    TID: 34 (ENTRY) IAccessorOracleImpl::ReleaseAccessor(44ec50, 0)
    TID: 34 (EXIT) ReleaseAccessor(hr=0): 827
    TID: 34 (ENTRY) ICommandOracleImpl::Cancel(void)
    TID: 34 (EXIT) ICommandOracleImpl::Cancel(hr=0): 209
    TID: 34 (ENTRY) ICommandOracleImpl::Cancel(void)
    TID: 34 (EXIT) ICommandOracleImpl::Cancel(hr=0): 209
    TID: 34 (ENTRY) ICommandOracleImpl::Cancel(void)
    TID: 34 (EXIT) ICommandOracleImpl::Cancel(hr=0): 209
    TID: 33d (ENTRY) COracleSource::Uninitialize()
    TID: 33d (EXIT) COracleSource::Uninitialize(hr=0): 289
    TID: 34 (ENTRY) COracleSource::SetProperties(1, 0xbd050)
    TID: 34 (EXIT) COracleSource::SetProperties(hr=0): 4349
    TID: 34 (ENTRY) COracleSource::SetProperties(1, 0x130f260)
    TID: 34 (EXIT) COracleSource::SetProperties(hr=0): 4349
    TID: 34 (ENTRY) COracleSource::Initialize()
    TID: 34 (EXIT) COracleSource::Initialize(hr=80004005): 193
    TID: 34 (ENTRY) COracleSource::Uninitialize()
    TID: 34 (EXIT) COracleSource::Uninitialize(hr=0): 289
    TID: 34 (ENTRY) CErrorLookup::GetHelpInfo(80004005, 25c, 409, 1497da4, 1497db0)
    TID: 34 (EXIT) CErrorLookup::GetHelpInfo(hr=0): 237
    TID: 34 (ENTRY) CErrorLookup::GetErrorDescription(80004005, 25c, 14952c4, 409, 1497da0, 1497d9c)
    TID: 34 (EXIT) CErrorLookup::GetErrorDescription(hr=0):
    TID: 34 (ENTRY) CErrorLookup::ReleaseErrors(bdd88)
    TID: 34 (EXIT) CErrorLookup::ReleaseErrors(hr=0): 284
    TID: 34 (ENTRY) COracleSource::SetProperties(1, 0xb1420)
    TID: 34 (EXIT) COracleSource::SetProperties(hr=0): 4349
    TID: 34 (ENTRY) COracleSource::SetProperties(1, 0x130f260)
    TID: 34 (EXIT) COracleSource::SetProperties(hr=0): 4349
    TID: 34 (ENTRY) COracleSource::Initialize()
    TID: 34 (EXIT) COracleSource::Initialize(hr=80004005): 193
    TID: 34 (ENTRY) COracleSource::Uninitialize()
    TID: 34 (EXIT) COracleSource::Uninitialize(hr=0): 289
    TID: 34 (ENTRY) CErrorLookup::GetHelpInfo(80004005, 25c, 409, 1492494, 14924a0)
    TID: 34 (EXIT) CErrorLookup::GetHelpInfo(hr=0): 237
    TID: 34 (ENTRY) CErrorLookup::GetErrorDescription(80004005, 25c, 14952c4, 409, 1492490, 149248c)
    TID: 34 (EXIT) CErrorLookup::GetErrorDescription(hr=0):
    TID: 34 (ENTRY) CErrorLookup::ReleaseErrors(b1198)
    TID: 34 (EXIT) CErrorLookup::ReleaseErrors(hr=0): 284
    TID: 34 (ENTRY) COracleSource::SetProperties(1, 0xbdeb8)
    TID: 34 (EXIT) COracleSource::SetProperties(hr=0): 4349
    TID: 34 (ENTRY) COracleSource::SetProperties(1, 0x130f260)
    TID: 34 (EXIT) COracleSource::SetProperties(hr=0): 4349
    TID: 34 (ENTRY) COracleSource::Initialize()
    TID: 34 (EXIT) COracleSource::Initialize(hr=80004005): 193
    TID: 34 (ENTRY) COracleSource::Uninitialize()
    TID: 34 (EXIT) COracleSource::Uninitialize(hr=0): 289
    TID: 34 (ENTRY) CErrorLookup::GetHelpInfo(80004005, 25c, 409, 1492494, 14924a0)
    TID: 34 (EXIT) CErrorLookup::GetHelpInfo(hr=0): 237
    TID: 34 (ENTRY) CErrorLookup::GetErrorDescription(80004005, 25c, 14952c4, 409, 1492490, 149248c)
    TID: 34 (EXIT) CErrorLookup::GetErrorDescription(hr=0):
    TID: 34 (ENTRY) CErrorLookup::ReleaseErrors(a38e0)
    TID: 34 (EXIT) CErrorLookup::ReleaseErrors(hr=0): 284
    TID: 34 (ENTRY) COracleSource::SetProperties(1, 0xbdeb8)
    TID: 34 (EXIT) COracleSource::SetProperties(hr=0): 4349
    TID: 34 (ENTRY) COracleSource::SetProperties(1, 0x130f260)
    TID: 34 (EXIT) COracleSource::SetProperties(hr=0): 4349
    TID: 34 (ENTRY) COracleSource::Initialize()
    TID: 34 (EXIT) COracleSource::Initialize(hr=80004005): 193
    TID: 34 (ENTRY) COracleSource::Uninitialize()
    TID: 34 (EXIT) COracleSource::Uninitialize(hr=0): 289
    TID: 34 (ENTRY) CErrorLookup::GetHelpInfo(80004005, 25c, 409, 1492494, 14924a0)
    TID: 34 (EXIT) CErrorLookup::GetHelpInfo(hr=0): 237
    TID: 34 (ENTRY) CErrorLookup::GetErrorDescription(80004005, 25c, 14952c4, 409, 1492490, 149248c)
    TID: 34 (EXIT) CErrorLookup::GetErrorDescription(hr=0):
    Any answers, or troubleshooting suggestions will be greatly appreciated!
    craig

    I am receiving the same message exactly and when a trace the problem the Initialize() function returns with a 80004005:
    TID: e34 (ENTRY) COracleSource::Initialize()
    TID: e34 (EXIT) COracleSource::Initialize(hr=80004005): 198
    What am I doing wrong?

  • Receiving OraOLEDB error '80040e14'

    An aquaintance has ASP code that has been in place for several years and has never had a problem with it, so they are wondering whether something has been pushed on the network that is shutting down his access.
    His Oracle queries are made from an asp page. In each asp page that executes a query, a connect file is included.
    The connection file includes the following connection information:
    Dim objConn
    Dim strConnection
    'Create database connection to ACES_LOCAL Oracle server
    Set objConn = Server.CreateObject("ADODB.Connection")
    trConnection = "Provider=OraOLEDB.Oracle;Data Source=gvisionpro;User ID=aces_interface;Password=xxxxxxxxx;PLSQLRSet=1;"
         objConn.Open strConnection
    The error he's getting is:
    'Create SQL statement and retrieve records for selected installation-facility str_sql = "select WONR,FACIDNR,TYPESVC,WOTITLE,PROJNBR,WOSTATUS,TRKIND,REQNAME,PHONE,DATEOPEN " str_sql = str_sql & "from WOBYFAC where FACIDNR= " & RIDV & " order by WONR " Set dbrec = Server.CreateObject("ADODB.RecordSet") dbrec.open str_sql, objConn, 3, 3 if dbrec.bof = true and dbrec.eof = true then 'Dont use the movefirst method on an empty recordset
    OraOLEDB error '80040e14'
    ORA-00936: missing expression
    /geobase/hyperlink/IWMS.asp, line 39
    A. He can connect and execute the query using SQLplus
    B. The database is oracle 9i
    C. His asp code has not changed in several years and was working until last Thursday
    D. He tried a simple query on a different database (this one 10g) using the same type of connection and got the following error:
    OraOLEDB error '80004005'
    ORA-12514: TNS:listener does not currently know of service requested in connect descriptor
    /geobase/Connections/objOracleConn2.asp, line 11
    Any ideas, suggestions etc would be greatly appreciated

    You are using Oracle Provider for OLE DB. There is a separate forum at
    Oracle Provider for OLE DB
    You may need to add the following into your lcConnectionString when returning a recordset from the stored procedure.
    PLSQLRSet=1
    But using ODP.NET does not need this flag.

  • OraOLEDB error '80040e4b' : Accessor is not a parameter accessor

    Hi!
    I'm seeing the following error, inconsistently, in my ASP application:
    OraOLEDB error '80040e4b'
    Accessor is not a parameter accessor
    The database is an Oracle 9i database - the web server has an Oracle 9i
    client installation on it. Not sure as to the MDAC version as my
    company firewall prevents me downloading the Component Checker. Is
    there another way to determine the version?
    If I refresh the page, the error will disappear and the page will load
    correctly. I've notice that, although it occurs on and off, it always
    occurs on the following line of code:
    start_date = rstProb("start_date")
    In context:
    Set cnnDB = Server.CreateObject("ADODB.Connection")
    strConn = "Provider=OraOLEDB.Oracle;User
    ID=USER_SCHEMA;Password=password; Data Source=SOURCE"
    cnnDB.Open(strConn)
    Set rstProb = SQLQuery(cnnDB, "SELECT * FROM PROBLEMS WHERE ID = 10)
    start_date = rstProb("start_date")
    You get the picture.
    The column PROBLEMS.START_DATE is of type DATE
    Any thoughts? I can't understand why this doesn't fail consistently,
    even though the data does not change...
    Thanks in advance for your thoughts.
    Regards,
    mroshaw

    The same error "accessor is not ..." on a 10g R2
    database, The Application is a VB6 application.
    When using the 10g r2 client (the natural choice) the
    problem occours, when a dynamic sql with calculated
    fields are tried to fetch. The problem is, that the
    calculated field has more figures in the scale than
    ADO can handle, and this problem is actually
    documented. The workaround is to get this calculated
    field rounded by ORACLE and then served to ADO.
    The weird thing is, 10g R1 client, used with the same
    r2 database, same computer, same code, produce no
    errors. So using r1 client seems to cure the
    problem.
    These workarounds found, we still look for a solution
    with r2 database and r2 client.The same error "accessor is not ..." on a 10g R2 database, The Application is a VB6 application.
    When using the 10g r2 client (the natural choice) the problem occours, when a dynamic sql with calculated fields are tried to fetch. The problem is, that the calculated field has more figures in the scale than ADO can handle, and this problem is actually documented. The workaround is to get this calculated field rounded by ORACLE and then served to ADO.
    The weird thing is, 10g R1 client, used with the same r2 database, same computer, same code, produce no errors. So using r1 client seems to cure the problem.
    These workarounds found, we still look for a solution with r2 database and r2 client.
    Does anyone know the link to the acutual documentation? Thank you.

  • Unspecified error (80004005) with LONG datatypes

    Hi,
    I am trying to create a recordset (using ADO/ASP) which has two or more LONG fields returned but an Unspecified error (80004005) is returned by the browser.
    Any help/hints on why this happening and whether this can be worked around.
    Thanks.
    null

    insert into temp values ('abc');
    cannot (must not) work, when the column is type long (thats a numeric type!!)
    -> here you get an ora- 00911 errorcode
    that the select doesn't work then should be clear.
    mfg f.humer

  • Microsoft Cursor engine error 80004005 Data provider or other...

    I'm using Oracle 9i and ASP. And it works fine except for a query that returns like more than 6000 records and I get this error:
    Microsoft Cursor engine error 80004005
    Data provider or other service returned an E_FAIL status
    /Includes/ValidaUsr.asp, line 60
    The thing is that on my development server it works just fine, and on the production server it cracks. In line 60 I'm trying to read a record, and when the query returns like 1000 records it works perfect.

    Well, you're in a somewhat bad spot. You should generally use server-side cursors and you're using client-side. Likewise, you're using Microsoft's OLE DB Driver for Oracle (known for issues) instead of Oracle's :(
    For the Microsoft driver, the only thing I can think of is switching to server-side cursors. I know that's not much help, but I can't think of anything else that would cause that kind or odd error.
    As I'm done with lunch now, I gotta get back to work.

  • OraOLEDB error '80020009'

    hi I am trying to query oracle 9.2.0 and put out data using VBscript, but i am getting this error
    (OraOLEDB error '80020009'
    ORA-01403: no data found
    /joborder/Empjoblist.asp, line 0)
    only if i have more then 100 records to output. I am interested if anyone knows the solution. Thanks.

    I'm having the same problem too (10g)
    does anyone know a solution?

  • Error '80004005' while opening recordset, while others work just fine

    Hello,
    I'm working on my first dynamic site: MS Access Database with VBscript. I have a DSN-less connection. Most of the dynamic pages are running fine, both in the local and remote server. Search results display in several pages when there are too many records, without any error (using a Request.QueryString). However, when I want to navigate from the Master page of results to a Details page (only one of the results' records) I get the following error:
    error '80004005'
    /einservices/EIA_details_list.asp, line 22
    In the file in question, Line 22 opens a recordset. I think my SQL is correct as the entire site works well in the local server.
    There is no problem with my DSN-less connection, as proven by the fact that the other dynamic pages are running well both in the local and the remote server.
    Does anyone have a clue about what may be happening? This is really puzzling me.
    Thanks for any help you can provide.

    >when I want to navigate from the Master page of results to a Details
    >page (only one of the results' records) I get the following error:
    Are you sure you are using the same connection string on the detail and master?
    Are you coding this by hand, or Server behavior?
    What does the SQL look like?
    Would really need to see the entire detail page code to be of more help.

  • Error -no more data to read from socket vendor code 17410

    Hi everyone
    I have installed a gateway on my server. My oracle database 11.1.0.7 is running on windows server 2008 and i am trying to connect to sql server 2005.
    After creating the database link when i test the database link i get this error
    no more data to read from socket vendor code 17410
    can you please suggest me how to get rid of this error?????
    thanks a many

    enable gateway tracing by setting HS_FDS_TRCE_LEVEL=255 in your DG4MSQL configuration file. Then open a new SQL*Plus window and execute:
    select user from dual@<dg4msql db link>;
    A trace file is generated in the ORACLE_HOME/dg4msql/trace directory. Post its content.

  • CLR error 80004005

    I installed a software on my sony vaio with OS windows 7. I ran the software but got CLR error:80004005. I have Microsoft .Net Framework 1.1, Microsoft
    .Net Framework 4 Client Profile, Microsoft .Net Framework 4 Extended . Any help will be greatly appreciated. thanks much I checked the temp file using %temp% and at the bottom it has  a file called windows 6.1 KB958488-V6001-X64. when I click on that
    it says error OX80070424. Can any one help please. It would be greatly appreciated. Thanks much 
    I have read all the solutions for this error message, but my problem seems different. can anyone help me please?

    Hi,
     You can check the Answer in this link and see what you can find.  8)
    CLR Error: 80004005 The program will now terminate
    If you say it can`t be done then i`ll try it

  • Compile for Debug Results in "Error: No more data to read from socket"

    I am testing the debugger in SQL Developer, and although I can compile objects normally (using the menu/tool bar options), when I compile a procedure for debug, I get this message:
    Error: No more data to read from socket
    There is no sql error message, just this statement.
    I am using 1.5.1.54.40 on an XP SP2 machine. The database is hosted remotely.
    Any advice is appreciated.
    Thanks, Wolf Moritz

    Weird, I was going to say that these are network or port issues, but then a quick look around popped this up. It may be related. SQL error 17410 No more data to read from socket

  • BDD 2007 -- ZTI -- OSD error "The Operating System Installation Failed Unspecified Error (80004005)

    Hi there
    Wonder if anyone can advise me on a BDD 2007 OS deployment issue? (Apologies if this is in the wrong forum, I couldn't see a forum for BDD 2007.)
    First of all, this BDD 2007 server and the OSD config was not done by me. For info, it is part of a SMS 2003 infrastructure.
    I am trying to get the XP Pro build process working. I am led to believe the config has been completed.
    Unfortunately, after booting the pc from the nic, I get an error. This is the order:
    - the 'Initializing Windows PE' splash appears for perhaps 15 seconds
    - very briefly, the text changes to 'Initializing Network'
    - for a second or two only 'Initializing Windows PE' appears again
    - then this error message appears:
    "SMS Operating System Deployment - The Operating System Installation failed. Please contact your system administrator for assistance. Unspecified Error (80004005)"
    I've spent some time looking into this error (80004005) and from what I can gather it possibly means 'access denied'.
    I'm assuming after Windows PE loads the first Task Sequence begins, and if this possibly is where the issue lies?
    One thing I cannot understand - the first Task Sequence (Initialization) has this command line (as do most, with different .wsf file):
    cscript.exe "%SCRIPTROOT%\ZTIGather.wsf" /localonly
    However, I cannot access %SCRIPTROOT% at all, Windows says it can't find it. I can run other variables such as %USERPROFILE%, %SYSTEMROOT%, etc, but cannot open %SCRIPTROOT%.
    Is it simply the case that I should create a new system variable (that has not been created by whoever built the server)?
    Thanks
    John Henry

    Since no one has answer this post, I recommend opening  a support case with CSS as they can work with you to solve this problem.
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

  • Failed to install Windows 7 SP1 (Error 80004005‎)

    Dear all,
    Would someone please help me on this issue? It almost drived me mad after tried several times to install the SP1. I've googled the error 80004005‎, someone suggested to try a in-place upgrade. But it's hard to do that for my current situation.
    That may be the last resort if no solution else.
    Installation logs (CBS logs/Inf logs/Winsxs logs):
    Current PC OS version:  
    Windows 7 Professional / 64 bit.
    I've tried following approaches, but didn't work
    1). Increase the MaxNumFilters (8 to 14)
    2). run sfc.exe /scannow
    It looks like some *.dll files corrupted.
    The CBS log generated as below:
    Any comments are highly appreciated. Thank you !!

    Hi Wade 
    Thanks for the reply. The error code was always 0x80004005. The upgrade was fell back when configuring service pack with 99% percentage completed after reboot. [Sorry My OS is traditional Chinese version]
    I tried to run command  sfc.exe /scannow again today. Result indicated that some of *.dll files were corrupted. So i attached some of the log here FYI please. For details, please download
    the below link
    CBS log: https://onedrive.live.com/redir?resid=96AFE883980076D8!170&authkey=!AM34RNJU5ZgNCG8&ithint=file%2czip
    logs extracted: 
    =====================================================================
    2014-09-01 15:30:12, Info                  CBS    Starting TrustedInstaller initialization.
    2014-09-01 15:30:12, Info                  CBS    Loaded Servicing Stack v6.1.7601.17592 with Core: C:\Windows\winsxs\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_6.1.7601.17592_none_672ce6c3de2cb17f\cbscore.dll
    2014-09-01 15:30:13, Info                  CSI    00000001@2014/9/1:07:30:13.939 WcpInitialize (wcp.dll version 0.0.0.6) called (stack @0x7fee32cf0ad @0x7fef64e9849 @0x7fef64b34e3 @0xffcde94c @0xffcdd769
    @0xffcddaff)
    2014-09-01 15:30:14, Info                  CSI    00000002@2014/9/1:07:30:14.330 WcpInitialize (wcp.dll version 0.0.0.6) called (stack @0x7fee32cf0ad @0x7fef6536816 @0x7fef6502aac @0x7fef64b35b9 @0xffcde94c
    @0xffcdd769)
    2014-09-01 15:30:14, Info                  CSI    00000003@2014/9/1:07:30:14.387 WcpInitialize (wcp.dll version 0.0.0.6) called (stack @0x7fee32cf0ad @0x7fefcf68738 @0x7fefcf68866 @0xffcde444 @0xffcdd7ae
    @0xffcddaff)
    2014-09-01 15:30:14, Info                  CBS    Ending TrustedInstaller initialization.
    2014-09-01 15:30:14, Info                  CBS    Starting the TrustedInstaller main loop.
    2014-09-01 15:30:14, Info                  CBS    TrustedInstaller service starts successfully.
    2014-09-01 15:30:14, Info                  CBS    SQM: Initializing online with Windows opt-in: False
    2014-09-01 15:30:14, Info                  CBS    SQM: Cleaning up report files older than 10 days.
    2014-09-01 15:30:14, Info                  CBS    SQM: Requesting upload of all unsent reports.
    2014-09-01 15:30:14, Info                  CBS    SQM: Failed to start upload with file pattern: C:\Windows\servicing\sqm\*_std.sqm, flags: 0x2 [HRESULT = 0x80004005 - E_FAIL]
    2014-09-01 15:30:14, Info                  CBS    SQM: Failed to start standard sample upload. [HRESULT = 0x80004005 - E_FAIL]
    2014-09-01 15:30:14, Info                  CBS    SQM: Queued 0 file(s) for upload with pattern: C:\Windows\servicing\sqm\*_all.sqm, flags: 0x6
    2014-09-01 15:30:14, Info                  CBS    SQM: Warning: Failed to upload all unsent reports. [HRESULT = 0x80004005 - E_FAIL]
    2014-09-01 15:30:14, Info                  CBS    No startup processing required, TrustedInstaller service was not set as autostart, or else a reboot is still pending.
    2014-09-01 15:30:14, Info                  CBS    NonStart: Checking to ensure startup processing was not required.
    2014-09-01 15:30:14, Info                  CSI    00000004 IAdvancedInstallerAwareStore_ResolvePendingTransactions (call 1) (flags = 00000004, progress = NULL, phase = 0, pdwDisposition = @0x112fca0
    2014-09-01 15:30:14, Info                  CSI    00000005 Creating NT transaction (seq 1), objectname [6]"(null)"
    2014-09-01 15:30:14, Info                  CSI    00000006 Created NT transaction (seq 1) result 0x00000000, handle @0x1fc
    2014-09-01 15:30:14, Info                  CSI    00000007@2014/9/1:07:30:14.794 CSI perf trace:
    CSIPERF:TXCOMMIT;1865
    2014-09-01 15:30:14, Info                  CBS    NonStart: Success, startup processing not required as expected.
    2014-09-01 15:30:14, Info                  CBS    Startup processing thread terminated normally
    2014-09-01 15:30:14, Info                  CSI    00000008 CSI Store 3067568 (0x00000000002eceb0) initialized
    2014-09-01 15:30:17, Info                  CSI    00000009 [SR] Verifying 100 (0x0000000000000064) components
    2014-09-01 15:30:17, Info                  CSI    0000000a [SR] Beginning Verify and Repair transaction
    2014-09-01 15:30:20, Info                  CSI    0000000b Repair results created:
    POQ 0 starts:
    POQ 4 starts:
    POQ 4 ends.
    2014-09-01 15:30:40, Info                  CSI    0000001c [SR] Verify complete
    2014-09-01 15:30:40, Info                  CSI    0000001d [SR] Verifying 100 (0x0000000000000064) components
    2014-09-01 15:30:40, Info                  CSI    0000001e [SR] Beginning Verify and Repair transaction
    2014-09-01 15:30:42, Info                  CSI    0000001f Hashes for file member \SystemRoot\WinSxS\amd64_desktop_shell-search-srchadmin.resources_31bf3856ad364e35_7.0.7600.16385_zh-hk_de8bfcc3aae2d477\srchadmin.dll.mui
    do not match actual file [l:34{17}]"srchadmin.dll.mui" :
      Found: {l:32 b:zeVrryKrpnmblhTzs9Jg0BiaRIVZXLtdwCGByaXEIbE=} Expected: {l:32 b:odVDrXrd9AGNtnMj7z+8yTKUJokEcW+hpKiWs0f7BrM=}
    2014-09-01 15:30:42, Info                  CSI    00000020 [SR] Cannot repair member file [l:34{17}]"srchadmin.dll.mui" of Desktop_Shell-Search-SrchAdmin.Resources, Version = 7.0.7600.16385, pA = PROCESSOR_ARCHITECTURE_AMD64
    (9), Culture = [l:10{5}]"zh-HK", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, hash mismatch
    2014-09-01 15:30:45, Info                  CSI    00000021 Hashes for file member \SystemRoot\WinSxS\amd64_desktop_shell-search-srchadmin.resources_31bf3856ad364e35_7.0.7600.16385_zh-hk_de8bfcc3aae2d477\srchadmin.dll.mui
    do not match actual file [l:34{17}]"srchadmin.dll.mui" :
      Found: {l:32 b:zeVrryKrpnmblhTzs9Jg0BiaRIVZXLtdwCGByaXEIbE=} Expected: {l:32 b:odVDrXrd9AGNtnMj7z+8yTKUJokEcW+hpKiWs0f7BrM=}
    2014-09-01 15:30:45, Info                  CSI    00000022 [SR] Cannot repair member file [l:34{17}]"srchadmin.dll.mui" of Desktop_Shell-Search-SrchAdmin.Resources, Version = 7.0.7600.16385, pA = PROCESSOR_ARCHITECTURE_AMD64
    (9), Culture = [l:10{5}]"zh-HK", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, hash mismatch
    2014-09-01 15:30:45, Info                  CSI    00000023 [SR] This component was referenced by [l:234{117}]"Microsoft-Windows-SearchEngine-Client-Package~31bf3856ad364e35~amd64~zh-HK~6.1.7600.16385.SearchEngine-Client-Package"
    2014-09-01 15:30:45, Info                  CSI    00000024 Hashes for file member \??\C:\Windows\System32\zh-HK\srchadmin.dll.mui do not match actual file [l:34{17}]"srchadmin.dll.mui" :
      Found: {l:32 b:zeVrryKrpnmblhTzs9Jg0BiaRIVZXLtdwCGByaXEIbE=} Expected: {l:32 b:odVDrXrd9AGNtnMj7z+8yTKUJokEcW+hpKiWs0f7BrM=}
    2014-09-01 15:30:45, Info                  CSI    00000025 Hashes for file member \SystemRoot\WinSxS\amd64_desktop_shell-search-srchadmin.resources_31bf3856ad364e35_7.0.7600.16385_zh-hk_de8bfcc3aae2d477\srchadmin.dll.mui
    do not match actual file [l:34{17}]"srchadmin.dll.mui" :
      Found: {l:32 b:zeVrryKrpnmblhTzs9Jg0BiaRIVZXLtdwCGByaXEIbE=} Expected: {l:32 b:odVDrXrd9AGNtnMj7z+8yTKUJokEcW+hpKiWs0f7BrM=}
    2014-09-01 15:30:45, Info                  CSI    00000026 [SR] Could not reproject corrupted file [ml:520{260},l:58{29}]"\??\C:\Windows\System32\zh-HK"\[l:34{17}]"srchadmin.dll.mui"; source file in store
    is also corrupted
    2014-09-01 15:30:45, Info                  CSI    00000027 Repair results created:
    POQ 5 starts:
    2014-09-01 15:54:39, Info                  CSI    000002f9 [SR] Beginning Verify and Repair transaction
    2014-09-01 15:54:56, Info                  CSI    000002fa Repair results created:
    POQ 121 starts:
         0: Move File: Source = [l:192{96}]"\SystemRoot\WinSxS\Temp\PendingRenames\32eebb04bac5cf0154360000601f8014._0000000000000000.cdf-ms", Destination = [l:104{52}]"\SystemRoot\WinSxS\FileMaps\_0000000000000000.cdf-ms"
        1: Move File: Source = [l:162{81}]"\SystemRoot\WinSxS\Temp\PendingRenames\6263bc04bac5cf0155360000601f8014.$$.cdf-ms", Destination = [l:74{37}]"\SystemRoot\WinSxS\FileMaps\$$.cdf-ms"
        2: Move File: Source = [l:214{107}]"\SystemRoot\WinSxS\Temp\PendingRenames\6245c104bac5cf0156360000601f8014.$$_syswow64_21ffbdd2a2dd92e0.cdf-ms", Destination = [l:126{63}]"\SystemRoot\WinSxS\FileMaps\$$_syswow64_21ffbdd2a2dd92e0.cdf-ms"
        3: Move File: Source = [l:226{113}]"\SystemRoot\WinSxS\Temp\PendingRenames\22decc04bac5cf0157360000601f8014.$$_syswow64_sppui_b8f1e21e4fb16c27.cdf-ms", Destination = [l:138{69}]"\SystemRoot\WinSxS\FileMaps\$$_syswow64_sppui_b8f1e21e4fb16c27.cdf-ms"
        4: Move File: Source = [l:258{129}]"\SystemRoot\WinSxS\Temp\PendingRenames\9277e104bac5cf0158360000601f8014.$$_syswow64_spp_tokens_pkeyconfig_b2fdf59e46c165ae.cdf-ms", Destination = [l:170{85}]"\SystemRoot\WinSxS\FileMaps\$$_syswow64_spp_tokens_pkeyconfig_b2fdf59e46c165ae.cdf-ms"
        5: Move File: Source = [l:236{118}]"\SystemRoot\WinSxS\Temp\PendingRenames\e2680405bac5cf0159360000601f8014.$$_syswow64_slmgr_0404_80406f221f15cc87.cdf-ms", Destination = [l:148{74}]"\SystemRoot\WinSxS\FileMaps\$$_syswow64_slmgr_0404_80406f221f15cc87.cdf-ms"
        6: Move File: Source = [l:252{126}]"\SystemRoot\WinSxS\Temp\PendingRenames\72321e05bac5cf015a360000601f8014.$$_syswow64_advancedinstallers_0c6bb4866bff02f7.cdf-ms", Destination = [l:164{82}]"\SystemRoot\WinSxS\FileMaps\$$_syswow64_advancedinstallers_0c6bb4866bff02f7.cdf-ms"
    POQ 121 ends.
    2014-09-01 15:54:56, Info                  CSI    000002fb [SR] Verify complete
    2014-09-01 15:54:56, Info                  CSI    000002fc [SR] Verifying 100 (0x0000000000000064) components
    2014-09-01 15:54:56, Info                  CSI    000002fd [SR] Beginning Verify and Repair transaction
    2014-09-01 15:55:07, Info                  CSI    000002fe Repair results created:
    POQ 122 starts:
         0: Move File: Source = [l:192{96}]"\SystemRoot\WinSxS\Temp\PendingRenames\6221200bbac5cf01bf360000601f8014._0000000000000000.cdf-ms", Destination = [l:104{52}]"\SystemRoot\WinSxS\FileMaps\_0000000000000000.cdf-ms"
        1: Move File: Source = [l:162{81}]"\SystemRoot\WinSxS\Temp\PendingRenames\826f200bbac5cf01c0360000601f8014.$$.cdf-ms", Destination = [l:74{37}]"\SystemRoot\WinSxS\FileMaps\$$.cdf-ms"
        2: Move File: Source = [l:214{107}]"\SystemRoot\WinSxS\Temp\PendingRenames\8251250bbac5cf01c1360000601f8014.$$_syswow64_21ffbdd2a2dd92e0.cdf-ms", Destination = [l:126{63}]"\SystemRoot\WinSxS\FileMaps\$$_syswow64_21ffbdd2a2dd92e0.cdf-ms"
        3: Move File: Source = [l:250{125}]"\SystemRoot\WinSxS\Temp\PendingRenames\92cb2c0bbac5cf01c2360000601f8014.$$_syswow64_speech_engines_sr_d5815721f6360684.cdf-ms", Destination = [l:162{81}]"\SystemRoot\WinSxS\FileMaps\$$_syswow64_speech_engines_sr_d5815721f6360684.cdf-ms"
        4: Move File: Source = [l:226{113}]"\SystemRoot\WinSxS\Temp\PendingRenames\825a620bbac5cf01c3360000601f8014.$$_syswow64_en-us_9e576ab077991fe8.cdf-ms", Destination = [l:138{69}]"\SystemRoot\WinSxS\FileMaps\$$_syswow64_en-us_9e576ab077991fe8.cdf-ms"
        5: Move File: Source = [l:242{121}]"\SystemRoot\WinSxS\Temp\PendingRenames\a27c930bbac5cf01c4360000601f8014.$$_syswow64_speech_common_b84a7a708e507091.cdf-ms", Destination = [l:154{77}]"\SystemRoot\WinSxS\FileMaps\$$_syswow64_speech_common_b84a7a708e507091.cdf-ms"
        6: Move File: Source = [l:228{114}]"\SystemRoot\WinSxS\Temp\PendingRenames\8210980bbac5cf01c5360000601f8014.program_files_x86__676bbe2c7241b694.cdf-ms", Destination = [l:140{70}]"\SystemRoot\WinSxS\FileMaps\program_files_x86__676bbe2c7241b694.cdf-ms"
        7: Move File: Source = [l:258{129}]"\SystemRoot\WinSxS\Temp\PendingRenames\b285980bbac5cf01c6360000601f8014.program_files_x86_windows_sidebar_478e9d8582f6df0d.cdf-ms", Destination = [l:170{85}]"\SystemRoot\WinSxS\FileMaps\program_files_x86_windows_sidebar_478e9d8582f6df0d.cdf-ms"
    2014-09-01 15:55:07, Info                  CSI     8: Move File: Source = [l:270{135}]"\SystemRoot\WinSxS\Temp\PendingRenames\a2409d0bbac5cf01c7360000601f8014.program_files_x86_windows_sidebar_zh-tw_028988e16e3c59fb.cdf-ms",
    Destination = [l:182{91}]"\SystemRoot\WinSxS\FileMaps\program_files_x86_windows_sidebar_zh-tw_028988e16e3c59fb.cdf-ms"
        9: Move File: Source = [l:264{132}]"\SystemRoot\WinSxS\Temp\PendingRenames\521cc10bbac5cf01c8360000601f8014.$$_syswow64_spp_tokens_channels_ocur_69b663564b19f4ee.cdf-ms", Destination = [l:176{88}]"\SystemRoot\WinSxS\FileMaps\$$_syswow64_spp_tokens_channels_ocur_69b663564b19f4ee.cdf-ms"
    POQ 122 ends.
    2014-09-01 15:55:07, Info                  CSI    000002ff [SR] Verify complete
    2014-09-01 15:55:07, Info                  CSI    00000300 [SR] Verifying 100 (0x0000000000000064) components
    2014-09-01 15:55:07, Info                  CSI    00000301 [SR] Beginning Verify and Repair transaction
    2014-09-01 15:55:23, Info                  CSI    00000302 Ignoring duplicate ownership for directory [l:120{60}]"\??\C:\Program Files (x86)\Common Files\Microsoft Shared\Ink" in component Microsoft-Windows-TabletPC-Platform-COMRuntime,
    Version = 6.1.7600.16988, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral
    2014-09-01 15:55:23, Info                  CSI    00000303 Repair results created:
    POQ 123 starts:
         0: Move File: Source = [l:192{96}]"\SystemRoot\WinSxS\Temp\PendingRenames\b29fb114bac5cf012d370000601f8014._0000000000000000.cdf-ms", Destination = [l:104{52}]"\SystemRoot\WinSxS\FileMaps\_0000000000000000.cdf-ms"
        1: Move File: Source = [l:162{81}]"\SystemRoot\WinSxS\Temp\PendingRenames\e214b214bac5cf012e370000601f8014.$$.cdf-ms", Destination = [l:74{37}]"\SystemRoot\WinSxS\FileMaps\$$.cdf-ms"
        2: Move File: Source = [l:228{114}]"\SystemRoot\WinSxS\Temp\PendingRenames\42b98e15bac5cf012f370000601f8014.program_files_x86__676bbe2c7241b694.cdf-ms", Destination = [l:140{70}]"\SystemRoot\WinSxS\FileMaps\program_files_x86__676bbe2c7241b694.cdf-ms"
        3: Move File: Source = [l:252{126}]"\SystemRoot\WinSxS\Temp\PendingRenames\62078f15bac5cf0130370000601f8014.program_files_x86_common_files_dfa3680ec228c528.cdf-ms", Destination = [l:164{82}]"\SystemRoot\WinSxS\FileMaps\program_files_x86_common_files_dfa3680ec228c528.cdf-ms"
        4: Move File: Source = [l:286{143}]"\SystemRoot\WinSxS\Temp\PendingRenames\82558f15bac5cf0131370000601f8014.program_files_x86_common_files_microsoft_shared_635c287ec97ec0a5.cdf-ms", Destination = [l:198{99}]"\SystemRoot\WinSxS\FileMaps\program_files_x86_common_files_microsoft_shared_635c287ec97ec0a5.cdf-ms"
        5: Move File: Source = [l:294{147}]"\SystemRoot\WinSxS\Temp\PendingRenames\a2a38f15bac5cf0132370000601f8014.program_files_x86_common_files_microsoft_shared_ink_9d0caff456d5ade1.cdf-ms", Destination = [l:206{103}]"\SystemRoot\WinSxS\FileMaps\program_files_x86_common_files_microsoft_shared_ink_9d0caff456d5ade1.cdf-ms"
    POQ 123 ends.
    2014-09-01 15:55:23, Info                  CSI    00000304 [SR] Verify complete
    2014-09-01 15:55:23, Info                  CSI    00000305 [SR] Verifying 100 (0x0000000000000064) components
    2014-09-01 15:55:23, Info                  CSI    00000306 [SR] Beginning Verify and Repair transaction
    2014-09-01 15:55:35, Info                  CSI    00000307 Repair results created:
    POQ 124 starts:
         0: Move File: Source = [l:192{96}]"\SystemRoot\WinSxS\Temp\PendingRenames\c2fb101cbac5cf0197370000601f8014._0000000000000000.cdf-ms", Destination = [l:104{52}]"\SystemRoot\WinSxS\FileMaps\_0000000000000000.cdf-ms"
        1: Move File: Source = [l:162{81}]"\SystemRoot\WinSxS\Temp\PendingRenames\f270111cbac5cf0198370000601f8014.$$.cdf-ms", Destination = [l:74{37}]"\SystemRoot\WinSxS\FileMaps\$$.cdf-ms"
    POQ 124 ends.
    2014-09-01 15:55:35, Info                  CSI    00000308 [SR] Verify complete
    2014-09-01 15:55:35, Info                  CSI    00000309 [SR] Verifying 100 (0x0000000000000064) components
    2014-09-01 15:55:35, Info                  CSI    0000030a [SR] Beginning Verify and Repair transaction
    2014-09-01 15:55:50, Info                  CSI    0000030b Repair results created:
    POQ 125 starts:
         0: Move File: Source = [l:192{96}]"\SystemRoot\WinSxS\Temp\PendingRenames\02d96225bac5cf01fd370000601f8014._0000000000000000.cdf-ms", Destination = [l:104{52}]"\SystemRoot\WinSxS\FileMaps\_0000000000000000.cdf-ms"
        1: Move File: Source = [l:228{114}]"\SystemRoot\WinSxS\Temp\PendingRenames\22276325bac5cf01fe370000601f8014.program_files_x86__676bbe2c7241b694.cdf-ms", Destination = [l:140{70}]"\SystemRoot\WinSxS\FileMaps\program_files_x86__676bbe2c7241b694.cdf-ms"
        2: Move File: Source = [l:310{155}]"\SystemRoot\WinSxS\Temp\PendingRenames\c2006c25bac5cf01ff370000601f8014.program_files_x86_windows_virtual_pc_integration_components_c1d03c1c1a8778c7.cdf-ms", Destination = [l:222{111}]"\SystemRoot\WinSxS\FileMaps\program_files_x86_windows_virtual_pc_integration_components_c1d03c1c1a8778c7.cdf-ms"
        3: Move File: Source = [l:162{81}]"\SystemRoot\WinSxS\Temp\PendingRenames\72119c25bac5cf0100380000601f8014.$$.cdf-ms", Destination = [l:74{37}]"\SystemRoot\WinSxS\FileMaps\$$.cdf-ms"
        4: Move File: Source = [l:214{107}]"\SystemRoot\WinSxS\Temp\PendingRenames\821aa125bac5cf0101380000601f8014.$$_syswow64_21ffbdd2a2dd92e0.cdf-ms", Destination = [l:126{63}]"\SystemRoot\WinSxS\FileMaps\$$_syswow64_21ffbdd2a2dd92e0.cdf-ms"
        5: Move File: Source = [l:222{111}]"\SystemRoot\WinSxS\Temp\PendingRenames\12eba425bac5cf0102380000601f8014.$$_syswow64_wcn_1bf25cffa7664032.cdf-ms", Destination = [l:134{67}]"\SystemRoot\WinSxS\FileMaps\$$_syswow64_wcn_1bf25cffa7664032.cdf-ms"
        6: Move File: Source = [l:234{117}]"\SystemRoot\WinSxS\Temp\PendingRenames\321baa25bac5cf0103380000601f8014.$$_syswow64_wcn_zh-hk_4765dbd6386d5d4a.cdf-ms", Destination = [l:146{73}]"\SystemRoot\WinSxS\FileMaps\$$_syswow64_wcn_zh-hk_4765dbd6386d5d4a.cdf-ms"
    POQ 125 ends.
    2014-09-01 15:55:50, Info                  CSI    0000030c [SR] Verify complete
    2014-09-01 15:55:51, Info                  CSI    0000030d [SR] Verifying 100 (0x0000000000000064) components
    2014-09-01 15:55:51, Info                  CSI    0000030e [SR] Beginning Verify and Repair transaction
    2014-09-01 15:56:04, Info                  CSI    0000030f Repair results created:
    POQ 126 starts:
         0: Move File: Source = [l:192{96}]"\SystemRoot\WinSxS\Temp\PendingRenames\029b6c2cbac5cf0168380000601f8014._0000000000000000.cdf-ms", Destination = [l:104{52}]"\SystemRoot\WinSxS\FileMaps\_0000000000000000.cdf-ms"
        1: Move File: Source = [l:162{81}]"\SystemRoot\WinSxS\Temp\PendingRenames\32106d2cbac5cf0169380000601f8014.$$.cdf-ms", Destination = [l:74{37}]"\SystemRoot\WinSxS\FileMaps\$$.cdf-ms"
        2: Move File: Source = [l:214{107}]"\SystemRoot\WinSxS\Temp\PendingRenames\22cb712cbac5cf016a380000601f8014.$$_syswow64_21ffbdd2a2dd92e0.cdf-ms", Destination = [l:126{63}]"\SystemRoot\WinSxS\FileMaps\$$_syswow64_21ffbdd2a2dd92e0.cdf-ms"
        3: Move File: Source = [l:236{118}]"\SystemRoot\WinSxS\Temp\PendingRenames\32d4762cbac5cf016b380000601f8014.$$_syswow64_winrm_0404_69365f9c19c6fd31.cdf-ms", Destination = [l:148{74}]"\SystemRoot\WinSxS\FileMaps\$$_syswow64_winrm_0404_69365f9c19c6fd31.cdf-ms"
        4: Move File: Source = [l:228{114}]"\SystemRoot\WinSxS\Temp\PendingRenames\c20e932cbac5cf016c380000601f8014.program_files_x86__676bbe2c7241b694.cdf-ms", Destination = [l:140{70}]"\SystemRoot\WinSxS\FileMaps\program_files_x86__676bbe2c7241b694.cdf-ms"
        5: Move File: Source = [l:252{126}]"\SystemRoot\WinSxS\Temp\PendingRenames\f283932cbac5cf016d380000601f8014.program_files_x86_windows_mail_fc7b184dbf576a4a.cdf-ms", Destination = [l:164{82}]"\SystemRoot\WinSxS\FileMaps\program_files_x86_windows_mail_fc7b184dbf576a4a.cdf-ms"
        6: Move File: Source = [l:318{159}]"\SystemRoot\WinSxS\Temp\PendingRenames\e239012dbac5cf016e380000601f8014.program_files_x86_reference_assemblies_microsoft_framework_v3.0_1dfad1527dc1078c.cdf-ms", Destination = [l:230{115}]"\SystemRoot\WinSxS\FileMaps\program_files_x86_reference_assemblies_microsoft_framework_v3.0_1dfad1527dc1078c.cdf-ms"
        7: Move File: Source = [l:332{166}]"\SystemRoot\WinSxS\Temp\PendingRenames\f2e8142dbac5cf016f380000601f8014.program_files_x86_reference_assemblies_microsoft_framework_v3.0_zh-cht_f12985fe28b52094.
    2014-09-01 15:56:04, Info                  CSI    cdf-ms", Destination = [l:244{122}]"\SystemRoot\WinSxS\FileMaps\program_files_x86_reference_assemblies_microsoft_framework_v3.0_zh-cht_f12985fe28b52094.cdf-ms"
        8: Move File: Source = [l:224{112}]"\SystemRoot\WinSxS\Temp\PendingRenames\8248162dbac5cf0170380000601f8014.$$_microsoft.net_3296b36dbe4c7fa3.cdf-ms", Destination = [l:136{68}]"\SystemRoot\WinSxS\FileMaps\$$_microsoft.net_3296b36dbe4c7fa3.cdf-ms"
        9: Move File: Source = [l:244{122}]"\SystemRoot\WinSxS\Temp\PendingRenames\c255192dbac5cf0171380000601f8014.$$_microsoft.net_framework_83386eac0379231b.cdf-ms", Destination = [l:156{78}]"\SystemRoot\WinSxS\FileMaps\$$_microsoft.net_framework_83386eac0379231b.cdf-ms"
        10: Move File: Source = [l:320{160}]"\SystemRoot\WinSxS\Temp\PendingRenames\32491f2dbac5cf0172380000601f8014.$$_microsoft.net_framework_v3.0_windows_communication_foundation_e07323de19ff1b52.cdf-ms", Destination = [l:232{116}]"\SystemRoot\WinSxS\FileMaps\$$_microsoft.net_framework_v3.0_windows_communication_foundation_e07323de19ff1b52.cdf-ms"
        11: Move File: Source = [l:334{167}]"\SystemRoot\WinSxS\Temp\PendingRenames\d2b1252dbac5cf0173380000601f8014.$$_microsoft.net_framework_v3.0_windows_communication_foundation_zh-cht_1b3a923bd6282868.cdf-ms", Destination = [l:246{123}]"\SystemRoot\WinSxS\FileMaps\$$_microsoft.net_framework_v3.0_windows_communication_foundation_zh-cht_1b3a923bd6282868.cdf-ms"
        12: Move File: Source = [l:332{166}]"\SystemRoot\WinSxS\Temp\PendingRenames\42a52b2dbac5cf0174380000601f8014.$$_microsoft.net_framework_v3.0_windows_communication_foundation_zh-tw_fc3cba02619ed180.cdf-ms", Destination = [l:244{122}]"\SystemRoot\WinSxS\FileMaps\$$_microsoft.net_framework_v3.0_windows_communication_foundation_zh-tw_fc3cba02619ed180.cdf-ms"
        13: Move File: Source = [l:204{102}]"\SystemRoot\WinSxS\Temp\PendingRenames\b2b62c2dbac5cf0175380000601f8014.$$_inf_3f581daba4c8c835.cdf-ms", Destination = [l:116{58}]"\SystemRoot\WinSxS\FileMaps\$$_inf_3f581daba4c8c835.cdf-ms"
        14: Move File: Source = [l:250{125}]"\SystemRoot\W
    2014-09-01 15:56:04, Info                  CSI    inSxS\Temp\PendingRenames\1212302dbac5cf0176380000601f8014.$$_inf_smsvchost_3.0.0.0_0404_2d6d98135cb60bf8.cdf-ms", Destination = [l:162{81}]"\SystemRoot\WinSxS\FileMaps\$$_inf_smsvchost_3.0.0.0_0404_2d6d98135cb60bf8.cdf-ms"
        15: Move File: Source = [l:274{137}]"\SystemRoot\WinSxS\Temp\PendingRenames\3242352dbac5cf0177380000601f8014.$$_inf_servicemodeloperation_3.0.0.0_0404_9b92c33ad51f654b.cdf-ms", Destination = [l:186{93}]"\SystemRoot\WinSxS\FileMaps\$$_inf_servicemodeloperation_3.0.0.0_0404_9b92c33ad51f654b.cdf-ms"
        16: Move File: Source = [l:270{135}]"\SystemRoot\WinSxS\Temp\PendingRenames\922c362dbac5cf0178380000601f8014.$$_inf_servicemodelservice_3.0.0.0_0404_2fd4df9498bb9be1.cdf-ms", Destination = [l:182{91}]"\SystemRoot\WinSxS\FileMaps\$$_inf_servicemodelservice_3.0.0.0_0404_2fd4df9498bb9be1.cdf-ms"
        17: Move File: Source = [l:256{128}]"\SystemRoot\WinSxS\Temp\PendingRenames\52723a2dbac5cf0179380000601f8014.$$_inf_msdtc_bridge_3.0.0.0_0404_5d6037fd7f35c3a6.cdf-ms", Destination = [l:168{84}]"\SystemRoot\WinSxS\FileMaps\$$_inf_msdtc_bridge_3.0.0.0_0404_5d6037fd7f35c3a6.cdf-ms"
        18: Move File: Source = [l:272{136}]"\SystemRoot\WinSxS\Temp\PendingRenames\92f03f2dbac5cf017a380000601f8014.$$_inf_servicemodelendpoint_3.0.0.0_0404_1441b5536e0ddf4f.cdf-ms", Destination = [l:184{92}]"\SystemRoot\WinSxS\FileMaps\$$_inf_servicemodelendpoint_3.0.0.0_0404_1441b5536e0ddf4f.cdf-ms"
        19: Move File: Source = [l:252{126}]"\SystemRoot\WinSxS\Temp\PendingRenames\f2727b2dbac5cf017b380000601f8014.program_files_x86_common_files_dfa3680ec228c528.cdf-ms", Destination = [l:164{82}]"\SystemRoot\WinSxS\FileMaps\program_files_x86_common_files_dfa3680ec228c528.cdf-ms"
        20: Move File: Source = [l:266{133}]"\SystemRoot\WinSxS\Temp\PendingRenames\12c17b2dbac5cf017c380000601f8014.program_files_x86_common_files_system_681b9383b994c86d.cdf-ms", Destination = [l:178{89}]"\SystemRoot\WinSxS\FileMaps\program_files_x86_common_files_system_681b9383b994c86d.cdf-ms"
        21: Move File: Source = [l:278{139}]"\SystemRoot\WinSxS
    2014-09-01 15:56:04, Info                  CSI    \Temp\PendingRenames\82437f2dbac5cf017d380000601f8014.program_files_x86_common_files_system_zh-tw_793340c1a4e1a243.cdf-ms", Destination = [l:190{95}]"\SystemRoot\WinSxS\FileMaps\program_files_x86_common_files_system_zh-tw_793340c1a4e1a243.cdf-ms"
        22: Move File: Source = [l:214{107}]"\SystemRoot\WinSxS\Temp\PendingRenames\8291ef2dbac5cf017e380000601f8014.$$_twain_32_209f76caa35c9a77.cdf-ms", Destination = [l:126{63}]"\SystemRoot\WinSxS\FileMaps\$$_twain_32_209f76caa35c9a77.cdf-ms"
    POQ 126 ends.
    2014-09-01 15:56:04, Info                  CSI    00000310 [SR] Verify complete
    2014-09-01 15:56:04, Info                  CSI    00000311 [SR] Verifying 100 (0x0000000000000064) components
    2014-09-01 15:56:04, Info                  CSI    00000312 [SR] Beginning Verify and Repair transaction
    2014-09-01 15:56:21, Info                  CSI    00000313 Repair results created:
    POQ 127 starts:
         0: Move File: Source = [l:192{96}]"\SystemRoot\WinSxS\Temp\PendingRenames\32e46136bac5cf01e3380000601f8014._0000000000000000.cdf-ms", Destination = [l:104{52}]"\SystemRoot\WinSxS\FileMaps\_0000000000000000.cdf-ms"
        1: Move File: Source = [l:162{81}]"\SystemRoot\WinSxS\Temp\PendingRenames\52326236bac5cf01e4380000601f8014.$$.cdf-ms", Destination = [l:74{37}]"\SystemRoot\WinSxS\FileMaps\$$.cdf-ms"
        2: Move File: Source = [l:204{102}]"\SystemRoot\WinSxS\Temp\PendingRenames\82a76236bac5cf01e5380000601f8014.$$_inf_3f581daba4c8c835.cdf-ms", Destination = [l:116{58}]"\SystemRoot\WinSxS\FileMaps\$$_inf_3f581daba4c8c835.cdf-ms"
        3: Move File: Source = [l:286{143}]"\SystemRoot\WinSxS\Temp\PendingRenames\32c66636bac5cf01e6380000601f8014.$$_inf_windows_workflow_foundation_3.0.0.0_0404_c87be953a75f6cf3.cdf-ms", Destination = [l:198{99}]"\SystemRoot\WinSxS\FileMaps\$$_inf_windows_workflow_foundation_3.0.0.0_0404_c87be953a75f6cf3.cdf-ms"
        4: Move File: Source = [l:286{143}]"\SystemRoot\WinSxS\Temp\PendingRenames\22637036bac5cf01e7380000601f8014.$$_inf_windows_workflow_foundation_3.0.0.0_0000_c87be1b3a75f787b.cdf-ms", Destination = [l:198{99}]"\SystemRoot\WinSxS\FileMaps\$$_inf_windows_workflow_foundation_3.0.0.0_0000_c87be1b3a75f787b.cdf-ms"
        5: Move File: Source = [l:228{114}]"\SystemRoot\WinSxS\Temp\PendingRenames\52d87036bac5cf01e8380000601f8014.program_files_x86__676bbe2c7241b694.cdf-ms", Destination = [l:140{70}]"\SystemRoot\WinSxS\FileMaps\program_files_x86__676bbe2c7241b694.cdf-ms"
        6: Move File: Source = [l:318{159}]"\SystemRoot\WinSxS\Temp\PendingRenames\c2cb7636bac5cf01e9380000601f8014.program_files_x86_reference_assemblies_microsoft_framework_v3.0_1dfad1527dc1078c.cdf-ms", Destination = [l:230{115}]"\SystemRoot\WinSxS\FileMaps\program_files_x86_reference_assemblies_microsoft_framework_v3.0_1dfad1527dc1078c.cdf-ms"
        7: Move File: Source = [l:252{126}]"\SystemRoot\WinSxS\Temp\PendingRenames\62b5a636bac5cf01ea380000601f8014.program_files_
    2014-09-01 15:56:21, Info                  CSI    x86_common_files_dfa3680ec228c528.cdf-ms", Destination = [l:164{82}]"\SystemRoot\WinSxS\FileMaps\program_files_x86_common_files_dfa3680ec228c528.cdf-ms"
        8: Move File: Source = [l:286{143}]"\SystemRoot\WinSxS\Temp\PendingRenames\8203a736bac5cf01eb380000601f8014.program_files_x86_common_files_microsoft_shared_635c287ec97ec0a5.cdf-ms", Destination = [l:198{99}]"\SystemRoot\WinSxS\FileMaps\program_files_x86_common_files_microsoft_shared_635c287ec97ec0a5.cdf-ms"
        9: Move File: Source = [l:294{147}]"\SystemRoot\WinSxS\Temp\PendingRenames\a251a736bac5cf01ec380000601f8014.program_files_x86_common_files_microsoft_shared_ink_9d0caff456d5ade1.cdf-ms", Destination = [l:206{103}]"\SystemRoot\WinSxS\FileMaps\program_files_x86_common_files_microsoft_shared_ink_9d0caff456d5ade1.cdf-ms"
        10: Move File: Source = [l:302{151}]"\SystemRoot\WinSxS\Temp\PendingRenames\22fbaa36bac5cf01ed380000601f8014.program_files_x86_common_files_microsoft_shared_ink_1.0_5645a6a00c765d40.cdf-ms", Destination = [l:214{107}]"\SystemRoot\WinSxS\FileMaps\program_files_x86_common_files_microsoft_shared_ink_1.0_5645a6a00c765d40.cdf-ms"
        11: Move File: Source = [l:214{107}]"\SystemRoot\WinSxS\Temp\PendingRenames\f2f5bb37bac5cf01ee380000601f8014.$$_syswow64_21ffbdd2a2dd92e0.cdf-ms", Destination = [l:126{63}]"\SystemRoot\WinSxS\FileMaps\$$_syswow64_21ffbdd2a2dd92e0.cdf-ms"
        12: Move File: Source = [l:282{141}]"\SystemRoot\WinSxS\Temp\PendingRenames\729fbf37bac5cf01ef380000601f8014.$$_syswow64_logfiles_windows_portable_devices_ed9529c6a0cda444.cdf-ms", Destination = [l:194{97}]"\SystemRoot\WinSxS\FileMaps\$$_syswow64_logfiles_windows_portable_devices_ed9529c6a0cda444.cdf-ms"
        13: Move File: Source = [l:224{112}]"\SystemRoot\WinSxS\Temp\PendingRenames\227be337bac5cf01f0380000601f8014.$$_microsoft.net_3296b36dbe4c7fa3.cdf-ms", Destination = [l:136{68}]"\SystemRoot\WinSxS\FileMaps\$$_microsoft.net_3296b36dbe4c7fa3.cdf-ms"
        14: Move File: Source = [l:244{122}]"\SystemRoot\WinSxS\Temp\PendingRenames\42c9e337bac5cf01f1380000601f8014.$$_mi
    2014-09-01 15:56:21, Info                  CSI    crosoft.net_framework_83386eac0379231b.cdf-ms", Destination = [l:156{78}]"\SystemRoot\WinSxS\FileMaps\$$_microsoft.net_framework_83386eac0379231b.cdf-ms"
        15: Move File: Source = [l:262{131}]"\SystemRoot\WinSxS\Temp\PendingRenames\92fde637bac5cf01f2380000601f8014.$$_microsoft.net_framework_v3.0_wpf_b56a2354fbfa0c31.cdf-ms", Destination = [l:174{87}]"\SystemRoot\WinSxS\FileMaps\$$_microsoft.net_framework_v3.0_wpf_b56a2354fbfa0c31.cdf-ms"
        16: Move File: Source = [l:274{137}]"\SystemRoot\WinSxS\Temp\PendingRenames\5243eb37bac5cf01f3380000601f8014.$$_microsoft.net_framework_v3.0_wpf_zh-tw_49f1037553ee19b7.cdf-ms", Destination = [l:186{93}]"\SystemRoot\WinSxS\FileMaps\$$_microsoft.net_framework_v3.0_wpf_zh-tw_49f1037553ee19b7.cdf-ms"
        17: Move File: Source = [l:276{138}]"\SystemRoot\WinSxS\Temp\PendingRenames\92c1f037bac5cf01f4380000601f8014.$$_microsoft.net_framework_v3.0_wpf_zh-cht_a48160d888293201.cdf-ms", Destination = [l:188{94}]"\SystemRoot\WinSxS\FileMaps\$$_microsoft.net_framework_v3.0_wpf_zh-cht_a48160d888293201.cdf-ms"
        18: Move File: Source = [l:246{123}]"\SystemRoot\WinSxS\Temp\PendingRenames\0297fb37bac5cf01f5380000601f8014.$$_syswow64_xpsviewer_zh-tw_aeff686b80a8ef65.cdf-ms", Destination = [l:158{79}]"\SystemRoot\WinSxS\FileMaps\$$_syswow64_xpsviewer_zh-tw_aeff686b80a8ef65.cdf-ms"
        19: Move File: Source = [l:332{166}]"\SystemRoot\WinSxS\Temp\PendingRenames\6281fc37bac5cf01f6380000601f8014.program_files_x86_reference_assemblies_microsoft_framework_v3.0_zh-cht_f12985fe28b52094.cdf-ms", Destination = [l:244{122}]"\SystemRoot\WinSxS\FileMaps\program_files_x86_reference_assemblies_microsoft_framework_v3.0_zh-cht_f12985fe28b52094.cdf-ms"

  • Sequence error: No more data to read from socket

    We are getting the following error when inserting data into the center table. What does this error mean? We noticed if we take sequencing off the second table we do not get the error. ARe triggers for sequence are as follows.
    begin
    select db.insequence.nextval into :new.id from dual;
    end;
    begin
    select db.centerseq.nextval into :new.id from dual;
    end;
    Thanks in advance.

    Narsimha (guest) wrote:
    : I am getting the following error:
    : "No more data to read from Socket"
    : I am using Oracle 8.0.3 + Jdk 1.1.5 + JDBC Driver 7.3.3.1.3
    : Follwing is my simple program. I got struck here.
    : <<< Please provide me the solution. >>>
    : import java.sql.*;
    : class JDBCTest{
    : public static void main (String args []) throws SQLException,
    : ClassNotFoundException{
    : Class.forName ("oracle.jdbc.driver.OracleDriver");
    : Connection conn =DriverManager.getConnection
    : ("jdbc:oracle:thin:@myHost:1521:orcl","scott", "tiger");
    : Statement stmt = conn.createStatement ();
    : ResultSet rset = stmt.executeQuery ("select * from
    FDMainList");
    : while (rset.next ())
    : System.out.println (rset.getString (1));
    I have the same problem with thin jdbc driver against 8.0.3
    server.
    Try to use oci8 driver - You have to install sql*net8 client
    first. It works for me.
    Looking at:
    http://technet.oracle.com/tech/java/access/info/jdbc_faq.htm#_1_
    I think no thin driver supports 8.0.3 unfortunately.
    null

  • TS Failing - OSDSetupWindows - answerFilePath empty? Error 80004005

    Hi there,
    Stumped on this for a couple of days now so here it goes : new here and somewhat "new" to SCCM (only about 4 months of experience with task sequencing + about a year with the operational side & admin)
    That being said : I'm currently trying to get an already existing TS (new client) working. But it fails during the "Setup Windows and Configuration Manager" step. As far as I understood it (reading through tons of articles), the OSDSetupWindows.exe
    will be launched (it does according to the log) and the PC should reboot (continuing with the unattend.xml) which has been created during the previous TS steps?
    I will copy/paste the log after this (firm name/server has been modified for security purposes) but I see this :
    this->answerFilePath.empty() == false, HRESULT=80004005
    This is also the errorcode that appears as the resulting code when the sequence fails. Is this the initial cause? If so : where is this answerFilePath set? It should be a read-only variable if I'm again not mistaken?
    thanks a lot for any and all help!
    /dimi
    <![LOG[Expand a string: OSDSetupWindows.exe]LOG]!><time="10:17:01.812-120" date="04-23-2015" component="TSManager" context="" type="0" thread="1068" file="executionenv.cxx:782">
    <![LOG[Expand a string: ]LOG]!><time="10:17:01.812-120" date="04-23-2015" component="TSManager" context="" type="0" thread="1068" file="executionenv.cxx:782">
    <![LOG[Command line for extension .exe is "%1" %*]LOG]!><time="10:17:01.812-120" date="04-23-2015" component="TSManager" context="" type="0" thread="1068" file="commandline.cpp:228">
    <![LOG[Set command line: OSDSetupWindows.exe]LOG]!><time="10:17:01.812-120" date="04-23-2015" component="TSManager" context="" type="0" thread="1068" file="commandline.cpp:731">
    <![LOG[Start executing the command line: OSDSetupWindows.exe]LOG]!><time="10:17:01.812-120" date="04-23-2015" component="TSManager" context="" type="1" thread="1068" file="instruction.cxx:722">
    <![LOG[!--------------------------------------------------------------------------------------------!]LOG]!><time="10:17:01.812-120" date="04-23-2015" component="TSManager" context="" type="1" thread="1068"
    file="instruction.cxx:751">
    <![LOG[Expand a string: WinPEandFullOS]LOG]!><time="10:17:01.828-120" date="04-23-2015" component="TSManager" context="" type="0" thread="1068" file="executionenv.cxx:782">
    <![LOG[Executing command line: OSDSetupWindows.exe]LOG]!><time="10:17:01.828-120" date="04-23-2015" component="TSManager" context="" type="1" thread="1068" file="commandline.cpp:827">
    <![LOG[==============================[ OSDSetupWindows.exe ]===========================]LOG]!><time="10:17:01.859-120" date="04-23-2015" component="OSDSetupWindows" context="" type="1" thread="1660"
    file="setupwindows.cpp:1627">
    <![LOG[Command line: "OSDSetupWindows.exe"]LOG]!><time="10:17:01.859-120" date="04-23-2015" component="OSDSetupWindows" context="" type="1" thread="1660" file="setupwindows.cpp:1628">
    <![LOG[this->answerFilePath.empty() == false, HRESULT=80004005 (e:\nts_sccm_release\sms\client\osdeployment\setupwindows\setupwindows.cpp,351)]LOG]!><time="10:17:01.859-120" date="04-23-2015" component="OSDSetupWindows"
    context="" type="0" thread="1660" file="setupwindows.cpp:351">
    <![LOG[setup.run(), HRESULT=80004005 (e:\nts_sccm_release\sms\client\osdeployment\setupwindows\setupwindows.cpp,1650)]LOG]!><time="10:17:01.859-120" date="04-23-2015" component="OSDSetupWindows" context="" type="0"
    thread="1660" file="setupwindows.cpp:1650">
    <![LOG[Exiting with code 0x80004005]LOG]!><time="10:17:01.859-120" date="04-23-2015" component="OSDSetupWindows" context="" type="1" thread="1660" file="setupwindows.cpp:1696">
    <![LOG[Process completed with exit code 2147500037]LOG]!><time="10:17:01.859-120" date="04-23-2015" component="TSManager" context="" type="1" thread="1068" file="commandline.cpp:1123">
    <![LOG[!--------------------------------------------------------------------------------------------!]LOG]!><time="10:17:01.859-120" date="04-23-2015" component="TSManager" context="" type="1" thread="1068"
    file="instruction.cxx:804">
    <![LOG[Failed to run the action: Setup Windows and Configuration Manager.
    Unspecified error (Error: 80004005; Source: Windows)]LOG]!><time="10:17:01.875-120" date="04-23-2015" component="TSManager" context="" type="3" thread="1068" file="instruction.cxx:895">
    <![LOG[MP server (REMOVED). Ports 80,443. CRL=false.]LOG]!><time="10:17:01.875-120" date="04-23-2015" component="TSManager" context="" type="1" thread="1068" file="utils.cpp:5881">
    <![LOG[Setting authenticator]LOG]!><time="10:17:01.906-120" date="04-23-2015" component="TSManager" context="" type="1" thread="1068" file="utils.cpp:5903">
    <![LOG[Set authenticator in transport]LOG]!><time="10:17:01.906-120" date="04-23-2015" component="TSManager" context="" type="0" thread="1068" file="libsmsmessaging.cpp:7734">
    <![LOG[Sending StatusMessage]LOG]!><time="10:17:01.922-120" date="04-23-2015" component="TSManager" context="" type="1" thread="1068" file="libsmsmessaging.cpp:4023">
    <![LOG[Setting message signatures.]LOG]!><time="10:17:01.937-120" date="04-23-2015" component="TSManager" context="" type="0" thread="1068" file="libsmsmessaging.cpp:1295">
    <![LOG[Setting the authenticator.]LOG]!><time="10:17:01.937-120" date="04-23-2015" component="TSManager" context="" type="0" thread="1068" file="libsmsmessaging.cpp:1325">
    <![LOG[CLibSMSMessageWinHttpTransport::Send: URL: SERVER.FIRM.com:80  CCM_POST /ccm_system/request]LOG]!><time="10:17:01.937-120" date="04-23-2015" component="TSManager" context="" type="1" thread="1068"
    file="libsmsmessaging.cpp:8604">
    <![LOG[Request was successful.]LOG]!><time="10:17:01.984-120" date="04-23-2015" component="TSManager" context="" type="0" thread="1068" file="libsmsmessaging.cpp:8939">
    <![LOG[Set a global environment variable _SMSTSLastActionRetCode=-2147467259]LOG]!><time="10:17:01.984-120" date="04-23-2015" component="TSManager" context="" type="0" thread="1068" file="executionenv.cxx:668">
    <![LOG[Set a global environment variable _SMSTSLastActionSucceeded=false]LOG]!><time="10:17:01.984-120" date="04-23-2015" component="TSManager" context="" type="0" thread="1068" file="executionenv.cxx:668">
    <![LOG[Clear local default environment]LOG]!><time="10:17:01.984-120" date="04-23-2015" component="TSManager" context="" type="0" thread="1068" file="executionenv.cxx:807">
    <![LOG[Let the parent group (Setup Operating System) decides whether to continue execution]LOG]!><time="10:17:01.984-120" date="04-23-2015" component="TSManager" context="" type="0" thread="1068"
    file="instruction.cxx:1004">
    <![LOG[Let the parent group (Software and Updates) decide whether to continue execution]LOG]!><time="10:17:02.000-120" date="04-23-2015" component="TSManager" context="" type="0" thread="1068"
    file="instruction.cxx:254">
    <![LOG[Let the parent group (Setup Operating System) decide whether to continue execution]LOG]!><time="10:17:02.000-120" date="04-23-2015" component="TSManager" context="" type="0" thread="1068"
    file="instruction.cxx:254">
    <![LOG[The execution of the group (Setup Operating System) has failed and the execution has been aborted. An action failed.
    Operation aborted (Error: 80004004; Source: Windows)]LOG]!><time="10:17:02.000-120" date="04-23-2015" component="TSManager" context="" type="3" thread="1068" file="instruction.cxx:217">
    <![LOG[Failed to run the last action: Setup Windows and Configuration Manager. Execution of task sequence failed.
    Unspecified error (Error: 80004005; Source: Windows)]LOG]!><time="10:17:02.000-120" date="04-23-2015" component="TSManager" context="" type="3" thread="1068" file="engine.cxx:213">
    <![LOG[MP server (REMOVED). Ports 80,443. CRL=false.]LOG]!><time="10:17:02.000-120" date="04-23-2015" component="TSManager" context="" type="1" thread="1068" file="utils.cpp:5881">
    <![LOG[Setting authenticator]LOG]!><time="10:17:02.031-120" date="04-23-2015" component="TSManager" context="" type="1" thread="1068" file="utils.cpp:5903">
    <![LOG[Set authenticator in transport]LOG]!><time="10:17:02.031-120" date="04-23-2015" component="TSManager" context="" type="0" thread="1068" file="libsmsmessaging.cpp:7734">
    <![LOG[Sending StatusMessage]LOG]!><time="10:17:02.047-120" date="04-23-2015" component="TSManager" context="" type="1" thread="1068" file="libsmsmessaging.cpp:4023">
    <![LOG[Setting message signatures.]LOG]!><time="10:17:02.062-120" date="04-23-2015" component="TSManager" context="" type="0" thread="1068" file="libsmsmessaging.cpp:1295">
    <![LOG[Setting the authenticator.]LOG]!><time="10:17:02.062-120" date="04-23-2015" component="TSManager" context="" type="0" thread="1068" file="libsmsmessaging.cpp:1325">
    <![LOG[CLibSMSMessageWinHttpTransport::Send: URL: SERVER.FIRM.com:80  CCM_POST /ccm_system/request]LOG]!><time="10:17:02.078-120" date="04-23-2015" component="TSManager" context="" type="1" thread="1068"
    file="libsmsmessaging.cpp:8604">
    <![LOG[Request was successful.]LOG]!><time="10:17:02.109-120" date="04-23-2015" component="TSManager" context="" type="0" thread="1068" file="libsmsmessaging.cpp:8939">
    <![LOG[Executing command line: X:\WINDOWS\system32\cmd.exe /k]LOG]!><time="10:18:05.907-120" date="04-23-2015" component="TSBootShell" context="" type="1" thread="792" file="bootshell.cpp:860">
    <![LOG[The command completed successfully.]LOG]!><time="10:18:05.907-120" date="04-23-2015" component="TSBootShell" context="" type="1" thread="792" file="bootshell.cpp:942">
    <![LOG[Successfully launched command shell.]LOG]!><time="10:18:05.907-120" date="04-23-2015" component="TSBootShell" context="" type="1" thread="792" file="bootshell.cpp:432">
    <![LOG[Execution::enExecutionFail != m_eExecutionResult, HRESULT=80004005 (e:\nts_sccm_release\sms\client\tasksequence\tsmanager\tsmanager.cpp,923)]LOG]!><time="10:32:03.832-120" date="04-23-2015" component="TSManager"
    context="" type="0" thread="1068" file="tsmanager.cpp:923">
    <![LOG[Task Sequence Engine failed! Code: enExecutionFail]LOG]!><time="10:32:03.832-120" date="04-23-2015" component="TSManager" context="" type="3" thread="1068" file="tsmanager.cpp:923">
    <![LOG[****************************************************************************]LOG]!><time="10:32:03.832-120" date="04-23-2015" component="TSManager" context="" type="1" thread="1068"
    file="tsmanager.cpp:953">
    <![LOG[Task sequence execution failed with error code 80004005]LOG]!><time="10:32:03.832-120" date="04-23-2015" component="TSManager" context="" type="3" thread="1068" file="tsmanager.cpp:954">
    <![LOG[Cleaning Up.]LOG]!><time="10:32:03.832-120" date="04-23-2015" component="TSManager" context="" type="1" thread="1068" file="tsmanager.cpp:675">
    <![LOG[Removing Authenticator]LOG]!><time="10:32:03.832-120" date="04-23-2015" component="TSManager" context="" type="1" thread="1068" file="tsmanager.cpp:686">
    <![LOG[shKey.DeleteValue( c_szRegValue_SecurityToken ), HRESULT=80070002 (e:\nts_sccm_release\sms\framework\ccmutillib\ccmutillib.cpp,1660)]LOG]!><time="10:32:03.832-120" date="04-23-2015" component="TSManager" context=""
    type="0" thread="1068" file="ccmutillib.cpp:1660">
    <![LOG[Cleaning up task sequence folder]LOG]!><time="10:32:03.832-120" date="04-23-2015" component="TSManager" context="" type="1" thread="1068" file="utils.cpp:2329">
    <![LOG[Unable to delete file C:\_SMSTaskSequence\TSEnv.dat (0x80070005). Continuing.]LOG]!><time="10:32:04.754-120" date="04-23-2015" component="TSManager" context="" type="1" thread="1068"
    file="ccmfile.cpp:1056">

    Just had a look in the Apply Operating System step :
    1. the option "apply operating system from a captured image" is checked , the Image package is "Windows 8.1 Enterprise en-US", the Image is "1 - Windows 8.1 Enterprise"
    2. The "use an unattended or sysprep answer file for a custom installation" is NOT checked...
    So... Getting closer to a solution? I've already F8'd the PE boot and saw that the unattend.txt does exist under c:\windows\panther\unattend\unattend.xml - also filled in with our values which we specified in the "apply windows settings" +
    "apply network settings" (both following right after a "BCDBoot Fix" step I created for this UEFI device [command : bcdboot c:\windows /s c: /f UEFI /l en-us].
    My questions :
    the package option : what should I specify as this?
    the file name option : can I just use that "c:\windows\panther\unattend\unattend.xml" ?
    /dimi

Maybe you are looking for

  • Using Parallelism, Cache with Oracle Applications Core Tables

    Hi all, I want to know if i can put some tables in parallel and some tables in cache in an Oracle Applications enviroment without any problem. The precedure to change these tables are equal to a single database? Just use command like "ALTER TABLE tab

  • Nano shuts off during run then comes back on

    I purchased the Nike+ ipod kit in late December 2006. I love the product and it has been great for motivating me to run. I am currently at 400 miles and during the last week I have experienced issues with the kit and do not know what this is from. Th

  • HT3258 After downloading Mac OS X I can no long download photos from Safari to iPhoto.  How do I fix this problem?

    I downloaded Mac OS X Mountain Lion and now I can't download photos from Safari to iPhoto.

  • Using external servers with SJSS5u1

    Hi, I have sucessfully installed Sun Java Studio Standard 5 update 1 (SJSS5u1) on my Sun JDS (based on SuSE 8.1 and Linux 2.4.19). Unfortunately, the application server was not installed during the installation process and I do not know how to do so.

  • IPhoto can't use.

    I can't use my iPhoto. I don't know what happen. I'm using mountain Lion now. Please help me  Process:         iPhoto [269] Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto Identifier:      com.apple.iPhoto Version:         9.4.2 (9.4.