SCCM 2012 SQL database error while installation.

Hi,
I'm trying to install SCCM 2012 R2 in a test Lab. While completing installation I'm getting an error message "setup has encountered fatal errors during database initialization. check the log for details. click the view log button for more information"
and installation finishes successfully. I'm using SQL server 2008 R2 with CU6 installed. SCCM Prerequisite checker shows only SQL memory and WSUS package warnings. Still I'm able to finish installation but not able connect SCCM. I'm installing Primary site.
My system is running on Win 2k8 R2 SP1.
Please help.
Regards,
Dhananjay

In my experience you can get strange problems if you extract the ISO to a folder and run the setup from there (that seems to be what you have done).
Try mounting the ISO directly and I believe you will have better success. You are using W2008R2 so you will need a 3rd party app (Virtual CloneDrive is a good one).
(Obviously if this is a VM you can just add the ISO to the DVD drive)
Gerry Hampson | Blog:
www.gerryhampsoncm.blogspot.ie | LinkedIn:
Gerry Hampson | Twitter:
@gerryhampson

Similar Messages

  • Could not update database error while installation

    Hi i am in the middle of 4.7 installation (IDES). At the step 29 database update statistics, system stops giving error
    ERROR 2008-04-30 09:10:35
    CJS-00288  Could not update database statistics.
    <br>DIAGNOSIS: Command brconnect -u / -c -f crsyn -o SAPP47 returned
    3.<br>SOLUTION: See brconnect.log for details.
    Can anybody tell what could be the problem.
    Thanks in advance

    Hi
    Thanks for your reply. Following are the details of file brconnect.log:
    BR0801I BRCONNECT 7.00 (16)
    BR0999E Loading of SQL client library oci.dll failed - please check Oracle configuration
    BR0310E Connect to database instance P47 failed
    BR0280I BRCONNECT time stamp: 2008-04-30 09.10.35
    BR0804I BRCONNECT terminated with errors

  • Java.sql.SQLException: Error while trying to retrieve text for error ORA-12545

    Hi,
    I am getting the following error when i tried to connect to Oracle database from
    a servlet. This exception is coming at the time of getting connection. And the
    same code is working when i used in the standalone java program.
    Oracle 8i database and WLS 6.0 are on the same UNIX machine.
    ---------attempting to connect ------
    java.sql.SQLException: Error while trying to retrieve text for error ORA-12545
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java, Compiled
    Code)
    at oracle.jdbc.oci8.OCIDBAccess.check_error(OCIDBAccess.java, Compiled C
    ode)
    at oracle.jdbc.oci8.OCIDBAccess.logon(OCIDBAccess.java, Compiled Code)
    at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java, Com
    piled Code)
    at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.ja
    va, Compiled Code)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java, Compiled C
    ode)
    at java.sql.DriverManager.getConnection(DriverManager.java, Compiled Cod
    e)
    at java.sql.DriverManager.getConnection(DriverManager.java, Compiled Cod
    e)
    at ConnectionPoolServlet.doGet(ConnectionPoolServlet.java, Compiled Code
    at javax.servlet.http.HttpServlet.service(HttpServlet.java, Compiled Cod
    e)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java, Compiled Cod
    e)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
    pl.java, Compiled Code)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppSe
    rvletContext.java, Compiled Code)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestIm
    pl.java, Compiled Code)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java, Compiled Co
    de)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java, Compiled Code)
    Can any one help me out.
    Durga

    The problem is solved after exprting the parameter ORACLE_SID=<database_name>
    in Weblogic startup script.
    thank u for the suggestions.
    Durga
    Joseph Weinstein <[email protected]> wrote:
    >
    >
    Durga wrote:
    Hi Joe,
    I have checked the ORACLE_HOME parameter. There was a differnce. Ichanged to
    /oracle/app/product/8.1.7
    Now i am getting different exception. But still the standalone codeis working.
    any clues why I am getting this exception. I will send the code andthe weblogic
    properties file for reference if u need.Good. No, I don't need it. Now make sure the library path that the OS
    uses to find
    Oracle libraries, and our driver libraries etc., is in the same order
    for the
    server as for the shell that is successful on it's own. Make sure your
    Oracle
    client stuff is ahead of any weblogic libraries.
    Joe
    java.sql.SQLException: ORA-12547: TNS:lost contact
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java,Compiled
    Code)
    at oracle.jdbc.oci8.OCIDBAccess.check_error(OCIDBAccess.java,Compiled
    C
    ode)
    at oracle.jdbc.oci8.OCIDBAccess.logon(OCIDBAccess.java, CompiledCode)
    at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java,Com
    piled Code)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java,Compiled
    C
    ode)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java,Compiled
    C
    ode)
    at java.sql.DriverManager.getConnection(DriverManager.java,Compiled Cod
    e)
    at java.sql.DriverManager.getConnection(DriverManager.java:177)
    at ConnectionPoolServlet.doGet(ConnectionPoolServlet.java,Compiled Code
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl.getRuntimeName(ServletStubI
    mpl.java, Compiled Code)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppSe
    rvletContext.java, Compiled Code)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestIm
    pl.java:1631)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java,Compiled
    Co
    de)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java, CompiledCode)
    Joseph Weinstein <[email protected]> wrote:
    The environment for the server probably doesn't have the same ORACLE_HOME
    setting as your shell when you succeed in a standalone.
    Also, you should be using our connection pools, and you should avoid
    making DriverManager calls in any multithreaded app such as WebLogic.
    Joe
    Durga wrote:
    Hi,
    I am getting the following error when i tried to connect to Oracledatabase from
    a servlet. This exception is coming at the time of getting connection.And the
    same code is working when i used in the standalone java program.
    Oracle 8i database and WLS 6.0 are on the same UNIX machine.
    ---------attempting to connect ------
    java.sql.SQLException: Error while trying to retrieve text for errorORA-12545
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java,
    Compiled
    Code)
    at oracle.jdbc.oci8.OCIDBAccess.check_error(OCIDBAccess.java, CompiledC
    ode)
    at oracle.jdbc.oci8.OCIDBAccess.logon(OCIDBAccess.java, Compiled
    Code)
    at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java,Com
    piled Code)
    at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.ja
    va, Compiled Code)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java, CompiledC
    ode)
    at java.sql.DriverManager.getConnection(DriverManager.java, CompiledCod
    e)
    at java.sql.DriverManager.getConnection(DriverManager.java, CompiledCod
    e)
    at ConnectionPoolServlet.doGet(ConnectionPoolServlet.java, CompiledCode
    at javax.servlet.http.HttpServlet.service(HttpServlet.java, CompiledCod
    e)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java, CompiledCod
    e)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
    pl.java, Compiled Code)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppSe
    rvletContext.java, Compiled Code)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestIm
    pl.java, Compiled Code)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java, CompiledCo
    de)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java, Compiled
    Code)
    Can any one help me out.
    Durga

  • Java.sql.SQLException: Error while trying to retrieve text for error ORA-12

    Hi,
    I am getting the following error when i tried to connect to Oracle database from a servlet on HP-UX. I am using wls 6.0. And the same code is working when i used in the standalone java program.
    java.sql.SQLException: Error while trying to retrieve text for error ORA-12545
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java, Compiled
    Code)
    at oracle.jdbc.oci8.OCIDBAccess.check_error(OCIDBAccess.java, Compiled C
    ode)
    at oracle.jdbc.oci8.OCIDBAccess.logon(OCIDBAccess.java, Compiled Code)
    at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java, Com
    piled Code)
    at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.ja
    va, Compiled Code)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java, Compiled C
    ode)
    at java.sql.DriverManager.getConnection(DriverManager.java, Compiled Cod
    e)
    at java.sql.DriverManager.getConnection(DriverManager.java, Compiled Cod
    e)
    at ConnectionPoolServlet.doGet(ConnectionPoolServlet.java, Compiled Code
    at javax.servlet.http.HttpServlet.service(HttpServlet.java, Compiled Cod
    e)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java, Compiled Cod
    e)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
    pl.java, Compiled Code)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppSe
    rvletContext.java, Compiled Code)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestIm
    pl.java, Compiled Code)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java, Compiled Co
    de)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java, Compiled Code)
    Can any one help me out.
    Durga

    This is the text for ORA-12545, there is a problem in your NET8 somewhere.
    http://technet.oracle.com/doc/network.815/a67440/ch11.htm#440586

  • Dtabase version error while installation

    Hi,
    I am installing BAM in 2003 server with oracle Database XE which have 10.2.0.1 version.
    But its giving me the below error while installation:
    Database version should be 9.2.0.7 or higher , 10.1.0.5 or highers, 10.2.0.2 or higher .
    Please suggest me on the same.
    Regards,
    Ana

    Hi,
    Thanks for the suggestion, now my issue has been resolved.
    I did the installation of DataBase and BAM again after deleting its all previous entries from Oracle home.
    It accept that version only and working fine.
    Regards,
    Ana

  • Java.sql.SQLException: Error while trying to retrieve text for error ORA-24

    Hi All,
    Am having serious problem with ORA-24327 and the behavior is very very unpredictable. I have couple of environment where the same error comes in different context. The recent one was surprising. I have describe bellow the environment configuration and the stack trace. The error which surprised me was when I use type � 3 driver while starting weblogic I get ORA �24327 but when I use Type �4 it starts properly. If you could kindly provide solution it would be great help. I would also appreciate if u can provide information which driver to use where performance is the major concern. I would also appreciate if u could provide feed-back from the industry about booth the driver. Apart from that I have couple have environment where it occurs when 10/12 user access simultaneously. All the open connection is closed in program properly still am getting the error.
    Thanks in anticipation.
    Cheers,
    Tapas
    Environment
    OS - SunOS 5.8 Generic_108528-07 sun4u sparc SUNW,Ultra-Enterprise
    JDK - Solaris VM (build Solaris_JDK_1.2.2_07, native threads, sunwjit)
    Weblogic - 5.1.0 Service Pack 9 04/05/2001 14:59:53 #105983
    Oracle � 8.1.6
    Delaying 10 seconds before making a beuatpool pool connection.
    Pool 1 (Type �3 )
    weblogic.jdbc.connectionPool.beuatpool=\
    url=jdbc:weblogic:oracle,\
    driver=weblogic.jdbc.oci.Driver,\
    loginDelaySecs=10,\
    initialCapacity=10,\
    maxCapacity=20,\
    capacityIncrement=2,\
    allowShrinking=true,\
    shrinkPeriodMins=10,\
    refreshMinutes=10,\
    testTable=dual,\
    props=user=xxx;password=xxx;server=xxxx
    Pool 2(Type �4)
    weblogic.jdbc.connectionPool.thinPool=\
    url=jdbc:oracle:thin:@xxx:1521:xxx,\
    driver=oracle.jdbc.driver.OracleDriver,\
    loginDelaySecs=1,\
    initialCapacity=1,\
    maxCapacity=10,\
    capacityIncrement=1,\
    allowShrinking=true,\
    shrinkPeriodMins=15,\
    refreshMinutes=15,\
    testTable=dual,\
    props=user=xxx;password=xxx;server=xxx:1521:xxx
    allow=everyone
    ---------- LOGIN ERROR CODE: 24327
    java.sql.SQLException: Error while trying to retrieve text for error ORA-24327 �
    at java.lang.Throwable.fillInStackTrace(Native Method)
    at java.lang.Throwable.fillInStackTrace(Compiled Code)
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Exception.<init>(Compiled Code)
    at java.sql.SQLException.<init>(SQLException.java:43)
    at weblogic.db.oci.OciConnection.getLDAException(OciConnection.java:143)
    at weblogic.jdbcbase.oci.Driver.connect(Driver.java:157)
    at weblogic.jdbc.common.internal.ConnectionEnvFactory.makeConnection(Con
    nectionEnvFactory.java:149)
    at weblogic.jdbc.common.internal.ConnectionEnvFactory.createResource(Con
    nectionEnvFactory.java:109)
    at weblogic.common.internal.ResourceAllocator.makeResources(Compiled Cod
    e)
    at weblogic.common.internal.ResourceAllocator.<init>(Compiled Code)
    at weblogic.jdbc.common.internal.ConnectionPool.startup(ConnectionPool.j
    ava:330)
    at weblogic.jdbc.common.internal.JdbcInfo.initPools(Compiled Code)
    at weblogic.jdbc.common.internal.JdbcInfo.startup(JdbcInfo.java:200)
    at weblogic.jdbc.common.internal.JdbcStartup.main(JdbcStartup.java:11)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.t3.srvr.StartupThread.runMain(StartupThread.java:219)
    at weblogic.t3.srvr.StartupThread.doWork(Compiled Code)
    at weblogic.t3.srvr.PropertyExecuteThread.run(PropertyExecuteThread.java
    :62)
    ---------- LOGIN ERROR CODE: 24327
    ---------- LOGIN ERROR CODE: 24327
    Fri Aug 31 00:57:22 GMT-05:00 2001:<I> <JDBC Pool> Sleeping in createResource()
    Fri Aug 31 00:57:23 GMT-05:00 2001:<E> <JDBC Pool> Failed to create connection p
    ool "beuatpool"
    weblogic.common.ResourceException: weblogic.common.ResourceException:
    Could not create pool connection. The DBMS driver exception was:
    java.sql.SQLException: Error while trying to retrieve text for error ORA-24327 -
    at java.lang.Throwable.fillInStackTrace(Native Method)
    at java.lang.Throwable.fillInStackTrace(Compiled Code)
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Exception.<init>(Compiled Code)
    at java.sql.SQLException.<init>(SQLException.java:43)
    at weblogic.db.oci.OciConnection.getLDAException(OciConnection.java:143)
    at weblogic.jdbcbase.oci.Driver.connect(Driver.java:157)
    at java.sql.DriverManager.getConnection(Compiled Code)
    at java.sql.DriverManager.getConnection(DriverManager.java:137)
    at weblogic.jdbc.common.internal.ConnectionEnvFactory.makeConnection(Con
    nectionEnvFactory.java:172)
    at weblogic.jdbc.common.internal.ConnectionEnvFactory.createResource(Con
    nectionEnvFactory.java:109)
    at weblogic.common.internal.ResourceAllocator.makeResources(Compiled Cod
    e)
    at weblogic.common.internal.ResourceAllocator.<init>(Compiled Code)
    at weblogic.jdbc.common.internal.ConnectionPool.startup(ConnectionPool.j
    ava:330)
    at weblogic.jdbc.common.internal.JdbcInfo.initPools(Compiled Code)
    at weblogic.jdbc.common.internal.JdbcInfo.startup(JdbcInfo.java:200)
    at weblogic.jdbc.common.internal.JdbcStartup.main(JdbcStartup.java:11)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.t3.srvr.StartupThread.runMain(StartupThread.java:219)
    at weblogic.t3.srvr.StartupThread.doWork(Compiled Code)
    at weblogic.t3.srvr.PropertyExecuteThread.run(PropertyExecuteThread.java
    :62)
    at java.lang.Throwable.fillInStackTrace(Native Method)
    at java.lang.Throwable.fillInStackTrace(Compiled Code)
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Exception.<init>(Compiled Code)
    at weblogic.common.ResourceException.<init>(ResourceException.java:18)
    at weblogic.jdbc.common.internal.ConnectionEnvFactory.makeConnection(Con
    nectionEnvFactory.java:182)
    at weblogic.jdbc.common.internal.ConnectionEnvFactory.createResource(Con
    nectionEnvFactory.java:109)
    at weblogic.common.internal.ResourceAllocator.makeResources(Compiled Cod
    e)
    at weblogic.common.internal.ResourceAllocator.<init>(Compiled Code)
    at weblogic.jdbc.common.internal.ConnectionPool.startup(ConnectionPool.j
    ava:330)
    at weblogic.jdbc.common.internal.JdbcInfo.initPools(Compiled Code)
    at weblogic.jdbc.common.internal.JdbcInfo.startup(JdbcInfo.java:200)
    at weblogic.jdbc.common.internal.JdbcStartup.main(JdbcStartup.java:11)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.t3.srvr.StartupThread.runMain(StartupThread.java:219)
    at weblogic.t3.srvr.StartupThread.doWork(Compiled Code)
    at weblogic.t3.srvr.PropertyExecuteThread.run(PropertyExecuteThread.java
    :62)
    at java.lang.Throwable.fillInStackTrace(Native Method)
    at java.lang.Throwable.fillInStackTrace(Compiled Code)
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Exception.<init>(Compiled Code)
    at weblogic.common.ResourceException.<init>(ResourceException.java:18)
    at weblogic.jdbc.common.internal.ConnectionEnvFactory.createResource(Con
    nectionEnvFactory.java:125)
    at weblogic.common.internal.ResourceAllocator.makeResources(Compiled Cod
    e)
    at weblogic.common.internal.ResourceAllocator.<init>(Compiled Code)
    at weblogic.jdbc.common.internal.ConnectionPool.startup(ConnectionPool.j
    ava:330)
    at weblogic.jdbc.common.internal.JdbcInfo.initPools(Compiled Code)
    at weblogic.jdbc.common.internal.JdbcInfo.startup(JdbcInfo.java:200)
    at weblogic.jdbc.common.internal.JdbcStartup.main(JdbcStartup.java:11)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.t3.srvr.StartupThread.runMain(StartupThread.java:219)
    at weblogic.t3.srvr.StartupThread.doWork(Compiled Code)
    at weblogic.t3.srvr.PropertyExecuteThread.run(PropertyExecuteThread.java
    :62)

    Hi,
    I guess you can try some of these:
    - Make sure you're not missing an entry inside your tnsnames.ora file. Thin driver does not require the information inside that file, as opposed to Weblogic's OCI driver. If you are able to connect to the DB using a thin driver, then the problem is most probably (WL)driver-related.
    - Make sure you've properly configured the DB user / password inside your weblogic.properties (config.xml if WL6+).
    - Make sure you're able to access all drivers and classes required (PATH, CLASSPATH, etc...)
    - Make sure the OCI driver version you are using is fully compatible with the Oracle (server) version you are pointing to.
    - Try to access the DB user through some other client (for instance, SQLPlus*).
    Hope this is of some help,
    Freddy.

  • ARM approval error after upgrading to SP14: Database error while using the secure store.

    Dear GRC experts,
    After upgrading GRC 10 to SP14, assigning manual passwords during the approval of a request, the approval process is failing.
    Here is the scenario; your advice will be appreciated.
    Task: Manually assign passwords to multiple systems contained in the request
    Where: On the access request, go to “User System Details” tab
    Issue: After approving/submitting the request, the error “Database error while using the secure store” is generated
    Logs: Nothing on transactions SLG1 or ST22; however ST11 shows the error attached below:
    This is the failed approval of the request:
    Other scenarios executed as a workaround, and passed the password assignment this time:
    The approval will work if only one password is assigned to any of the given systems. The rest of the systems get an auto-generated
    password.
    ARM also accepts multiple passwords when the requestor assigns passwords on the “User System Details” prior submitting a
    request. The GRC admin can approve once reached for system approval.
    AS FYI, “Confirm Password” is only required when creating the request but not on any other stage.
    System information:
      -Netweaver 7
      -GRCFND_A SP14
      -GRCPINW SP13
    Regards,
    Gustavo

    SAP just delivered a note to fix this issue. The number is 2022294.

  • Error while installation of Outlook Integration Add On

    Hi Experts,
    Problem encountered upon installation of outlook add-on
    The message box shows "The Procedure point ??OCBFDbDef@@QAE@....... could not be located in dynamic link library BFFramework.dll".
    I'm watching this thread . I cannot open the link for the proposed solution to my problem.
    [Error while installation of Outlook Integration Add On]
    Please provide updated link
    Regards,
    Sandra
    Edited by: Sandra Callanta on Sep 15, 2009 10:55 AM
    Edited by: Sandra Callanta on Sep 15, 2009 10:56 AM

    Hi Sandra,
    You may check SAP Note Number: 953357 instead. The title for the note is: Troubleshooting Add-ons in Business One.
    Thanks,
    Gordon

  • Error while installation of Addon

    Friends,
    I get this error while installation of addon.
    An attempt was made to load a program with an incorrect format. (Exception from HRESULT: 0x8007000B)
    My code works fine when executed directly from Visual Studio. But when i build the addon and try to install it, i get this error.
    The server is 64 Bit. is it making any difference?
    plz help.
    Laks.

    look at sdk forum, there is a lot of explanation for this.
    From visual studio you are using diferent connection string than in addon and for addon you must create separately instal file (not only compiled as exe from vs)
    In sdk samples is example for addon creating, look at that.
    Petr

  • SCCM 2012 R2 site server client installation error: The client version 5.00.7958.1000 does not match the MP version 5.00.7804.1000.

    Hello,
    When I try to install the client on the site server itself it gives me this error message and fails the ccmsetup. I only have this on the site server. Clients to other servers and computers are pushed fine. If I check the version of the MP it says 5.00.7958.1000
    in ADSI. I removed the MP object in CN=System, CN=System Management. Waited for it to be regenerated automatically by SCCM but the installation doesn't work still.
    I tried to install with several methods including directly from ccmsetup.exe in ccmsetup folder, pushing by sccm itself, running from commandline, ...
    I run SCCM 2012 R2 on Windows Server 2008 R2 and the database on SQL 2008 on Server 2008 R2
    Below you find the ccmsetup.log:
    <![LOG[==========[ ccmsetup started in process 5072 ]==========]LOG]!><time="07:29:25.392-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="7532" file="ccmsetup.cpp:9437">
    <![LOG[Running on platform X64]LOG]!><time="07:29:25.393-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="7532" file="util.cpp:1837">
    <![LOG[Updated security on object C:\Windows\ccmsetup\cache\.]LOG]!><time="07:29:25.394-120" date="04-17-2014" component="ccmsetup" context="" type="0" thread="7532" file="ccmsetup.cpp:9281">
    <![LOG[Launch from folder C:\Windows\ccmsetup\]LOG]!><time="07:29:25.394-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="7532" file="ccmsetup.cpp:721">
    <![LOG[CcmSetup version: 5.0.7958.1000]LOG]!><time="07:29:25.395-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="7532" file="ccmsetup.cpp:727">
    <![LOG[In ServiceMain]LOG]!><time="07:29:25.397-120" date="04-17-2014" component="ccmsetup" context="" type="0" thread="2724" file="ccmsetup.cpp:3365">
    <![LOG[Running on 'Microsoft Windows Server 2008 R2 Enterprise ' (6.1.7601). Service Pack (1.0). SuiteMask = 274. Product Type = 18]LOG]!><time="07:29:25.490-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="util.cpp:1919">
    <![LOG[Ccmsetup command line: "C:\Windows\ccmsetup\ccmsetup.exe" /runservice /config:MobileClient.tcf]LOG]!><time="07:29:25.491-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:3590">
    <![LOG[Command line parameters for ccmsetup have been specified. No registry lookup for command line parameters is required.]LOG]!><time="07:29:25.491-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:3775">
    <![LOG[Command line: "C:\Windows\ccmsetup\ccmsetup.exe" /runservice /config:MobileClient.tcf]LOG]!><time="07:29:25.491-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:3776">
    <![LOG[SslState value: 224]LOG]!><time="07:29:25.499-120" date="04-17-2014" component="ccmsetup" context="" type="0" thread="2724" file="ccmsetup.cpp:4425">
    <![LOG[CCMHTTPPORT: 80]LOG]!><time="07:29:25.511-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:8617">
    <![LOG[CCMHTTPSPORT: 443]LOG]!><time="07:29:25.511-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:8632">
    <![LOG[CCMHTTPSSTATE: 224]LOG]!><time="07:29:25.511-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:8650">
    <![LOG[CCMHTTPSCERTNAME: ]LOG]!><time="07:29:25.511-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:8668">
    <![LOG[FSP: SCCMSRV-02]LOG]!><time="07:29:25.511-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:8720">
    <![LOG[CCMFIRSTCERT: 1]LOG]!><time="07:29:25.511-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:8778">
    <![LOG[Config file: C:\Windows\ccmsetup\MobileClientUnicode.tcf]LOG]!><time="07:29:25.513-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:4539">
    <![LOG[Retry time: 10 minute(s)]LOG]!><time="07:29:25.513-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:4540">
    <![LOG[MSI log file: C:\Windows\ccmsetup\Logs\client.msi.log]LOG]!><time="07:29:25.513-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:4541">
    <![LOG[MSI properties: INSTALL="ALL" SMSSITECODE="ZAV" FSP="SCCMSRV-02" DISABLESITEOPT="TRUE" SMSCACHEDIR="CACHE" SMSCACHEFLAGS="MAXDRIVE" SMSCACHESIZE="20000" CCMHTTPPORT="80" CCMHTTPSPORT="443" CCMHTTPSSTATE="224" CCMFIRSTCERT="1"]LOG]!><time="07:29:25.514-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:4542">
    <![LOG[Source List:]LOG]!><time="07:29:25.514-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:4550">
    <![LOG[ \\SCCMSRV-02.snba.be\SMSClient]LOG]!><time="07:29:25.514-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:4557">
    <![LOG[ \\SCCMSRV-02.SNBA.BE\SMSClient]LOG]!><time="07:29:25.514-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:4566">
    <![LOG[MPs:]LOG]!><time="07:29:25.514-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:4569">
    <![LOG[ SCCMSRV-02.snba.be]LOG]!><time="07:29:25.514-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:4584">
    <![LOG[No version of the client is currently detected.]LOG]!><time="07:29:25.520-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:2748">
    <![LOG[Task 'Configuration Manager Client Retry Task' does not exist]LOG]!><time="07:29:25.525-120" date="04-17-2014" component="ccmsetup" context="" type="0" thread="2724" file="wintask.cpp:634">
    <![LOG[Updated security on object C:\Windows\ccmsetup\.]LOG]!><time="07:29:25.529-120" date="04-17-2014" component="ccmsetup" context="" type="0" thread="2724" file="ccmsetup.cpp:9281">
    <![LOG[Sending Fallback Status Point message to 'SCCMSRV-02', STATEID='100'.]LOG]!><time="07:29:25.530-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:9756">
    <![LOG[Failed to get client version for sending messages to FSP. Error 0x80041010]LOG]!><time="07:29:25.534-120" date="04-17-2014" component="ccmsetup" context="" type="2" thread="2724" file="ccmsetup.cpp:9838">
    <![LOG[Params to send FSP message '5.0.7958.1000 Deployment ']LOG]!><time="07:29:25.535-120" date="04-17-2014" component="ccmsetup" context="" type="0" thread="2724" file="ccmsetup.cpp:9887">
    <![LOG[State message with TopicType 800 and TopicId {C6441082-A993-4410-9F89-D4CCB6624ED0} has been sent to the FSP]LOG]!><time="07:29:25.676-120" date="04-17-2014" component="FSPStateMessage" context="" type="1" thread="2724" file="fsputillib.cpp:752">
    <![LOG[Running as user "SYSTEM"]LOG]!><time="07:29:25.693-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:1995">
    <![LOG[Detected 20167 MB free disk space on system drive.]LOG]!><time="07:29:25.693-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="util.cpp:628">
    <![LOG[Checking Write Filter Status.]LOG]!><time="07:29:25.694-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:2024">
    <![LOG[This is not a supported write filter device. We are not in a write filter maintenance mode.]LOG]!><time="07:29:25.694-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:2051">
    <![LOG[Performing AD query: '(&(ObjectCategory=mSSMSManagementPoint)(mSSMSDefaultMP=TRUE)(mSSMSSiteCode=ZAV))']LOG]!><time="07:29:25.716-120" date="04-17-2014" component="ccmsetup" context="" type="0" thread="2724" file="lsad.cpp:656">
    <![LOG[OperationalXml '<ClientOperationalSettings><Version>5.00.7958.1000</Version><SecurityConfiguration><SecurityModeMask>0</SecurityModeMask><SecurityModeMaskEx>224</SecurityModeMaskEx><HTTPPort>80</HTTPPort><HTTPSPort>443</HTTPSPort><CertificateStoreName></CertificateStoreName><CertificateIssuers></CertificateIssuers><CertificateSelectionCriteria></CertificateSelectionCriteria><CertificateSelectFirstFlag>1</CertificateSelectFirstFlag><SiteSigningCert>308202EF308201D7A00302010202102F8856AD510DC3AB4F4908160FC3185E300D06092A864886F70D01010B05003016311430120603550403130B53697465205365727665723020170D3133303830373134323233325A180F32313133303731353134323233325A3016311430120603550403130B536974652053657276657230820122300D06092A864886F70D01010105000382010F003082010A0282010100DDAAEB161F4ACB759E0E56C6F784F3BEDD4DA0303B40657298A41D7F9714E112CC80272A238E605DADD2D409658211D40590BD92D0DFE4E50E8F5AF482BF747E8D00636C41F7F939EF53FA6581B173A15BE25BC24DB9E3620D78612650415DF862AFA17F75128A601A011358B27CFB9989EEBD128485F167A5E378A0A3A106DEE3DD6CE7C5804B0BA3724C4455D2EA8D646B47D989AFC7D2BACC6AD0E62FA0D6B338C2CD3B5879B4794F5D29A89ADC93489E43237E4C3BA30F645F4E4FE0E3B562ABCFC73F52C33B7D179DD10888D2EB00F6F4E121009F1CB80BCF4FA0F5CAA5BA167AE7DC0A767BC3C9031A95A42C791B100D7F15144B4FE5AC104C2BEB3EAB0203010001A3373035301D0603551D110416301482125343434D5352562D30322E736E62612E626530140603551D25040D300B06092B060104018237650B300D06092A864886F70D01010B050003820101004802B9C3A3A9EA0DB5C6624F9152C60CA38F2857691234B5FE13DDED32DB3BADF4C847F5EA097DB9918537F40A94D56A06364775E62B9F75C51189BC510EE8F2848B264C41A4E941C9CD996BEF70B9F72345BEB05F39B87BF88B3A461333BD61CD50E6E16B15709D58B78A7B385E914DF2C7949AA5BEEFC8199D69CD6DCA312DBCFE64AC43D6F13B80FED4967447532E1A65F5E0588CA7246B417DD8530E28E3DAD170F71C00B6D79645EC49332CD9F8815DB65AAB441E6C41F72C37F432E5B5E23065B6D308486C398F340B1FF2361F3C342A50EA9A02D01138BACEDCFA0E7FAA681C1FC6157797171A0593EA0ACE0BD7BBBEB26E2F34FFD461210C76669FE1</SiteSigningCert></SecurityConfiguration><RootSiteCode>ZAV</RootSiteCode><CCM> <CommandLine>SMSSITECODE=ZAV FSP=SCCMSRV-02 DISABLESITEOPT=True SMSCACHEDIR=Cache SMSCACHEFLAGS=MAXDRIVE SMSCACHESIZE=20000</CommandLine> </CCM><FSP> <FSPServer>SCCMSRV-02.snba.be</FSPServer> </FSP><Capabilities SchemaVersion ="1.0"><Property Name="SSLState" Value="0" /></Capabilities><Domain Value="snba.be" /><Forest Value="snba.be" /></ClientOperationalSettings>']LOG]!><time="07:29:26.401-120" date="04-17-2014" component="ccmsetup" context="" type="0" thread="2724" file="lsadcache.cpp:236">
    <![LOG[HTTP is selected for Client. The current state is 0.]LOG]!><time="07:29:26.403-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmutillib.cpp:420">
    <![LOG[The MP name retrieved is 'SCCMSRV-02.snba.be' with version '7958' and capabilities '<Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities>']LOG]!><time="07:29:26.404-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="lsadcache.cpp:334">
    <![LOG[MP 'SCCMSRV-02.snba.be' is compatible]LOG]!><time="07:29:26.404-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="lsadcache.cpp:339">
    <![LOG[Retrieved 1 MP records from AD for site 'ZAV']LOG]!><time="07:29:26.404-120" date="04-17-2014" component="ccmsetup" context="" type="0" thread="2724" file="lsadcache.cpp:287">
    <![LOG[Retrived site version '5.00.7958.1000' from AD for site 'ZAV']LOG]!><time="07:29:26.405-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="siteinfo.cpp:575">
    <![LOG[SiteCode: ZAV]LOG]!><time="07:29:26.405-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:2076">
    <![LOG[SiteVersion: 5.00.7958.1000]LOG]!><time="07:29:26.406-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:2077">
    <![LOG[Ccmsetup is being restarted due to an administrative action. Installation files will be reset and downloaded again.]LOG]!><time="07:29:26.406-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:2111">
    <![LOG[Deleted file C:\Windows\ccmsetup\client.msi]LOG]!><time="07:29:26.413-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:9493">
    <![LOG[Only one MP SCCMSRV-02.snba.be is specified. Use it.]LOG]!><time="07:29:26.414-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:10080">
    <![LOG[Searching for DP locations from MP(s)...]LOG]!><time="07:29:26.414-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:11018">
    <![LOG[Current AD site of machine is DAT]LOG]!><time="07:29:26.415-120" date="04-17-2014" component="LocationServices" context="" type="1" thread="2724" file="lsad.cpp:770">
    <![LOG[Local Machine is joined to an AD domain]LOG]!><time="07:29:26.415-120" date="04-17-2014" component="LocationServices" context="" type="0" thread="2724" file="lsad.cpp:714">
    <![LOG[Current AD forest name is snba.be, domain name is snba.be]LOG]!><time="07:29:26.419-120" date="04-17-2014" component="LocationServices" context="" type="1" thread="2724" file="lsad.cpp:842">
    <![LOG[DhcpGetOriginalSubnetMask entry point is supported.]LOG]!><time="07:29:26.424-120" date="04-17-2014" component="LocationServices" context="" type="0" thread="2724" file="ccmiputil.cpp:117">
    <![LOG[Begin checking Alternate Network Configuration]LOG]!><time="07:29:26.424-120" date="04-17-2014" component="LocationServices" context="" type="0" thread="2724" file="ccmiputil.cpp:1095">
    <![LOG[Finished checking Alternate Network Configuration]LOG]!><time="07:29:26.433-120" date="04-17-2014" component="LocationServices" context="" type="0" thread="2724" file="ccmiputil.cpp:1172">
    <![LOG[Sending message body '<ContentLocationRequest SchemaVersion="1.00">
    <AssignedSite SiteCode="ZAV"/>
    <ClientPackage/>
    <ClientLocationInfo LocationType="SMSPACKAGE" DistributeOnDemand="0" UseProtected="0" AllowCaching="0" BranchDPFlags="0" AllowHTTP="1" AllowSMB="0" AllowMulticast="0" UseInternetDP="0">
    <ADSite Name="DAT"/>
    <Forest Name="snba.be"/>
    <Domain Name="snba.be"/>
    <IPAddresses>
    <IPAddress SubnetAddress="172.31.20.0" Address="172.31.20.101"/>
    <IPAddress SubnetAddress="172.31.105.0" Address="172.31.105.17"/>
    <IPAddress SubnetAddress="172.31.109.0" Address="172.31.109.135"/>
    </IPAddresses>
    </ClientLocationInfo>
    </ContentLocationRequest>
    ']LOG]!><time="07:29:26.441-120" date="04-17-2014" component="ccmsetup" context="" type="0" thread="2724" file="siteinfo.cpp:96">
    <![LOG[Sending message header '<Msg SchemaVersion="1.1"><ID>{76CC1A6C-D696-4C32-82D6-4F56FCA9E926}</ID><SourceHost>SCCMSRV-02</SourceHost><TargetAddress>mp:[http]MP_LocationManager</TargetAddress><ReplyTo>direct:SCCMSRV-02:LS_ReplyLocations</ReplyTo><Priority>3</Priority><Timeout>600</Timeout><ReqVersion>5931</ReqVersion><TargetHost>SCCMSRV-02.snba.be</TargetHost><TargetEndpoint>MP_LocationManager</TargetEndpoint><ReplyMode>Sync</ReplyMode><Protocol>http</Protocol><SentTime>2014-04-17T05:29:26Z</SentTime><Body Type="ByteRange" Offset="0" Length="1338"/><Hooks><Hook3 Name="zlib-compress"/></Hooks><Payload Type="inline"/></Msg>']LOG]!><time="07:29:26.441-120" date="04-17-2014" component="ccmsetup" context="" type="0" thread="2724" file="siteinfo.cpp:177">
    <![LOG[CCM_POST 'HTTP://SCCMSRV-02.snba.be/ccm_system/request']LOG]!><time="07:29:26.442-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="httphelper.cpp:807">
    <![LOG[Content boundary is '--aAbBcCdDv1234567890VxXyYzZ']LOG]!><time="07:29:27.999-120" date="04-17-2014" component="ccmsetup" context="" type="0" thread="2724" file="httphelper.cpp:1972">
    <![LOG[Received header '<Msg SchemaVersion="1.1">
    <ID>{431A4120-7DA1-4EF2-8A6C-2EDEF4D9E169}</ID>
    <SourceID>GUID:1C3F455F-F166-4B50-BE8E-68FD4F565096</SourceID>
    <SourceHost>SCCMSRV-02</SourceHost>
    <TargetAddress>direct:SCCMSRV-02:LS_ReplyLocations</TargetAddress>
    <ReplyTo>MP_LocationManager</ReplyTo>
    <CorrelationID>{00000000-0000-0000-0000-000000000000}</CorrelationID>
    <Priority>3</Priority>
    <Timeout>600</Timeout>
    <TargetHost>SCCMSRV-02</TargetHost><TargetEndpoint>LS_ReplyLocations</TargetEndpoint><ReplyMode>Sync</ReplyMode><Protocol>http</Protocol><SentTime>2014-04-17T05:29:27Z</SentTime><Body Type="ByteRange" Offset="0" Length="2504"/><Hooks><Hook3 Name="zlib-compress"/><Hook Name="authenticate"><Property Name="Signature">3082019206092A864886F70D010702A08201833082017F020101310B300906052B0E03021A0500300B06092A864886F70D0107013182015E3082015A02010130373023311330110603550403130A5343434D5352562D3032310C300A06035504031303534D5302104BA58C43C476A39E491A7F539E935ED8300906052B0E03021A0500300D06092A864886F70D010101050004820100B7018B6C14F24335592C864FDFAC6E038A9B2AC9AF3819C692F3DE515F97BF701A47E8595CE6CAD80F209EFFF3B1009F5AE60858FA6839B32C36FF9514D291895613A1A447C27E2BB8B05D71775FF770FF962DCC98AD3FC0DE0D45DD6BC16C9BAB0F697EF098FFC99228E26C52E661D3F6C929FEF527383DEBFA9C15027C58BAF8A7FFE4205C0198A9163E86535716E344D5012887A6AD8F563F2528DE6BD62BF2BF20DFDA4DA061EF57E755178827DAD0CB6CFC65FF4AB235E5EAAFBA565DC1B6E4AE7C093199B95CFE792F5FA6D0625D0938DC4EAF1BE70E708864B1E79B00FB32A1E6E37CF94FF54AC10C7FF994B5945E9CA1A3FA16B2F9D35462AFFAC001</Property><Property Name="AuthSenderMachine">SCCMSRV-02;SCCMSRV-02.snba.be;</Property><Property Name="MPSiteCode">ZAV</Property></Hook></Hooks><Payload Type="inline"/></Msg>']LOG]!><time="07:29:27.999-120" date="04-17-2014" component="ccmsetup" context="" type="0" thread="2724" file="httphelper.cpp:1724">
    <![LOG[Received reply body '<ContentLocationReply SchemaVersion="1.00"><ContentInfo PackageFlags="16777216"><ContentHashValues/></ContentInfo><Sites><Site><MPSite SiteCode="ZAV" MasterSiteCode="ZAV" SiteLocality="LOCAL" IISPreferedPort="80" IISSSLPreferedPort="443"/><LocationRecords><LocationRecord><URL Name="http://SCCMSRV-02.snba.be/SMS_DP_SMSPKG$/ZAV00114" Signature="http://SCCMSRV-02.snba.be/SMS_DP_SMSSIG$/ZAV00114"/><ADSite Name="DAT"/><IPSubnets><IPSubnet Address="172.31.20.0"/><IPSubnet Address="172.31.109.0"/><IPSubnet Address="172.31.105.0"/><IPSubnet Address=""/></IPSubnets><Metric Value=""/><Version>7958</Version><Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities><ServerRemoteName>SCCMSRV-02.snba.be</ServerRemoteName><DPType>SERVER</DPType><Windows Trust="1"/><Locality>LOCAL</Locality></LocationRecord></LocationRecords></Site></Sites><ClientPackage FullPackageID="ZAV00114" FullPackageVersion="1" FullPackageHash="BFC11E099E8F451107B43E0DBEFD93B01DB2D6453DA74F8A2CB94B73D676C1CD" MinimumClientVersion="5.00.7958.1000" RandomizeMaxDays="7" ProgramEnabled="false" LastModifiedTime="30357216;2152392064" SiteVersionMatch="true" SiteVersion="5.00.7958.1000" EnablePeerCache="true"/><RelatedContentIDs/></ContentLocationReply>']LOG]!><time="07:29:28.000-120" date="04-17-2014" component="ccmsetup" context="" type="0" thread="2724" file="siteinfo.cpp:221">
    <![LOG[Found local location 'http://SCCMSRV-02.snba.be/SMS_DP_SMSPKG$/ZAV00114']LOG]!><time="07:29:28.001-120" date="04-17-2014" component="ccmsetup" context="" type="0" thread="2724" file="siteinfo.cpp:351">
    <![LOG[Discovered 1 local DP locations.]LOG]!><time="07:29:28.002-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:11153">
    <![LOG[PROPFIND 'http://SCCMSRV-02.snba.be/SMS_DP_SMSPKG$/ZAV00114']LOG]!><time="07:29:28.002-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="httphelper.cpp:807">
    <![LOG[Using DP location http://SCCMSRV-02.snba.be/SMS_DP_SMSPKG$/ZAV00114]LOG]!><time="07:29:28.009-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:11395">
    <![LOG[GET 'http://SCCMSRV-02.snba.be/SMS_DP_SMSPKG$/ZAV00114/ccmsetup.cab']LOG]!><time="07:29:28.009-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="httphelper.cpp:807">
    <![LOG[C:\Windows\ccmsetup\ccmsetup.cab is Microsoft trusted.]LOG]!><time="07:29:28.090-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="util.cpp:1465">
    <![LOG[Successfully extracted manifest file C:\Windows\ccmsetup\ccmsetup.xml from file C:\Windows\ccmsetup\ccmsetup.cab.]LOG]!><time="07:29:28.101-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:6670">
    <![LOG[Retrieved client version '5.00.7958.1000' and minimum assignable site version '5.00.7845.1000' from manifest]LOG]!><time="07:29:28.104-120" date="04-17-2014" component="ccmsetup" context="" type="0" thread="2724" file="siteinfo.cpp:668">
    <![LOG[Checking compatibility of site version '5.00.7958.1000', expect newer than '5.00.7845.1000']LOG]!><time="07:29:28.104-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="siteinfo.cpp:703">
    <![LOG[Site version '5.00.7958.1000' is compatible. Client deployment will continue.]LOG]!><time="07:29:28.104-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="siteinfo.cpp:726">
    <![LOG[Location 'http://SCCMSRV-02.snba.be/SMS_DP_SMSPKG$/ZAV00114' passed site version check.]LOG]!><time="07:29:28.104-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:6809">
    <![LOG[Loading manifest file: C:\Windows\ccmsetup\ccmsetup.xml]LOG]!><time="07:29:28.104-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:153">
    <![LOG[Successfully loaded ccmsetup manifest file.]LOG]!><time="07:29:28.106-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:171">
    <![LOG[Checking if manifest version '5.00.7958.1000' is newer than the ccmsetup version '5.0.7958.1000']LOG]!><time="07:29:28.106-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:10475">
    <![LOG[Running from temp downloaded folder or manifest is not newer than ccmsetup.]LOG]!><time="07:29:28.107-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:2213">
    <![LOG[Item 'i386/vcredist_x86.exe' is applicable. Add to the list.]LOG]!><time="07:29:28.212-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:343">
    <![LOG[Item 'x64/vcredist_x64.exe' is applicable. Add to the list.]LOG]!><time="07:29:28.269-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:343">
    <![LOG[Item 'i386/vc50727_x86.exe' is not applicable.]LOG]!><time="07:29:28.269-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:348">
    <![LOG[Item 'x64/vc50727_x64.exe' is applicable. Add to the list.]LOG]!><time="07:29:28.325-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:343">
    <![LOG[Item 'i386/WindowsUpdateAgent30-x86.exe' is not applicable.]LOG]!><time="07:29:28.325-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:348">
    <![LOG[Item 'x64/WindowsUpdateAgent30-x64.exe' is applicable. Add to the list.]LOG]!><time="07:29:28.380-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:343">
    <![LOG[Item 'i386/msxml6.msi' is not applicable.]LOG]!><time="07:29:28.380-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:348">
    <![LOG[Item 'x64/msxml6_x64.msi' is applicable. Add to the list.]LOG]!><time="07:29:28.433-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:343">
    <![LOG[Item 'i386/msrdcoob_x86.exe' is not applicable.]LOG]!><time="07:29:28.433-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:348">
    <![LOG[Item 'x64/msrdcoob_amd64.exe' is not applicable.]LOG]!><time="07:29:28.434-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:348">
    <![LOG[Item 'pkgmgr.exe' is not applicable.]LOG]!><time="07:29:28.434-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:348">
    <![LOG[Item 'dism.exe' is applicable. Add to the list.]LOG]!><time="07:29:28.504-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:343">
    <![LOG[Item 'wimgapi.msi' is not applicable.]LOG]!><time="07:29:28.504-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:348">
    <![LOG[Item 'i386/MicrosoftPolicyPlatformSetup.msi' is not applicable.]LOG]!><time="07:29:28.504-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:348">
    <![LOG[Item 'x64/MicrosoftPolicyPlatformSetup.msi' is applicable. Add to the list.]LOG]!><time="07:29:28.560-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:343">
    <![LOG[Item 'i386/WindowsFirewallConfigurationProvider.msi' is not applicable.]LOG]!><time="07:29:28.561-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:348">
    <![LOG[Item 'x64/WindowsFirewallConfigurationProvider.msi' is applicable. Add to the list.]LOG]!><time="07:29:28.615-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:343">
    <![LOG[Item 'i386/Silverlight.exe' is applicable. Add to the list.]LOG]!><time="07:29:28.670-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:343">
    <![LOG[Item 'i386/wic_x86_enu.exe' is not applicable.]LOG]!><time="07:29:28.670-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:348">
    <![LOG[Item 'x64/wic_x64_enu.exe' is not applicable.]LOG]!><time="07:29:28.670-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:348">
    <![LOG[Item 'i386/dotNetFx40_Client_x86_x64.exe' is applicable. Add to the list.]LOG]!><time="07:29:28.723-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:343">
    <![LOG[Item 'SCEPInstall.exe' is applicable. Add to the list.]LOG]!><time="07:29:28.779-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:343">
    <![LOG[Item 'i386/client.msi' is not applicable.]LOG]!><time="07:29:28.779-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:348">
    <![LOG[Item 'x64/client.msi' is applicable. Add to the list.]LOG]!><time="07:29:28.841-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:343">
    <![LOG[Default CSP is Microsoft Enhanced RSA and AES Cryptographic Provider]LOG]!><time="07:29:28.842-120" date="04-17-2014" component="ccmsetup" context="" type="0" thread="2724" file="ccmutillib.cpp:1363">
    <![LOG[Default CSP Type is 24]LOG]!><time="07:29:28.842-120" date="04-17-2014" component="ccmsetup" context="" type="0" thread="2724" file="ccmutillib.cpp:1364">
    <![LOG[Discovering whether item 'i386/vcredist_x86.exe' exists.]LOG]!><time="07:29:28.842-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:553">
    <![LOG[Detected item 'i386/vcredist_x86.exe']LOG]!><time="07:29:28.842-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:614">
    <![LOG[Discovering whether item 'x64/vcredist_x64.exe' exists.]LOG]!><time="07:29:28.842-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:553">
    <![LOG[Detected item 'x64/vcredist_x64.exe']LOG]!><time="07:29:28.843-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:614">
    <![LOG[Discovering whether item 'x64/vc50727_x64.exe' exists.]LOG]!><time="07:29:28.843-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:553">
    <![LOG[Upgrade code '{A8D19029-8E5C-4E22-8011-48070F9E796E}': product = '{ad8a2fa1-06e7-4b0d-927d-6e54b3d31028}', installed = 1, version = 8.0.61000]LOG]!><time="07:29:28.843-120" date="04-17-2014" component="ccmsetup" context="" type="0" thread="2724" file="msiutil.cpp:1273">
    <![LOG[Checking '{A8D19029-8E5C-4E22-8011-48070F9E796E}' version '8.0.61000' expecting >= '8.0.61000'.]LOG]!><time="07:29:28.844-120" date="04-17-2014" component="ccmsetup" context="" type="0" thread="2724" file="manifest.cpp:873">
    <![LOG[Detected item 'x64/vc50727_x64.exe']LOG]!><time="07:29:28.844-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:614">
    <![LOG[Discovering whether item 'x64/WindowsUpdateAgent30-x64.exe' exists.]LOG]!><time="07:29:28.844-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:553">
    <![LOG[Checking file 'C:\Windows\system32\wuapi.dll' version '7.6.7600.0256' expecting >= '7.4.7600.226'.]LOG]!><time="07:29:28.846-120" date="04-17-2014" component="ccmsetup" context="" type="0" thread="2724" file="manifest.cpp:1278">
    <![LOG[Detected item 'x64/WindowsUpdateAgent30-x64.exe']LOG]!><time="07:29:28.846-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:614">
    <![LOG[Discovering whether item 'x64/msxml6_x64.msi' exists.]LOG]!><time="07:29:28.846-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:553">
    <![LOG[Checking file 'C:\Windows\system32\msxml6.dll' version '6.30.7601.17857' expecting >= '6.10.1129.0'.]LOG]!><time="07:29:28.847-120" date="04-17-2014" component="ccmsetup" context="" type="0" thread="2724" file="manifest.cpp:1278">
    <![LOG[Detected item 'x64/msxml6_x64.msi']LOG]!><time="07:29:28.847-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:614">
    <![LOG[Discovering whether item 'dism.exe' exists.]LOG]!><time="07:29:28.847-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:553">
    <![LOG[File 'C:\Windows\system32\msrdc.dll' exists. Discovery passed]LOG]!><time="07:29:28.848-120" date="04-17-2014" component="ccmsetup" context="" type="0" thread="2724" file="manifest.cpp:1250">
    <![LOG[Detected item 'dism.exe']LOG]!><time="07:29:28.848-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:614">
    <![LOG[Discovering whether item 'x64/MicrosoftPolicyPlatformSetup.msi' exists.]LOG]!><time="07:29:28.848-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:553">
    <![LOG[Upgrade code '{19B9818B-7432-49E9-BC02-B126025EE235}': product = '{90D295B8-BA08-487E-B904-0E624209A410}', installed = 1, version = 1.2.3602.0]LOG]!><time="07:29:28.849-120" date="04-17-2014" component="ccmsetup" context="" type="0" thread="2724" file="msiutil.cpp:1273">
    <![LOG[Checking '{19B9818B-7432-49E9-BC02-B126025EE235}' version '1.2.3602.0' expecting >= '1.2.3602.0'.]LOG]!><time="07:29:28.849-120" date="04-17-2014" component="ccmsetup" context="" type="0" thread="2724" file="manifest.cpp:873">
    <![LOG[Detected item 'x64/MicrosoftPolicyPlatformSetup.msi']LOG]!><time="07:29:28.849-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:614">
    <![LOG[Discovering whether item 'x64/WindowsFirewallConfigurationProvider.msi' exists.]LOG]!><time="07:29:28.849-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:553">
    <![LOG[Validated file 'C:\Windows\ccmsetup\WindowsFirewallConfigurationProvider.msi' hash '3BF0651FD4A01170925CEF694468D4EF6F64D76FD3413DEBD14CB8DE019AA10E']LOG]!><time="07:29:28.868-120" date="04-17-2014" component="ccmsetup" context="" type="0" thread="2724" file="util.cpp:2609">
    <![LOG[File 'C:\Windows\ccmsetup\WindowsFirewallConfigurationProvider.msi' exists. Discovery passed]LOG]!><time="07:29:28.868-120" date="04-17-2014" component="ccmsetup" context="" type="0" thread="2724" file="manifest.cpp:1250">
    <![LOG[Detected item 'x64/WindowsFirewallConfigurationProvider.msi']LOG]!><time="07:29:28.868-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:614">
    <![LOG[Discovering whether item 'i386/Silverlight.exe' exists.]LOG]!><time="07:29:28.869-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:553">
    <![LOG[32-bit Hive selected]LOG]!><time="07:29:28.869-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:948">
    <![LOG[Detected item 'i386/Silverlight.exe']LOG]!><time="07:29:28.869-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:614">
    <![LOG[Discovering whether item 'i386/dotNetFx40_Client_x86_x64.exe' exists.]LOG]!><time="07:29:28.869-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:553">
    <![LOG[Detected item 'i386/dotNetFx40_Client_x86_x64.exe']LOG]!><time="07:29:28.869-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:614">
    <![LOG[Discovering whether item 'SCEPInstall.exe' exists.]LOG]!><time="07:29:28.870-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:553">
    <![LOG[Validated file 'C:\Windows\ccmsetup\SCEPInstall.exe' hash 'FDDB17A148D8358B5BFBF63BBB3CDE902DCE807366081FE16B8E6042DCB47C71']LOG]!><time="07:29:29.649-120" date="04-17-2014" component="ccmsetup" context="" type="0" thread="2724" file="util.cpp:2609">
    <![LOG[Checking file 'C:\Windows\ccmsetup\SCEPInstall.exe' version '4.3.0220.0000' expecting >= '4.3.220.0'.]LOG]!><time="07:29:29.651-120" date="04-17-2014" component="ccmsetup" context="" type="0" thread="2724" file="manifest.cpp:1278">
    <![LOG[Detected item 'SCEPInstall.exe']LOG]!><time="07:29:29.651-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:614">
    <![LOG[Discovering whether item 'x64/client.msi' exists.]LOG]!><time="07:29:29.651-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:553">
    <![LOG[Item x64/client.msi has not been installed yet. Put to pending install list.]LOG]!><time="07:29:29.651-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="manifest.cpp:609">
    <![LOG[PROPFIND 'http://SCCMSRV-02.snba.be/SMS_DP_SMSPKG$/ZAV00114']LOG]!><time="07:29:29.651-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="httphelper.cpp:807">
    <![LOG[No client patches are detected.]LOG]!><time="07:29:29.658-120" date="04-17-2014" component="ccmsetup" context="" type="0" thread="2724" file="ccmsetup.cpp:1736">
    <![LOG[PROPFIND 'http://SCCMSRV-02.snba.be/SMS_DP_SMSPKG$/ZAV00114']LOG]!><time="07:29:29.658-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="httphelper.cpp:807">
    <![LOG[No client language packs are detected.]LOG]!><time="07:29:29.664-120" date="04-17-2014" component="ccmsetup" context="" type="0" thread="2724" file="ccmsetup.cpp:1777">
    <![LOG[Searching for available transform]LOG]!><time="07:29:29.665-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:1807">
    <![LOG[PROPFIND 'http://SCCMSRV-02.snba.be/SMS_DP_SMSPKG$/ZAV00114']LOG]!><time="07:29:29.665-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="httphelper.cpp:807">
    <![LOG[No transform available for this locale. Installation will proceed with no transformation.]LOG]!><time="07:29:29.671-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:1892">
    <![LOG[File 'C:\Windows\ccmsetup\client.msi' doesn't exist.]LOG]!><time="07:29:29.672-120" date="04-17-2014" component="ccmsetup" context="" type="2" thread="2724" file="util.cpp:2595">
    <![LOG[Using branch cache option.]LOG]!><time="07:29:29.690-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:6443">
    <![LOG[Adding file 'http://SCCMSRV-02.snba.be:80/SMS_DP_SMSPKG$/ZAV00114/x64/client.msi' to BITS job, saving as 'C:\Windows\ccmsetup\client.msi'.]LOG]!><time="07:29:29.690-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:6474">
    <![LOG[Starting BITS download for client deployment files.]LOG]!><time="07:29:29.698-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:6487">
    <![LOG[Download Update: 32616448 out of 32616448 bytes transferred.]LOG]!><time="07:29:30.700-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:6578">
    <![LOG[Successfully completed BITS download for client deployment files.]LOG]!><time="07:29:32.701-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:6536">
    <![LOG[Retrieved client version '5.00.7958.1000' and minimum assignable site version '5.00.7845.1000' from client package]LOG]!><time="07:29:34.020-120" date="04-17-2014" component="ccmsetup" context="" type="0" thread="2724" file="siteinfo.cpp:678">
    <![LOG[Checking compatibility of site version '5.00.7958.1000', expect newer than '5.00.7845.1000']LOG]!><time="07:29:34.020-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="siteinfo.cpp:703">
    <![LOG[Site version '5.00.7958.1000' is compatible. Client deployment will continue.]LOG]!><time="07:29:34.020-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="siteinfo.cpp:726">
    <![LOG[Successfully downloaded client files via BITS.]LOG]!><time="07:29:34.020-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:1396">
    <![LOG[Validated file 'C:\Windows\ccmsetup\client.msi' hash 'A5732CE24F2B1545E9FBA458971E0A5504093E0F743CA9E8BD9C047582902878']LOG]!><time="07:29:35.032-120" date="04-17-2014" component="ccmsetup" context="" type="0" thread="2724" file="util.cpp:2609">
    <![LOG[An MP exists on this machine.]LOG]!><time="07:29:35.048-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="msiutil.cpp:565">
    <![LOG[The client version 5.00.7958.1000 does not match the MP version 5.00.7804.1000. The client will not be installed.]LOG]!><time="07:29:35.048-120" date="04-17-2014" component="ccmsetup" context="" type="3" thread="2724" file="msiutil.cpp:583">
    <![LOG[Sending Fallback Status Point message to 'SCCMSRV-02', STATEID='318'.]LOG]!><time="07:29:35.049-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="2724" file="ccmsetup.cpp:9756">
    <![LOG[Failed to get client version for sending messages to FSP. Error 0x80041010]LOG]!><time="07:29:35.054-120" date="04-17-2014" component="ccmsetup" context="" type="2" thread="2724" file="ccmsetup.cpp:9838">
    <![LOG[Params to send FSP message '5.0.7958.1000 Deployment ']LOG]!><time="07:29:35.054-120" date="04-17-2014" component="ccmsetup" context="" type="0" thread="2724" file="ccmsetup.cpp:9887">
    <![LOG[State message with TopicType 800 and TopicId {5FF017B3-AF3F-4D38-B037-0A7EE1F479C5} has been sent to the FSP]LOG]!><time="07:29:35.075-120" date="04-17-2014" component="FSPStateMessage" context="" type="1" thread="2724" file="fsputillib.cpp:752">
    <![LOG[InstallFromManifest failed 0x80004005]LOG]!><time="07:29:35.084-120" date="04-17-2014" component="ccmsetup" context="" type="3" thread="2724" file="ccmsetup.cpp:7202">
    <![LOG[CcmSetup failed with error code 0x80004005]LOG]!><time="07:29:35.086-120" date="04-17-2014" component="ccmsetup" context="" type="1" thread="7532" file="ccmsetup.cpp:10879">
    I hope someone can help me with this.
    Kind regards

    I agree with Idan. You can easily remove the Management Point Site System role and add it again with no adverse effect. This should solve your problem.
    Gerry Hampson | Blog:
    www.gerryhampsoncm.blogspot.ie | LinkedIn:
    Gerry Hampson | Twitter:
    @gerryhampson

  • SCCM 2012 SQL Server Report Builder Error

    I am trying to create a report with SQL query on SCCM 2012. I get the below error.
    TITLE: Microsoft SQL Server Report Builder
    An error occurred while executing the query.
    The SELECT permission was denied on the object 'v_GS_OPERATING_SYSTEM', database 'CM_C01', schema 'dbo'.
    ADDITIONAL INFORMATION:
    The SELECT permission was denied on the object 'v_GS_OPERATING_SYSTEM', database 'CM_C01', schema 'dbo'. (Microsoft SQL Server, Error: 229)
    For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft%20SQL%20Server&ProdVer=11.00.3000&EvtSrc=MSSQLServer&EvtID=229&LinkId=20476
    BUTTONS:
    OK

    Does your account have accesses within SQL? Bases on the error message I'm guessing not.
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

  • SCCM 2012 R2 Upgrade Error - Fails on SQL

    Greetings,
    I am currently working to upgrade our current SCCM 2012 SP1 CU3 servers to SCCM 2012 R2.  i have ran all the pre-checks and all comes through without error.  when doing the upgrade the following errors appear and as such it will not move forward.
     can anyone please assist on this one?  I have searched and searched but not found anything that will point me towards a resolve.
    Thanks for the help and i really hope this will be an easy fix
    JAK

    Still looking for any sort of assistance on this one.  not sure if the above capture was enough to give any insight so i am attaching the complete log.  was going through multiple windows so copy past was not working, please see below...
    TestDBUpgrade log:
    INFO: SQL Connection succeeded. Connection: SITE.DB.CA CM_CS1, Type: Secure Configuration Manager Setup 04/02/2014 3:01:16 PM 3080 (0x0C08)
    INFO: Running SQL Server test query. Configuration Manager Setup 04/02/2014 3:01:16 PM 3080 (0x0C08)
    INFO: SQL Connection succeeded. Connection: SITE.DB.CA MASTER, Type: Secure Configuration Manager Setup 04/02/2014 3:01:16 PM 3080 (0x0C08)
    INFO: SQL Server Test query succeeded. Configuration Manager Setup 04/02/2014 3:01:16 PM 3080 (0x0C08)
    ERROR: Failed to get Service Pack version for SQL Server <SITE.DB.CA>. Configuration Manager Setup 04/02/2014 3:01:16 PM 3080 (0x0C08)
    INFO: SQL Connection succeeded. Connection: SITE.DB.CA CM_CS1, Type: Unsecure Configuration Manager Setup 04/02/2014 3:01:17 PM 3080 (0x0C08)
    INFO: SQL Connection succeeded. Connection: SITE.DB.CA CM_CS1, Type: Secure Configuration Manager Setup 04/02/2014 3:01:17 PM 3080 (0x0C08)
    INFO: The size of the existing site database is 5.0 gigabytes. Setup may take some time to upgrade the database. Configuration Manager Setup 04/02/2014 3:01:17 PM 3080 (0x0C08)
    INFO: SQL Connection succeeded. Connection: SITE.DB.CA CM_CS1, Type: Secure Configuration Manager Setup 04/02/2014 3:01:22 PM 3080 (0x0C08)
    INFO: SiteCode for the specified database is CS1 Configuration Manager Setup 04/02/2014 3:01:22 PM 3080 (0x0C08)
    INFO: Starting database upgrade test using CM_CS1 database, on the SITE.DB.CA server. Configuration Manager Setup 04/02/2014 3:01:22 PM 3080 (0x0C08)
    INFO: SQL Connection succeeded. Connection: SITE.DB.CA CM_CS1, Type: Secure Configuration Manager Setup 04/02/2014 3:01:22 PM 3080 (0x0C08)
    INFO: Testing database this SiteNumber: 0. Configuration Manager Setup 04/02/2014 3:01:22 PM 3080 (0x0C08)
    INFO: Testing database setup type: 8, top level: 1. Configuration Manager Setup 04/02/2014 3:01:22 PM 3080 (0x0C08)
    INFO: Site server of the Database is SITE.SERVER.CA Configuration Manager Setup 04/02/2014 3:01:22 PM 3080 (0x0C08)
    INFO: Site code of the Database is CS1 Configuration Manager Setup 04/02/2014 3:01:22 PM 3080 (0x0C08)
    INFO: Build number from the database is 5.00.7804.1000 Configuration Manager Setup 04/02/2014 3:01:22 PM 3080 (0x0C08)
    INFO: Upgrading SQL Server database... Configuration Manager Setup 04/02/2014 3:01:33 PM 3080 (0x0C08)
    INFO: SQL Connection succeeded. Connection: SITE.DB.CA CM_CS1, Type: Secure Configuration Manager Setup 04/02/2014 3:01:33 PM 3080 (0x0C08)
    INFO: The database compatibility level for CM_CS1 is 110 Configuration Manager Setup 04/02/2014 3:01:33 PM 3080 (0x0C08)
    INFO: Set Database options: starting... Configuration Manager Setup 04/02/2014 3:01:33 PM 3080 (0x0C08)
    INFO: SQL Connection succeeded. Connection: SITE.DB.CA MASTER, Type: Secure Configuration Manager Setup 04/02/2014 3:01:33 PM 3080 (0x0C08)
    INFO: Database options: connected... Configuration Manager Setup 04/02/2014 3:01:33 PM 3080 (0x0C08)
    INFO: Successfully set database to SINGLE_USER mode Configuration Manager Setup 04/02/2014 3:01:36 PM 3080 (0x0C08)
    INFO: Successfully set database owner to sysadmin. Configuration Manager Setup 04/02/2014 3:01:36 PM 3080 (0x0C08)
    INFO: Successfully set TRUSTWORTHY ON Configuration Manager Setup 04/02/2014 3:01:36 PM 3080 (0x0C08)
    INFO: Successfully configured [clr enabled]. Configuration Manager Setup 04/02/2014 3:01:36 PM 3080 (0x0C08)
    INFO: Successfully set Recursive triggers to CM_CS1. Configuration Manager Setup 04/02/2014 3:01:36 PM 3080 (0x0C08)
    INFO: Successfully set checkpoint truncation. Configuration Manager Setup 04/02/2014 3:01:36 PM 3080 (0x0C08)
    INFO: Configuring SQL Server service broker... Configuration Manager Setup 04/02/2014 3:01:36 PM 3080 (0x0C08)
    INFO: Successfully enabled service broker. Configuration Manager Setup 04/02/2014 3:01:36 PM 3080 (0x0C08)
    INFO: Successfully set HONOR_BROKER_PRIORITY. Configuration Manager Setup 04/02/2014 3:01:36 PM 3080 (0x0C08)
    INFO: Successfully set CHANGE_TRACKING=ON. Configuration Manager Setup 04/02/2014 3:01:36 PM 3080 (0x0C08)
    INFO: Successfully set ALLOW_SNAPSHOT_ISOLATION ON. Configuration Manager Setup 04/02/2014 3:01:36 PM 3080 (0x0C08)
    INFO: Successfully set READ_COMMITTED_SNAPSHOT ON. Configuration Manager Setup 04/02/2014 3:01:36 PM 3080 (0x0C08)
    INFO: Successfully configured Max text replication size. Configuration Manager Setup 04/02/2014 3:01:36 PM 3080 (0x0C08)
    INFO: Successfully set default settings Configuration Manager Setup 04/02/2014 3:01:36 PM 3080 (0x0C08)
    INFO: Successfully enabled MULTI_USER Configuration Manager Setup 04/02/2014 3:01:36 PM 3080 (0x0C08)
    INFO: SQL Connection succeeded. Connection: SITE.DB.CA CM_CS1, Type: Secure Configuration Manager Setup 04/02/2014 3:01:36 PM 3080 (0x0C08)
    INFO: Set Database options: end. Configuration Manager Setup 04/02/2014 3:01:37 PM 3080 (0x0C08)
    INFO: Database options set. Configuration Manager Setup 04/02/2014 3:01:37 PM 3080 (0x0C08)
    INFO: SQL Connection succeeded. Connection: SITE.DB.CA CM_CS1, Type: Secure Configuration Manager Setup 04/02/2014 3:01:38 PM 3080 (0x0C08)
    INFO: Creating SQL Server database roles and schemas. Configuration Manager Setup 04/02/2014 3:01:38 PM 3080 (0x0C08)
    INFO: Creating smsdbrole_MP. Configuration Manager Setup 04/02/2014 3:01:38 PM 3080 (0x0C08)
    INFO: Creating smsdbrole_MCS. Configuration Manager Setup 04/02/2014 3:01:38 PM 3080 (0x0C08)
    INFO: Creating smsdbrole_DMP. Configuration Manager Setup 04/02/2014 3:01:38 PM 3080 (0x0C08)
    INFO: Creating smsdbrole_siteprovider. Configuration Manager Setup 04/02/2014 3:01:38 PM 3080 (0x0C08)
    INFO: Creating smsdbrole_siteserver. Configuration Manager Setup 04/02/2014 3:01:38 PM 3080 (0x0C08)
    INFO: Creating smsdbrole_AMTSP. Configuration Manager Setup 04/02/2014 3:01:38 PM 3080 (0x0C08)
    INFO: Creating smsdbrole_AIUS. Configuration Manager Setup 04/02/2014 3:01:38 PM 3080 (0x0C08)
    INFO: Creating smsdbrole_AITool. Configuration Manager Setup 04/02/2014 3:01:38 PM 3080 (0x0C08)
    INFO: Creating smsdbrole_extract. Configuration Manager Setup 04/02/2014 3:01:38 PM 3080 (0x0C08)
    INFO: Creating smsdbrole_WebPortal. Configuration Manager Setup 04/02/2014 3:01:38 PM 3080 (0x0C08)
    INFO: Creating smsdbrole_EnrollSvr. Configuration Manager Setup 04/02/2014 3:01:38 PM 3080 (0x0C08)
    INFO: Creating smsdbrole_DViewAccess. Configuration Manager Setup 04/02/2014 3:01:38 PM 3080 (0x0C08)
    INFO: Creating smsdbrole_SUP. Configuration Manager Setup 04/02/2014 3:01:38 PM 3080 (0x0C08)
    INFO: Creating smsdbrole_CRP. Configuration Manager Setup 04/02/2014 3:01:38 PM 3080 (0x0C08)
    INFO: Creating smsschm_users. Configuration Manager Setup 04/02/2014 3:01:38 PM 3080 (0x0C08)
    INFO: Creating smsdbrole_DmpConnector. Configuration Manager Setup 04/02/2014 3:01:38 PM 3080 (0x0C08)
    INFO: Creating smsdbrole_HMSUser. Configuration Manager Setup 04/02/2014 3:01:38 PM 3080 (0x0C08)
    INFO: Creating smsdbuser_ReadOnly. Configuration Manager Setup 04/02/2014 3:01:38 PM 3080 (0x0C08)
    INFO: Creating smsdbuser_ReadWrite. Configuration Manager Setup 04/02/2014 3:01:38 PM 3080 (0x0C08)
    INFO: Creating smsdbuser_ReportSchema. Configuration Manager Setup 04/02/2014 3:01:38 PM 3080 (0x0C08)
    INFO: Beginning SQL Server script execution. Configuration Manager Setup 04/02/2014 3:01:51 PM 3080 (0x0C08)
    INFO: Executing PreUpgrade Cleanup scripts. Configuration Manager Setup 04/02/2014 3:01:51 PM 3080 (0x0C08)
    INFO: Executing DropForeignKeys Configuration Manager Setup 04/02/2014 3:02:13 PM 3080 (0x0C08)
    INFO: SQL Connection succeeded. Connection: SITE.DB.CA CM_CS1, Type: Secure Configuration Manager Setup 04/02/2014 3:02:23 PM 3080 (0x0C08)
    INFO: Executing DropAllCLRObjects Configuration Manager Setup 04/02/2014 3:02:23 PM 3080 (0x0C08)
    DropAllCLRObjects Configuration Manager Setup 04/02/2014 3:02:23 PM 3080 (0x0C08)
    INFO: Executing DropAllOjects for Service Portal Configuration Manager Setup 04/02/2014 3:02:38 PM 3080 (0x0C08)
    INFO: Drop SqlObjs Round: 0 start. Configuration Manager Setup 04/02/2014 3:02:38 PM 3080 (0x0C08)
    INFO: Drop SqlObjs Round: 0 end, success: 52, Failed: 0 Configuration Manager Setup 04/02/2014 3:02:43 PM 3080 (0x0C08)
    INFO: Executing DropAllOjects Configuration Manager Setup 04/02/2014 3:02:43 PM 3080 (0x0C08)
    INFO: Drop SqlObjs Round: 0 start. Configuration Manager Setup 04/02/2014 3:02:43 PM 3080 (0x0C08)
    INFO: Drop SqlObj: alertvariablechangeinitiatorservice Configuration Manager Setup 04/02/2014 3:03:25 PM 3080 (0x0C08)
    INFO: Drop SqlObj: alertvariablechangetargetservice Configuration Manager Setup 04/02/2014 3:03:26 PM 3080 (0x0C08)
    INFO: DROP MESSAGE TYPE: <declare @VarName nvarchar(128) ~declare @VarSql nvarchar(400) ~select @VarName = [name] from sys.service_message_types where lower([name]) = lower(N'alertvariablechangemessage') ~if @VarName IS NOT NULL ~begin ~   set
    @VarSql = N'DROP MESSAGE TYPE ' + QUOTENAME(@VarName, N'[') ~   execute(@VarSql) ~end > Configuration Manager Setup 04/02/2014 3:03:26 PM 3080 (0x0C08)
    INFO: DROP MESSAGE TYPE: <declare @VarName nvarchar(128) ~declare @VarSql nvarchar(400) ~select @VarName = [name] from sys.service_message_types where lower([name]) = lower(N'alertvariablechangeackmessage') ~if @VarName IS NOT NULL ~begin ~   set
    @VarSql = N'DROP MESSAGE TYPE ' + QUOTENAME(@VarName, N'[') ~   execute(@VarSql) ~end > Configuration Manager Setup 04/02/2014 3:03:26 PM 3080 (0x0C08)
    INFO: Drop SqlObjs Round: 0 end, success: 3049, Failed: 0 Configuration Manager Setup 04/02/2014 3:03:34 PM 3080 (0x0C08)
    INFO: Executing UnBindXMLSchemas Configuration Manager Setup 04/02/2014 3:03:34 PM 3080 (0x0C08)
    INFO: Dropping objects from csaObject Configuration Manager Setup 04/02/2014 3:03:35 PM 3080 (0x0C08)
    INFO: Executing the preupgrade SQL Server scripts. Configuration Manager Setup 04/02/2014 3:03:37 PM 3080 (0x0C08)
    INFO: Upgrade cleanup end Configuration Manager Setup 04/02/2014 3:03:56 PM 3080 (0x0C08)
    INFO: Creating SQL Server tables for the Configuration Manager database... Configuration Manager Setup 04/02/2014 3:03:56 PM 3080 (0x0C08)
    *** create table dbo.Add_Remove_Programs_64_DATA (MachineID int  NOT NULL ,InstanceKey int  NOT NULL ,RevisionID int  NOT NULL ,AgentID int  NULL ,TimeKey datetime  NOT NULL ,rowversion timestamp NOT NULL ,ProdID00 nvarchar(255) NULL
    ,DisplayName00 nvarchar(255) NULL ,InstallDate00 nvarchar(255) NULL ,Publisher00 nvarchar(255) NULL ,Version00 nvarchar(255) NULL ) Configuration Manager Setup 04/02/2014 3:03:58 PM 3080 (0x0C08)
    *** [42S01][2714][Microsoft][SQL Server Native Client 11.0][SQL Server]There is already an object named 'Add_Remove_Programs_64_DATA' in the database. Configuration Manager Setup 04/02/2014 3:03:58 PM 3080 (0x0C08)
    ERROR: SQL Server error: [42S01][2714][Microsoft][SQL Server Native Client 11.0][SQL Server]There is already an object named 'Add_Remove_Programs_64_DATA' in the database. Configuration Manager Setup 04/02/2014 3:03:58 PM 3080 (0x0C08)
    CSqlSchema::CreateTable - error in CSql->Execute() create table dbo.Add_Remove_Programs_64_DATA (MachineID int  NOT NULL ,InstanceKey int  NOT NULL ,RevisionID int  NOT NULL ,AgentID int  NULL ,TimeKey datetime  NOT NULL ,rowversion
    timestamp NOT NULL ,ProdID00 nvarchar(255) NULL ,DisplayName00 nvarchar(255) NULL ,InstallDate00 nvarchar(255) NULL ,Publisher00 nvarchar(255) NULL ,Version00 nvarchar(255) NULL ) Configuration Manager Setup 04/02/2014 3:03:58 PM 3080 (0x0C08)
    ERROR: Failed to execute SQL Server script: Creating table Add_Remove_Programs_64_DATA Configuration Manager Setup 04/02/2014 3:03:58 PM 3080 (0x0C08)
    ERROR: SQL Server error: <> Configuration Manager Setup 04/02/2014 3:03:58 PM 3080 (0x0C08)
    <02-04-2014 15:04:09> Failed to create process of SetupWpf.exe.   01/01/1601 12:00:00 AM 1993431915 (0x76D15B6B)
    JAK

  • SCCM 2012 Install :An error has occurred while attempting to download or verify required pre....

    This is not the first time I am installing SCCM 2012 :) , however stuck at this one for some time now.
    I have a lab where SCCM 2012 pre-reqs were downloaded during setup and SCCM 2012 has been installed fine.
    We are doing another install for this client however SCCM download fails as ISA blocks it. Therefore we are trying to use the old setup files which were previously downloaded. However, this does not work (Files under e:\SCCM...). The log still refers to
    downloading the file from the internet.
    Here's the log
    =========
    <07-25-2012 00:57:28> *********************************************
    <07-25-2012 00:57:28> ***** ConfigMgr 2012 Setup Bootstrapper *****
    <07-25-2012 00:57:28> *********************************************
    <07-25-2012 00:57:28> Commandline:
    <07-25-2012 00:57:28> "D:\SMSSETUP\BIN\X64\SetupWpf.exe"
    <07-25-2012 00:57:28> INFO: Checking dotnet framework versions...
    <07-25-2012 00:57:28> INFO: Dotnet 3.5 installed
    <07-25-2012 00:57:28> Starting SetupWpf.exe...
    <07-25-2012 00:57:39> *********************************************
    <07-25-2012 00:57:39> ***** ConfigMgr 2012 Setup Bootstrapper *****
    <07-25-2012 00:57:39> *********************************************
    <07-25-2012 00:57:39> Commandline:
    <07-25-2012 00:57:39> "D:\SMSSETUP\BIN\X64\SetupWpf.exe"
    <07-25-2012 00:57:39> INFO: Checking dotnet framework versions...
    <07-25-2012 00:57:39> INFO: Dotnet 3.5 installed
    <07-25-2012 00:57:39> Starting SetupWpf.exe...
    <07-25-2012 00:57:47> Failed to create process of SetupWpf.exe.
    INFO: Attempting to load resource DLL...  $$<Configuration Manager Setup><07-25-2012 00:58:34.979+420><thread=2320 (0x910)>
    INFO: setupdl.exe: Start  $$<Configuration Manager Setup><07-25-2012 00:58:34.981+420><thread=2320 (0x910)>
    INFO: Downloading files to e:\SCCMPreReqs  $$<Configuration Manager Setup><07-25-2012 00:58:35.000+420><thread=1752 (0x6D8)>
    INFO: Extracted file C:\Users\ADMINI~1.Com\AppData\Local\Temp\2\ConfigMgr.Manifest.xml  $$<Configuration Manager Setup><07-25-2012 00:58:51.749+420><thread=1752 (0x6D8)>
    INFO: Processing file group "MSRDC"  $$<Configuration Manager Setup><07-25-2012 00:58:51.755+420><thread=1752 (0x6D8)>
    INFO: Processing file "msrdcoob.exe"  $$<Configuration Manager Setup><07-25-2012 00:58:51.756+420><thread=1752 (0x6D8)>
    INFO: File will be downloaded from
    http://go.microsoft.com/fwlink/?LinkId=95740.  $$<Configuration Manager Setup><07-25-2012 00:58:51.756+420><thread=1752 (0x6D8)>
    INFO: File for msrdcoob.exe [Microsoft Remote Differential Compression Library] will be copied with file name: msrdcoob_x86.exe.  $$<Configuration Manager Setup><07-25-2012 00:58:51.756+420><thread=1752 (0x6D8)>
    INFO: Processing file "msrdcoob.exe"  $$<Configuration Manager Setup><07-25-2012 00:58:51.756+420><thread=1752 (0x6D8)>
    INFO: File will be downloaded from
    http://go.microsoft.com/fwlink/?LinkId=95741.  $$<Configuration Manager Setup><07-25-2012 00:58:51.756+420><thread=1752 (0x6D8)>
    INFO: File for msrdcoob.exe [Microsoft Remote Differential Compression Library] will be copied with file name: msrdcoob_amd64.exe.  $$<Configuration Manager Setup><07-25-2012 00:58:51.756+420><thread=1752 (0x6D8)>
    INFO: Processing file group "WUA"  $$<Configuration Manager Setup><07-25-2012 00:58:51.757+420><thread=1752 (0x6D8)>
    INFO: Processing file "WindowsUpdateAgent30-x86.exe"  $$<Configuration Manager Setup><07-25-2012 00:58:51.757+420><thread=1752 (0x6D8)>
    INFO: File will be downloaded from
    http://go.microsoft.com/fwlink/?LinkID=158451.  $$<Configuration Manager Setup><07-25-2012 00:58:51.757+420><thread=1752 (0x6D8)>
    INFO: File for WindowsUpdateAgent30-x86.exe [Windows Update Agent 3.0] will be copied with file name: WindowsUpdateAgent30-x86.exe.  $$<Configuration Manager Setup><07-25-2012 00:58:51.757+420><thread=1752 (0x6D8)>
    INFO: Processing file "WindowsUpdateAgent30-x64.exe"  $$<Configuration Manager Setup><07-25-2012 00:58:51.757+420><thread=1752 (0x6D8)>
    INFO: File will be downloaded from
    http://go.microsoft.com/fwlink/?LinkID=158453.  $$<Configuration Manager Setup><07-25-2012 00:58:51.757+420><thread=1752 (0x6D8)>
    INFO: File for WindowsUpdateAgent30-x64.exe [Windows Update Agent 3.0] will be copied with file name: WindowsUpdateAgent30-x64.exe.  $$<Configuration Manager Setup><07-25-2012 00:58:51.758+420><thread=1752 (0x6D8)>
    INFO: Processing file group "Silverlight"  $$<Configuration Manager Setup><07-25-2012 00:58:51.758+420><thread=1752 (0x6D8)>
    INFO: Processing file "Silverlight.exe"  $$<Configuration Manager Setup><07-25-2012 00:58:51.758+420><thread=1752 (0x6D8)>
    INFO: File will be downloaded from
    http://go.microsoft.com/fwlink/?LinkId=196277.  $$<Configuration Manager Setup><07-25-2012 00:58:51.758+420><thread=1752 (0x6D8)>
    INFO: File for Silverlight.exe [Silverlight Runtime] will be copied with file name: Silverlight.exe.  $$<Configuration Manager Setup><07-25-2012 00:58:51.759+420><thread=1752 (0x6D8)>
    INFO: Processing file group "WIC"  $$<Configuration Manager Setup><07-25-2012 00:58:51.759+420><thread=1752 (0x6D8)>
    INFO: Processing file "wic_x86_enu.exe"  $$<Configuration Manager Setup><07-25-2012 00:58:51.759+420><thread=1752 (0x6D8)>
    INFO: File will be downloaded from
    http://go.microsoft.com/fwlink/?LinkId=234177.  $$<Configuration Manager Setup><07-25-2012 00:58:51.759+420><thread=1752 (0x6D8)>
    INFO: File for wic_x86_enu.exe [Windows Imaging Component 32 Bit] will be copied with file name: wic_x86_enu.exe.  $$<Configuration Manager Setup><07-25-2012 00:58:51.759+420><thread=1752 (0x6D8)>
    INFO: Processing file "wic_x64_enu.exe"  $$<Configuration Manager Setup><07-25-2012 00:58:51.759+420><thread=1752 (0x6D8)>
    INFO: File will be downloaded from
    http://go.microsoft.com/fwlink/?LinkID=234176.  $$<Configuration Manager Setup><07-25-2012 00:58:51.760+420><thread=1752 (0x6D8)>
    INFO: File for wic_x64_enu.exe [Windows Imaging Component 64 Bit] will be copied with file name: wic_x64_enu.exe.  $$<Configuration Manager Setup><07-25-2012 00:58:51.760+420><thread=1752 (0x6D8)>
    INFO: Processing file group "Dot_Net_Framework"  $$<Configuration Manager Setup><07-25-2012 00:58:51.760+420><thread=1752 (0x6D8)>
    INFO: Processing file "dotNetFx40_Client_x86_x64.exe"  $$<Configuration Manager Setup><07-25-2012 00:58:51.760+420><thread=1752 (0x6D8)>
    INFO: File will be downloaded from
    http://go.microsoft.com/fwlink/?LinkId=199236.  $$<Configuration Manager Setup><07-25-2012 00:58:51.760+420><thread=1752 (0x6D8)>
    INFO: File for dotNetFx40_Client_x86_x64.exe [.NET Framework Client Profile 4.0 RTM] will be copied with file name: dotNetFx40_Client_x86_x64.exe.  $$<Configuration Manager Setup><07-25-2012 00:58:51.760+420><thread=1752 (0x6D8)>
    INFO: Processing file "dotNetFx40_Full_x86_x64.exe"  $$<Configuration Manager Setup><07-25-2012 00:58:51.760+420><thread=1752 (0x6D8)>
    INFO: File will be downloaded from
    http://go.microsoft.com/fwlink/?LinkID=224688.  $$<Configuration Manager Setup><07-25-2012 00:58:51.761+420><thread=1752 (0x6D8)>
    INFO: File for dotNetFx40_Full_x86_x64.exe [.NET Framework Extended 4.0 RTM] will be copied with file name: dotNetFx40_Full_x86_x64.exe.  $$<Configuration Manager Setup><07-25-2012 00:58:51.761+420><thread=1752 (0x6D8)>
    INFO: Processing file group "SQL_Redist"  $$<Configuration Manager Setup><07-25-2012 00:58:51.761+420><thread=1752 (0x6D8)>
    INFO: Processing file "SQLEXPR_x64_ENU.exe"  $$<Configuration Manager Setup><07-25-2012 00:58:51.761+420><thread=1752 (0x6D8)>
    INFO: File will be downloaded from
    http://go.microsoft.com/fwlink/?LinkId=218933.  $$<Configuration Manager Setup><07-25-2012 00:58:51.761+420><thread=1752 (0x6D8)>
    INFO: File for SQLEXPR_x64_ENU.exe [SQL Server 2008 R2 SP1 Express] will be copied with file name: SQLEXPR_x64_ENU.exe.  $$<Configuration Manager Setup><07-25-2012 00:58:51.762+420><thread=1752 (0x6D8)>
    INFO: Processing file "msxml6_x64.msi"  $$<Configuration Manager Setup><07-25-2012 00:58:51.762+420><thread=1752 (0x6D8)>
    INFO: File will be downloaded from
    http://go.microsoft.com/fwlink/?LinkID=169539.  $$<Configuration Manager Setup><07-25-2012 00:58:51.762+420><thread=1752 (0x6D8)>
    INFO: File for msxml6_x64.msi [MSXML 6.0 Service Pack 1] will be copied with file name: msxml6_x64.msi.  $$<Configuration Manager Setup><07-25-2012 00:58:51.762+420><thread=1752 (0x6D8)>
    INFO: Processing file "sqlncli.msi"  $$<Configuration Manager Setup><07-25-2012 00:58:51.762+420><thread=1752 (0x6D8)>
    INFO: File will be downloaded from
    http://go.microsoft.com/fwlink/?LinkID=169540.  $$<Configuration Manager Setup><07-25-2012 00:58:51.762+420><thread=1752 (0x6D8)>
    INFO: File for sqlncli.msi [SQL Server 2008 Native Client] will be copied with file name: sqlncli.msi.  $$<Configuration Manager Setup><07-25-2012 00:58:51.763+420><thread=1752 (0x6D8)>
    INFO: Processing file "SQLSysClrTypes.msi"  $$<Configuration Manager Setup><07-25-2012 00:58:51.763+420><thread=1752 (0x6D8)>
    INFO: File will be downloaded from
    http://go.microsoft.com/fwlink/?LinkId=169541.  $$<Configuration Manager Setup><07-25-2012 00:58:51.763+420><thread=1752 (0x6D8)>
    INFO: File for SQLSysClrTypes.msi [SQL Server 2008 System CLR Types] will be copied with file name: SQLSysClrTypes.msi.  $$<Configuration Manager Setup><07-25-2012 00:58:51.763+420><thread=1752 (0x6D8)>
    INFO: Processing file "SharedManagementObjects.msi"  $$<Configuration Manager Setup><07-25-2012 00:58:51.763+420><thread=1752 (0x6D8)>
    INFO: File will be downloaded from
    http://go.microsoft.com/fwlink/?LinkId=169542.  $$<Configuration Manager Setup><07-25-2012 00:58:51.763+420><thread=1752 (0x6D8)>
    INFO: File for SharedManagementObjects.msi [SQL Server 2008 Management Objects] will be copied with file name: SharedManagementObjects.msi.  $$<Configuration Manager Setup><07-25-2012 00:58:51.764+420><thread=1752 (0x6D8)>
    ERROR: Verification failed: File e:\SCCMPreReqs\msrdcoob_x86.exe not found  $$<Configuration Manager Setup><07-25-2012 00:58:51.764+420><thread=1752 (0x6D8)>
    ====================================================
    Regards, Vik Singh "If this thread answered your question, please click on "Mark as Answer"

    The file I was hosting is available from Microsoft's site here http://go.microsoft.com/fwlink/?LinkID=234176
    Manually download this and put it into the target dir when running setupdl.exe  from \%SCCM SOURCE LOCATION%\SMSSETUP\BIN\X64\
    I have confirmed that this file is available to download any further issues would be isolated to your environment.
    Regards
    Matt Thorley
    En español
    para Diana....
    El archivo
    estaba dando
    está disponible
    en el sitio
    de Microsoft aquí
    http://go.microsoft.com/fwlink/?LinkID=234176
    Manualmente
    descargar esto
    y ponerlo
    en el
    directorio de destino
    cuando se ejecuta
    setupdl.exe desde
    \%SCCM SOURCE LOCATION%\SMSSETUP\BIN\X64\
    He confirmado
    que este
    archivo está
    disponible para
    descargar cualquier
    problema adicional
    sería aislada
    de su
    entorno.
    Saludos

  • SCCM 2012 R2 - Reporting Services Point installation - "The Datasource does not exist"

    Hi all,
    Quick bit of background, we have SCCM 2012 R2 installed on a Windows 2012 R2 server. We have the SQL back end off box, configured on a SQL 2012 R2 server running on a Windows Server 2012 R2 cluster. Then there is yet another server which runs the reporting
    services. I've just tried installing the Reporting Services Point on the srs server but it doesn't appear to have worked that well. Here's the info i've got back: 
    A] Site Status > Reporting services point:
    SMS_SITE_SYSTEM_STATUS_SUMMERIZER
    Site System Status Summarizer detected that the availability of the "Reporting services point" role on server "\\NA-SQLR01.in.tna.local" has changed to Failed.
    B] The last message from the SMS_SRS_REPORTING_POINT Component Status is "Site Component Manager successfully installed this component on this site system"
    C] Here's the first chunk of info which appears in the srsrp.log file:
    SMS_EXECUTIVE started SMS_SRS_REPORTING_POINT as thread ID 4204 (0x106C).
    This is a SRS Reporting Point Role as SRSRP registry key exists.
    Waiting for changes for 0 minutes
    Timed Out...
    Set configuration
    Check state
    Check server health.
    Successfully created srsserver SMS_
    Reporting Services URL from Registry [http://sqlreportserver/ReportServer_SQL2012/ReportService2005.asmx]
    Reporting Services is running
    The DataSource does not exist.
    [sqlserver.local\SQL1] [SCCM_XXX] [ConfigMgr_XXX] [sqlreportserver.LOCAL]
    [SQL2012] [1] [] [xxx\SCCM2012Server]
    Confirmed version [11.0.5058.0] for the Sql Srs Instance.
    System.Web.Services.Protocols.SoapException: The item '/ConfigMgr_XXX' cannot be found. ---> Microsoft.ReportingServices.Diagnostics.Utilities.ItemNotFoundException: The item '/ConfigMgr_XXX' cannot be found.~   at Microsoft.ReportingServices.Library.ReportingService2005Impl.GetProperties(String
    Item, Property[] Properties, ItemNamespaceEnum itemNamespace, Property[]& Values)~   at Microsoft.ReportingServices.WebServer.ReportingService2005.GetProperties(String Item, Property[] Properties, Property[]& Values)
    Extract resource language packs if exists
    Loading localization resources from directory [D:\SMS_SRSRP\SrsResources.dll]
    Looking for 'English (United Kingdom)' resources
    Looking for 'English' resources
    Found resources for 'English'
    System.Web.Services.Protocols.SoapException: The item '/ConfigMgr_XXX' cannot be found. ---> Microsoft.ReportingServices.Diagnostics.Utilities.ItemNotFoundException: The item '/ConfigMgr_XXX' cannot be found.~   at Microsoft.ReportingServices.Library.ReportingService2005Impl.SetProperties(String
    Item, Property[] Properties, Guid batchId)~   at Microsoft.ReportingServices.WebServer.ReportingService2005.SetProperties(String Item, Property[] Properties)
    System.Web.Services.Protocols.SoapException: The permissions granted to user 'NT AUTHORITY\SYSTEM' are insufficient for performing this operation. ---> Microsoft.ReportingServices.Diagnostics.Utilities.AccessDeniedException: The permissions granted to user
    'NT AUTHORITY\SYSTEM' are insufficient for performing this operation.~   at Microsoft.ReportingServices.Library.ReportingService2005Impl.CreateFolder(String Folder, String Parent, Property[] Properties, Guid batchId)~   at Microsoft.ReportingServices.WebServer.ReportingService2005.CreateFolder(String
    Folder, String Parent, Property[] Properties)
    (!) SRS root folder was reported missing
    STATMSG: ID=7405 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_SRS_REPORTING_POINT" SYS=sqlreportserver.LOCAL SITE=P01 PID=2120 TID=4204 GMTDATE=Wed Apr 08 08:56:05.349 2015 ISTR0="ConfigMgr_XXX" ISTR1="sqlreportserver.LOCAL"
    ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=0
        WARNING: Could not read registry key HKEY_LOCAL_MACHINE\Software\Microsoft\SMS\MPFDM\Inboxes\ on the server, The operating system reported error 2: The system cannot find the file specified.
        WARNING: Could not read registry key HKEY_LOCAL_MACHINE\Software\Microsoft\SMS\MPFDM\Inboxes\ on the server, The operating system reported error 2: The system cannot find the file specified.
    Failures reported during periodic health check by the SRS Server sqlreportserver.LOCAL.
    Registry change
    Waiting for changes for 1 minutes
    After this point i simply get the following info messages looping endlessly:
    Set configuration
    Check state
    Check server health.
    Successfully created srsserver
    Reporting Services URL from Registry [http://sqlreportserver/ReportServer_SQL2012/ReportService2005.asmx]
    Reporting Services is running
    The DataSource does not exist.
    [sqlreportserverlocal\SQL1] [SCCM_XXX] [ConfigMgr_P01] [sqlreportserver.LOCAL]
    [SQL2012] [1] [] [XX\SCCM2012Server]
    [1] [0]
    Confirmed version [11.0.5058.0] for the Sql Srs Instance.
    System.Web.Services.Protocols.SoapException: The item '/ConfigMgr_XXX' cannot be found. ---> Microsoft.ReportingServices.Diagnostics.Utilities.ItemNotFoundException: The item '/ConfigMgr_XXX' cannot be found.~   at Microsoft.ReportingServices.Library.ReportingService2005Impl.GetProperties(String
    Item, Property[] Properties, ItemNamespaceEnum itemNamespace, Property[]& Values)~   at Microsoft.ReportingServices.WebServer.ReportingService2005.GetProperties(String Item, Property[] Properties, Property[]& Values)
    Extract resource language packs if exists
    Loading localization resources from directory [D:\SMS_SRSRP\SrsResources.dll]
    Looking for 'English (United Kingdom)' resources
    Looking for 'English' resources
    Found resources for 'English'
    System.Web.Services.Protocols.SoapException: The item '/ConfigMgr_XXX' cannot be found. ---> Microsoft.ReportingServices.Diagnostics.Utilities.ItemNotFoundException: The item '/ConfigMgr_P01' cannot be found.~   at Microsoft.ReportingServices.Library.ReportingService2005Impl.SetProperties(String
    Item, Property[] Properties, Guid batchId)~   at Microsoft.ReportingServices.WebServer.ReportingService2005.SetProperties(String Item, Property[] Properties)
    System.Web.Services.Protocols.SoapException: The permissions granted to user 'NT AUTHORITY\SYSTEM' are insufficient for performing this operation. ---> Microsoft.ReportingServices.Diagnostics.Utilities.AccessDeniedException: The permissions granted to user
    'NT AUTHORITY\SYSTEM' are insufficient for performing this operation.~   at Microsoft.ReportingServices.Library.ReportingService2005Impl.CreateFolder(String Folder, String Parent, Property[] Properties, Guid batchId)~   at Microsoft.ReportingServices.WebServer.ReportingService2005.CreateFolder(String
    Folder, String Parent, Property[] Properties)
    (!) SRS root folder was reported missing
    Failures reported during periodic health check by the SRS Server sqlreportserver.LOCAL.
    Registry change
    Waiting for changes for 1 minutes
    Has anyone come across this issue before? Must admit, I'm not too hot on the sql side of things so any advice or suggestions would be greatly appreciated. Thanks in advance!

    Hi guys, cheers for the swift response.
    Garth, i can access SSRS in IE from the SCCM box and it looks a-ok.
    Paul, nope can't say I've done any configuration of reporting services - the whole thing has been set up by the database team. Having had a trundle through Reporting Services Configuration Manager, it seems the Database team have set up SSRS in line with
    the walkthrough you posted.
    Since i'm not seeing the ConfigMgr_XXX folder appear in SSRS I'm wondering if there's something preventing SCCM from being able to create it. The message
    "Microsoft.ReportingServices.Diagnostics.Utilities.AccessDeniedException: The permissions
    granted to user 'NT AUTHORITY\SYSTEM' are insufficient for performing this operation" sounds like the account SCCM is leveraging to perform the install might not have the right permissions in SSRS. Do i need to delegate specific rights to the NT
    AUTHORITY\SYSTEM account in SRS perhaps?

  • Getting error while installation of SAP on Linux 64 bit

    Dear All,
    me using redhat version 5
    database 10g
    Proceded installtion through VNC. while installation of oracle 10g getting some eror at 83% details mention below.
    Error in invoking target 'ntcontab.o' of makefile
    INFO: End output from spawned process.
    INFO: -
    INFO: Exception thrown from action: make
    Exception Name: MakefileException
    Exception String: Error in invoking target 'ntcontab.o' of makefile '/oracle/SOL/102_64/network/lib/ins_net_client.mk'. See '/oracle/oraInventory/logs/installActions2009-06-18_09-13-18AM.log' for details.
    Exception Severity: 1
    INFO: Exception handling set to prompt user with options to  Retry  Ignore
    User Choice: Retry
    INFO: The output of this make operation is also available at: ''/oracle/SOL/102_64/install/make.log'
    INFO:
    INFO: Start output from spawned process:
    INFO: -
    INFO:
    INFO: rm -f ntcontab.*
    INFO: (if [ "compile" = "compile" ] ; then \
              '/oracle/SOL/102_64/bin/gennttab > ntcontab.c
              gcc  -c ntcontab.c
              rm -f /'/oracle/SOL/102_64/lib/ntcontab.o
              mv ntcontab.o '/oracle/SOL/102_64/lib/
              /usr/bin/ar rv'/oracle/SOL/102_64/lib/libn11.a '/oracle/SOL/102_64/lib/ntcontab.o ; fi)
    INFO: /bin/sh:  line 2: gcc:  command not found
    INFO: mv: cannot stat `ntcontab.o'
    INFO: : No such file or directory
    INFO: /usr/bin/ar: '/oracle/SOL/102_64/lib/ntcontab.o: No such file or directory
    INFO: make: *** [ntcontab.o] Error 1
    INFO: End output from spawned process.
    INFO: -
    INFO: Exception thrown from action: make
    Exception Name: MakefileException
    Exception String: Error in invoking target 'ntcontab.o' of makefile ''/oracle/SOL/102_64/network/lib/ins_net_client.mk'. See '/oracle/oraInventory/logs/installActions2009-06-18_09-13-18AM.log' for details.
    Exception Severity: 1
    Request you to revert as soon as possible.
    ThankYou in Advance

    Dear,
    Thanks for your replay.
    command to check gcc version :        
    RPM -qa | grep gcc
    Output of this command.
    compact-gcc-34-g77-3.4.6-4
    libgcc-4.1.2-46.el5
    comact-gcc-34-c++-3.4.6-4
    libgcc-4.1.2-46.el5
    compact-libgcc-296-2.96-138
    compact-gcc-34-3.4.6-4
    pleae suggest if any updated version of gcc i have to installed or is this OK.
    I have ignore that error and click on continue after that my installation is finished sucessfull
    i have encounter one more problem
    ogon as root
    /oracle/oraInventory/orainstRoot.sh
    /oracle/<SID>/102_64/root.sh
    [root@ram 102_64]# ./root.sh
    ./root.sh: line 12: 01777: command not found
    ./root.sh: line 13: root: command not found
    ./root.sh: line 20: 01777: command not found
    ./root.sh: line 21: root: command not found
    ./root.sh: line 63: /bin/fmputl: No such file or directory
    ./root.sh: line 64: /bin/fmputlhp: No such file or directory
    ./root.sh: line 65: 550: command not found
    ./root.sh: line 66: 4555: command not found
    ln: creating symbolic link `/rdbms/filemap' to `/opt/ORCLfmap/prot1_64': No such file or directory
    .then getting error on create database at 13 phase
    checked ora_sql_result.log
    SAPINST:  Emd of output of SQL executing program /oracle/SOL/102_64/bin/sqlplus.
    SAPINST  found errors.
    SAPINST  the current process environment may be foun din SAPINST_ORA_ENVIRONMENT.log .
    SAPINST Oracle stop logging
    REquest you to please provide solution Asap.
    Thanks
    In  Advacbe
    Anant singh

Maybe you are looking for

  • Here is a simple idea... that would help the Windo...

    Why not make simply APPs, that works on any Lumia 800/900 that lets any owner of a Phone that is not locked, adjust all the network settings? Like an APP for ATT, T-Mobile... In Europe for Orange, Sunrise... whoever. This way any owner can download t

  • NW-Release of Technical System SID of managed system - is unidentifiable!

    Hi, Does anyone encountered this issue before when generating stack file? I am going to generate the stack file for SAP Enhancement Package 7 for SAP ERP 6.0 and SAP NetWeaver 7.4  but during phase 2.2 it pops up the error "NW-Release of Technical Sy

  • Copy control transport orders

    Hello Gurus: Quickly question: How we can modify the copy control between transport order and deliveries? I want add a conditions to copy the values of the field between the transport order and the delivery. Thanks in advance javier

  • Export frame 16:9

    When I  export  frame from 16:9 timeline (using the camera icon), pr will get it back as 16:9,  however in picture viewer it will be 4:3. is there a way to avoid it? Thanks Arikw

  • Sprachausgabe Adobe Reader XI funktioniert nicht

    Hallo, die Sprachausgabe funkioniert nicht. Es sollen damit englische Texte vorgelesen werden. Folgende Stimmen stehen im Reader zur Auswahl: "Microsoft Anna - Englisch (US)", "Mary", "Mike" - wenn sie eingestellt werden tut sich garnichts; bei "Samp