ZLIB compression

<p>Hello yal,</p><p>Who can tell me about Essbase zlib compression mode?</p><p>When using this compression algorithm, is there any setting onthe database excluded by this mode?</p><p>For example, does it need specific settings on transaction(isolation level, synchronisation point)?</p><p>Thanks in advance</p><p> </p>

<p>OLAP Server supports ZLIB compression and this method is used inpackages like PNG, Zip, and gzip.</p><p><code>first, i'd set isolation level to committedaccess.</code></p><p> </p><p>To set ZLIB as the compression type for a database, useMAXL:</p><p><code>alter database <i>DBS-NAME</i> set compressionzlib;</code></p><p> </p><p> </p><p> </p>

Similar Messages

  • Zlib compression and loading

    Hello.
    I'm working in a little 3D visualization engine, and I need to compress some data for Internet delivering. The exporter is being written in c++, and I want to use java only as Internet visualizer using JOGL. However, I know java can uncompress the zlib format with the java.io.util package, but I think once I read somwhere that this hava a little overhead, right?. So I have two solutions in mind:
    a) Use java.io.util and load all as byte arrays(for avoid endianness convertion)
    b) Use some JNI code for the uncompression code
    The problem with the second option is that I will need a signed applet, and this is something I dont' know how to do(I'm not a system engineer, I'm doing this as a hobby, also I don't know how to use perfectly JNI neither).
    Is there any solution pure Java Standard Edition 6 based and high performance??. I need to load all my data as different ByteBuffers for used them with JOGL. I'm planning to use zlib for the C++ exporter.
    Bye!

    RaulHuertas wrote:
    Well... no :( . I just want some suggestions before start with this. Oh, the package I mean before is java.util.zip.I suggest avoiding JNI if at all possible, because it makes it much more difficult, and you lose one of Java's key strengths: platform independence.

  • Errors when trying to mosaic compressed images

    I am trying to load georaster data into Oracle 11g 11.2.0.2. I was successful then doing this by using the following steps:-
    - SDO_GEOR.IMPORTFROM
    - sdo_geor.mosaic
    However when I try to compress the images as JPEG-B I get an Oracle error when performing the mosaic operation.
    ORA-13485: error occurred during compression or decompression: lossy then something related to colormaps.
    Has anyone ever seen a similar error.
    These are the scripts.
    set serveroutput on size 1000000;
    set timing on;
    LOAD
    -- THE SDO_RASTER TABLE HAS TO BE UNIQUE IN THE ENTIRE DATABASE
    DROP TABLE GEO_25K PURGE;
    DROP TABLE RDT_25K PURGE;
    CREATE TABLE GEO_25K ( ID NUMBER PRIMARY KEY,
         SOURCE_FILE VARCHAR2(80),
         DESCRIPTION VARCHAR2(32),
         GEOMMBR SDO_GEOMETRY,
         GEORASTER SDO_GEORASTER);
    CREATE TABLE RDT_25K OF SDO_RASTER
         (PRIMARY KEY (RASTERID, PYRAMIDLEVEL, BANDBLOCKNUMBER, ROWBLOCKNUMBER, COLUMNBLOCKNUMBER))
         LOB(RASTERBLOCK) STORE AS (NOCACHE NOLOGGING);
    CALL SDO_GEOR_UTL.CREATEDMLTRIGGER('GEO_25K','GEORASTER');
    -- IMPORTFROM DOES NOT SUPPORT JPG ONLY TIFF, GIF, BMP AND PNG
    -- SET TIMING ON IN SQLPLUS TO SEE HOW LONG THE LOAD TAKES
    -- 28 X JPG CONVERTED TO TIFF REPRESENTS 1.93GB ON DISK AND 2286MB IN THE DB AND TOOK 1 HOUR 11 MINUTES TO LOAD
    DECLARE
         TYPE FILE_LIST IS TABLE OF VARCHAR2(200);
         files FILE_LIST;
         geor MDSYS.SDO_GEORASTER;
    BEGIN
         dbms_java.set_output(1000000);
         get_dir_list('/PRLR01/fssa01/RASTER/LOAD/');
         FOR i in ( SELECT rownum,FILENAME from dir_list where FILENAME like '%TIF' )
         LOOP
              dbms_output.put_line(i.FILENAME);
              dbms_output.put_line(SUBSTR(i.filename, 1, LENGTH(i.filename)-4) || '.TFW');
              INSERT INTO GEO_25K VALUES (i.rownum, i.filename, '', null, MDSYS.SDO_GEOR.INIT('RDT_25K', i.rownum));
              SELECT GEORASTER INTO geor FROM GEO_25K WHERE ID = i.rownum FOR UPDATE;
              MDSYS.SDO_GEOR.IMPORTFROM(geor, 'compression=JPEG-B', 'TIFF', 'FILE', i.FILENAME,
                   'WORLDFILE', 'FILE', SUBSTR(i.filename, 1, LENGTH(i.filename)-4) || '.TFW');
              UPDATE GEO_25K SET GEORASTER = geor WHERE ID = i.rownum;
              SELECT GEORASTER INTO geor FROM GEO_25K WHERE ID = i.rownum FOR UPDATE;
              MDSYS.SDO_GEOR.SETRASTERTYPE(geor, 21001);
              UPDATE GEO_25K SET GEORASTER = geor WHERE ID = i.rownum;
              SELECT georaster INTO geor FROM GEO_25K WHERE id = i.rownum FOR UPDATE;
              sdo_geor.setModelSRID(geor, 81989);
              UPDATE GEO_25K SET georaster = geor WHERE id=i.rownum;
         END LOOP;
         COMMIT;
    END;
    MOSAIC
    set timing on;
    --After the GeoRaster are loaded you may want to set the appropriate SRID if this was not set correctly.
    --SELECT sdo_geor.validateBlockMBR(georaster), id FROM GEO_25K;
    --select id, sdo_geor.getModelSRID(georaster) from GEO_25K;
    --Then you need to validate the GeoRasters to see if they have been setup correctly.
    --SELECT t.id, sdo_geor.validategeoraster(t.georaster) isvalid from GEO_25K t order by id;
    --After you have loaded all the georasters, iSMART will pick up each row of the georaster as an individual layer so you need to create a mosaic layer or table
    drop table GEO_MOSAIC_25K;
    drop table RDT_MOSAIC_25K;
    CREATE TABLE GEO_MOSAIC_25K ( ID NUMBER PRIMARY KEY,
    SOURCE_FILE VARCHAR2(80),
    DESCRIPTION VARCHAR2(32),
    GEOMMBR SDO_GEOMETRY,
    GEORASTER SDO_GEORASTER);
    CREATE TABLE RDT_MOSAIC_25K OF SDO_RASTER
    (PRIMARY KEY (RASTERID, PYRAMIDLEVEL, BANDBLOCKNUMBER, ROWBLOCKNUMBER, COLUMNBLOCKNUMBER))
    LOB(RASTERBLOCK) STORE AS (NOCACHE NOLOGGING);
    call sdo_geor_utl.createDMLTrigger('GEO_MOSAIC_25K','GEORASTER');
    DECLARE
    gr sdo_georaster;
    BEGIN
    insert into GEO_MOSAIC_25K (id, georaster)
    values (1, sdo_geor.init('RDT_MOSAIC_25K'))
    returning georaster INTO gr;
    sdo_geor.mosaic('GEO_25K', 'georaster', gr, '');
    update GEO_MOSAIC_25K SET georaster=gr where id=1;
    commit;
    END;
    --Then you need to validate the mosaic.
    -- SELECT sdo_geor.validateBlockMBR(georaster), id FROM GEO_MOSAIC_25K;
    SELECT t.id, sdo_geor.validategeoraster(t.georaster) isvalid from GEO_MOSAIC_25K t order by id;
    --The in order to achieve real performance you need to pyramid the mosaic raster. If you don't specify a pyramid level then you oracle will calculate it.
    --If you have set them max resolution to this layer using the Oracle calculated value will produce too many pyramid levels, you need to calculate how many pyramid value you will need
    --See URL for Pyramiding http://download.oracle.com/docs/cd/B28359_01/appdev.111/b28398/geor_intro.htm#CHDDEGJJ
    DECLARE
    gr sdo_georaster;
    BEGIN
    SELECT georaster INTO gr
    FROM GEO_MOSAIC_25K WHERE id = 1 FOR UPDATE;
    -- Generate pyramids.
    sdo_geor.generatePyramid(gr, 'rLevel=5, resampling=NN');
    -- Update the original GeoRaster object.
    UPDATE GEO_MOSAIC_25K SET georaster = gr WHERE id = 1;
    COMMIT;
    END;
    quit
    These work fine until I include 'compression=JPEG-B'
    Cheers,
    David

    Check document:
    1.10.2 DEFLATE Compression of GeoRaster Objects
    DEFLATE compression compresses objects according to the Deflate Compressed Data Format Specification (Network Working Group RFC 1951), and it stores the compressed data in ZLIB format, as described in the ZLIB Compressed Data Format Specification (Network Working Group RFC 1950). The ZLIB header and checksum fields are included in the compressed GeoRaster object.
    Although DEFLATE compression is supported for GeoRaster objects of any size, the total size (columnsPerBlock * rowsPerBlock * bandsPerBlock * cellDepth / 8) of each block of the GeoRaster object must not exceed 1 gigabyte (GB). For large GeoRaster objects, you can call the SDO_GEOR.changeFormatCopy procedure to block the GeoRaster object into blocks smaller than1 GB, and then compress the GeoRaster object; or you can perform the blocking and compression in the same call to the SDO_GEOR.changeFormatCopy procedure.
    Because DEFLATE compression is lossless, compression quality does not apply, and is ignored if it is specified.
    compression
    Specifies the compression type to be applied to the GeoRaster object. Must be one of the following values: JPEG-B, JPEG-F, DEFLATE, or NONE. (You can use NONE to decompress a compressed GeoRaster object.) If compression is not specified, the compression type of the source GeoRaster object is used. For more information about compression and decompression, see Section 1.10. Example: compression=DEFLATE

  • SOAP Compression?

    Serialization of objects using XML/SOAP is much fatter than using native
    java serialization. (Just run an HTTP tunnel and see for yourself).
    Does WL6.1 provide a method of compression/decompression for SOAP
    transactions that would minimize bandwidth usage?
    thanks
    scott

    Hi all,
    I've just joined BEA in the Standards and Technologies area, focusing on XML
    and Web services. This is my BEA newbie post ;-)
    I was on the interest group for the XML Packaging Task force, which went
    pretty much nowhere. There is no current mechanism for packing and/or
    compressing xml documents. One of the options for the xml-package was to
    use zip. But there's a fairly large flaw, in that ZIP puts its manifest
    information at the end of the zip file, rather than the beginning. So you
    have to completely parse the document into memory before you can see the
    manifest and determine how to decrypt the block. Given that many XML
    parsers are stream based - especially when using very large files! - this
    was considered a pretty large stumbling block.
    However, if you still think this is the right way to go, HTTP 1.1 (as
    defined in rfc 2068) section 3.5 supports a content encoding type of ZIP.
    Cheers,
    Dave Orchard
    Scott McFadden <[email protected]> wrote in message
    news:[email protected]...
    Probably depends alot on what type/size of data you are compressing andwhat
    compression level you are using. Since we have ownership of our server
    hardware, we can always beef up the servers (CPU, memory, processors,
    etc.). Unforunately, we do not have control over our client's bandwidth(or
    lack thereof). I have also heard arguments that compression defeats the
    openeness of SOAP (although Zlib is pretty open in its own right).
    scott
    "Sam Pullara" <[email protected]> wrote in message
    news:[email protected]...
    This will decrease bandwidth but the extra zlib compression will
    probably
    slow down the system. I have found for static files that they areserved
    3x
    slower and about 3x smaller. Its almost a 1-1 trade of speed forbandwidth
    reduction on a dual 800 p3 intel box.
    Sam
    "Scott McFadden" <[email protected]> wrote in message
    news:[email protected]...
    Good idea. Zlib compression/decompression is supported on virtually
    all
    platforms. (Don't want to force my customers to have T3 connectionsjust
    to
    efficiently run SOAP rpc).
    thanks
    scott
    "Asynch Messaging" <[email protected]> wrote in message
    news:[email protected]...
    Wouldn't a GZIP transfer-encoding of an HTTP binding of SOAP do the
    trick?
    Although it may be fatter on the wire, text/xml can squeeze into
    places
    (on
    the client-side) that application/x-java-serialized-object can't.
    A.M.
    "Scott McFadden" <[email protected]> wrote in message
    news:[email protected]...
    Serialization of objects using XML/SOAP is much fatter than using
    native
    java serialization. (Just run an HTTP tunnel and see for
    yourself).
    >>>>>
    Does WL6.1 provide a method of compression/decompression for SOAP
    transactions that would minimize bandwidth usage?
    thanks
    scott

  • 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

  • Client Install Issue - SCCM 2012 R2 - Manual Deploy Installed ok

    Hello, I have sccm 2012 configured with 2,000 machine approx. It is been used mainly as a Software Deployment tool for now. On checking a recent IE10 upgrade, I noticed that there is a number of machines that do not have the client installed (and thus did
    not upgrade IE). I picked 1 machine, searched in SCCM - had no client. I checked all relevant settings:
    Boundary for Client in question - ok
    Local Client Settings (ip,dns,no firewall, ping sccm ok and vice versa etc).
    Once i right clicked to deploy the client, it installed no problem. I checked the ccmsetup log file and the only info it had was from the time that the client was manually deployed (I will attach the log below anyway). I am really puzzled as to why the client
    did not install and if this is the issue why IE is not upgrading (it is hard to pinpoint as there are 250 sites approx). The automatic install task works no problem on other machines once the machine goes online.
    Any help, would be great. Here is the log (I am fairly new to SCCM btw):
    SCCM 2012 R2 - Windows 7 SP1 32 Bit
    ==========[ ccmsetup started in process 7196 ]==========    ccmsetup    05/02/2015 16:28:39    4100 (0x1004)
    Running on platform X86    ccmsetup    05/02/2015 16:28:39    4100 (0x1004)
    Launch from folder C:\Windows\ccmsetup\    ccmsetup    05/02/2015 16:28:39    4100 (0x1004)
    CcmSetup version: 5.0.7958.1401    ccmsetup    05/02/2015 16:28:39    4100 (0x1004)
    In ServiceMain    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    Running on 'Microsoft Windows 7 Enterprise ' (6.1.7601). Service Pack (1.0). SuiteMask = 272. Product Type = 18    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    Ccmsetup command line: "C:\Windows\ccmsetup\ccmsetup.exe" /runservice /ForceInstall /config:MobileClient.tcf    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    Command line parameters for ccmsetup have been specified.  No registry lookup for command line parameters is required.    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    Command line: "C:\Windows\ccmsetup\ccmsetup.exe" /runservice /ForceInstall /config:MobileClient.tcf    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    SslState value: 224    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    CCMHTTPPORT:    80    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    CCMHTTPSPORT:    443    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    CCMHTTPSSTATE:    224    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    CCMHTTPSCERTNAME:        ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    FSP:    COLSCCM01.LC-UK.ORG    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    CCMFIRSTCERT:    1    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    Config file:      C:\Windows\ccmsetup\MobileClientUnicode.tcf    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    Retry time:       10 minute(s)    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    MSI log file:     C:\Windows\ccmsetup\Logs\client.msi.log    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    MSI properties:    INSTALL="ALL" SMSSITECODE="COL" FSP="COLSCCM01.LC-UK.ORG" SMSCACHESIZE="10240" CCMHTTPPORT="80" CCMHTTPSPORT="443" CCMHTTPSSTATE="224" CCMFIRSTCERT="1"  
     ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    Source List:    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
                      \\COLSCCM01.lc-uk.org\SMSClient    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
                      \\COLSCCM01.LC-UK.ORG\SMSClient    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    MPs:    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
                      COLSCCM01.lc-uk.org    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    No version of the client is currently detected.    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    Folder 'Microsoft\Configuration Manager' not found. Task does not exist.    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    Updated security on object C:\Windows\ccmsetup\.    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    Sending Fallback Status Point message to 'COLSCCM01.LC-UK.ORG', STATEID='100'.    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    Failed to get client version for sending messages to FSP. Error 0x8004100e    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    Params to send FSP message '5.0.7958.1401 Deployment '    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    State message with TopicType 800 and TopicId {19607F6A-0C46-488C-B28D-36640FB0DF94} has been sent to the FSP    FSPStateMessage    05/02/2015 16:28:40    500 (0x01F4)
    Running as user "SYSTEM"    ccmsetup    05/02/2015 16:28:40    500 (0x01F4)
    Detected 434753 MB free disk space on system drive.    ccmsetup    05/02/2015 16:28:40    500 (0x01F4)
    Checking Write Filter Status.    ccmsetup    05/02/2015 16:28:40    500 (0x01F4)
    This is not a supported write filter device. We are not in a write filter maintenance mode.    ccmsetup    05/02/2015 16:28:40    500 (0x01F4)
    Performing AD query: '(&(ObjectCategory=mSSMSManagementPoint)(mSSMSDefaultMP=TRUE)(mSSMSSiteCode=COL))'    ccmsetup    05/02/2015 16:28:40    500 (0x01F4)
    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>308202F0308201D8A00302010202104A263F5C34E3AAAA4C178EF33CA94377300D06092A864886F70D01010B05003016311430120603550403130B53697465205365727665723020170D3134303630383134343831315A180F32313134303531363134343831315A3016311430120603550403130B536974652053657276657230820122300D06092A864886F70D01010105000382010F003082010A0282010100A4FF6866BC9622545F811F8008ABDC534E96C9699A3354E990CADB04B1399B29EB80FB844425DEEDD9FE680C57AA0FE05D42CF1D431BB69080D4E7ED91A8255739089A83E4836F28B09331C100B0BAD81AD795EFD01C9ECF8DCE2BE03B52EE3AC35E7003B728E0FA56F145279301189388F3FC90A6C3DA5342C61230550C2B79DECB64AC0958C6DE2D5BF83C3EA29126E231FBEAADBD632F65AF41AC3267DB3986929C46A08AF0BF925A40E15A346B38219CC62C6C0BAC8990C05EA04037458F1853E251D8C16946F845D46CB47884D9EB00543AC8B02A7C099B53F7DE1EBD11AA1272476E5AAF55B2CC38122B62C751D988C81A07D06F87A9F7980D2B3560A90203010001A3383036301E0603551D11041730158213434F4C5343434D30312E6C632D756B2E6F726730140603551D25040D300B06092B060104018237650B300D06092A864886F70D01010B05000382010100A0DE29D627EB45EF2D0074AD578B62CE9007918B4316351DB2DBEFF2D0DF52C0FF58B6DE3405C88572ECCFAF2A7B335B234FE7D1E5B0FDA20548FEFE4B9E6AFB45E77627EDB70E2378A3135FB1FC34C2308F0FBD1ADD890DD08D8D6081B73FFF86DE87DBF678A7CAD73AE32BF6EB3B9D1E4E0380D7FBE3E9F9EF49339031636F2B3CC60989B8443B91F9F69F5837025B6CAE64E2D1837FAF712186A02567EA87F9E82FD170C4DEA61DC61C16226450FCBE062948F2219FB5801DF3AF73443349421A7228F5E1372B5CA165D8ABAB9D1B3FEAF22705A473AAAB034C2A289AA7A507550050D6516C2D7BECDE5686F17CC66FBB7D2C439F15644EBF9EF7E8402109</SiteSigningCert></SecurityConfiguration><RootSiteCode>COL</RootSiteCode><CCM>
    <CommandLine>SMSSITECODE=COL FSP=colsccm01.lc-uk.org SMSCACHESIZE=10240</CommandLine> </CCM><FSP> <FSPServer>COLSCCM01.lc-uk.org</FSPServer> </FSP><Capabilities SchemaVersion ="1.0"><Property Name="SSLState"
    Value="0" /></Capabilities><Domain Value="lc-uk.org" /><Forest Value="lc-uk.org" /></ClientOperationalSettings>'    ccmsetup    05/02/2015 16:28:41    500
    (0x01F4)
    Unable to open Registry key Software\Microsoft\CCM. Return Code [80070002]. Client HTTPS state is Unknown.    ccmsetup    05/02/2015 16:28:41    500 (0x01F4)
    The MP name retrieved is 'COLSCCM01.lc-uk.org' with version '7958' and capabilities '<Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities>'    ccmsetup  
     05/02/2015 16:28:41    500 (0x01F4)
    MP 'COLSCCM01.lc-uk.org' is compatible    ccmsetup    05/02/2015 16:28:41    500 (0x01F4)
    Retrieved 1 MP records from AD for site 'COL'    ccmsetup    05/02/2015 16:28:41    500 (0x01F4)
    Retrived site version '5.00.7958.1000' from AD for site 'COL'    ccmsetup    05/02/2015 16:28:41    500 (0x01F4)
    SiteCode:         COL    ccmsetup    05/02/2015 16:28:41    500 (0x01F4)
    SiteVersion:      5.00.7958.1000    ccmsetup    05/02/2015 16:28:41    500 (0x01F4)
    Only one MP COLSCCM01.lc-uk.org is specified. Use it.    ccmsetup    05/02/2015 16:28:41    500 (0x01F4)
    Searching for DP locations from MP(s)...    ccmsetup    05/02/2015 16:28:41    500 (0x01F4)
    Current AD site of machine is Millbank    LocationServices    05/02/2015 16:28:41    500 (0x01F4)
    Local Machine is joined to an AD domain    LocationServices    05/02/2015 16:28:41    500 (0x01F4)
    Current AD forest name is lc-uk.org, domain name is lc-uk.org    LocationServices    05/02/2015 16:28:41    500 (0x01F4)
    DhcpGetOriginalSubnetMask entry point is supported.    LocationServices    05/02/2015 16:28:41    500 (0x01F4)
    Begin checking Alternate Network Configuration    LocationServices    05/02/2015 16:28:41    500 (0x01F4)
    Finished checking Alternate Network Configuration    LocationServices    05/02/2015 16:28:41    500 (0x01F4)
    Adapter {743579BD-D66A-4BF9-B487-2AAC075B9473} is DHCP enabled. Checking quarantine status.    LocationServices    05/02/2015 16:28:41    500 (0x01F4)
    Adapter {8F25ACE0-AE8A-45DD-BF3D-F1315E2B9974} is DHCP enabled. Checking quarantine status.    LocationServices    05/02/2015 16:28:41    500 (0x01F4)
    Adapter {8AE4D673-90E8-4FCF-AE50-79474ADC6190} is DHCP enabled. Checking quarantine status.    LocationServices    05/02/2015 16:28:41    500 (0x01F4)
    Adapter {9AA2CA9C-0C0A-48E3-B67E-F9E574AE9DB2} is DHCP enabled. Checking quarantine status.    LocationServices    05/02/2015 16:28:41    500 (0x01F4)
    Sending message body '<ContentLocationRequest SchemaVersion="1.00">
      <AssignedSite SiteCode="COL"/>
      <ClientPackage/>
      <ClientLocationInfo LocationType="SMSPACKAGE" DistributeOnDemand="0" UseProtected="0" AllowCaching="0" BranchDPFlags="0" AllowHTTP="1" AllowSMB="0" AllowMulticast="0"
    UseInternetDP="0">
        <ADSite Name="Millbank"/>
        <Forest Name="lc-uk.org"/>
        <Domain Name="lc-uk.org"/>
        <IPAddresses>
    <IPAddress SubnetAddress="10.103.38.0" Address="10.103.38.10"/>
        </IPAddresses>
      </ClientLocationInfo>
    </ContentLocationRequest>
    '    ccmsetup    05/02/2015 16:28:41    500 (0x01F4)
    Sending message header '<Msg SchemaVersion="1.1"><ID>{57972056-54D4-461F-B818-D3420A0B5C51}</ID><SourceHost>LCD14572</SourceHost><TargetAddress>mp:[http]MP_LocationManager</TargetAddress><ReplyTo>direct:LCD14572:LS_ReplyLocations</ReplyTo><Priority>3</Priority><Timeout>600</Timeout><ReqVersion>5931</ReqVersion><TargetHost>COLSCCM01.lc-uk.org</TargetHost><TargetEndpoint>MP_LocationManager</TargetEndpoint><ReplyMode>Sync</ReplyMode><Protocol>http</Protocol><SentTime>2015-02-05T16:28:41Z</SentTime><Body
    Type="ByteRange" Offset="0" Length="1084"/><Hooks><Hook3 Name="zlib-compress"/></Hooks><Payload Type="inline"/></Msg>'    ccmsetup    05/02/2015
    16:28:41    500 (0x01F4)
    CCM_POST 'HTTP://COLSCCM01.lc-uk.org/ccm_system/request'    ccmsetup    05/02/2015 16:28:41    500 (0x01F4)
    Content boundary is '--aAbBcCdDv1234567890VxXyYzZ'    ccmsetup    05/02/2015 16:28:41    500 (0x01F4)
    Received header '<Msg SchemaVersion="1.1">
        <ID>{48D22538-0FEA-44E6-AAD2-1829DDED2223}</ID>
        <SourceID>GUID:A5143C3E-EA22-4B93-BFF5-B8B859F869F5</SourceID>
        <SourceHost>COLSCCM01</SourceHost>
        <TargetAddress>direct:LCD14572:LS_ReplyLocations</TargetAddress>
        <ReplyTo>MP_LocationManager</ReplyTo>
        <CorrelationID>{00000000-0000-0000-0000-000000000000}</CorrelationID>
        <Priority>3</Priority>
        <Timeout>600</Timeout>
        <TargetHost>LCD14572</TargetHost><TargetEndpoint>LS_ReplyLocations</TargetEndpoint><ReplyMode>Sync</ReplyMode><Protocol>http</Protocol><SentTime>2015-02-05T16:28:39Z</SentTime><Body
    Type="ByteRange" Offset="0" Length="2378"/><Hooks><Hook3 Name="zlib-compress"/><Hook Name="authenticate"><Property Name="Signature">3082019106092A864886F70D010702A08201823082017E020101310B300906052B0E03021A0500300B06092A864886F70D0107013182015D30820159020101303630223112301006035504031309434F4C5343434D3031310C300A06035504031303534D5302106A638C8D6A89DE904525D14326BE4DB0300906052B0E03021A0500300D06092A864886F70D01010105000482010027BAE95F5B0DD9F75743E1E40A189091900F78F19367C2A8328F823C63F24229608E7CF02FF2FE76FC61C6A61EF0FE8F19AC75755B88124B13964AE58F971DAB67E47B4DDCAA943B4C27F7AF9B5A0AD1DE956A3AACA26965F5FDAC8659E6263DBB55E025FB305C665AC1AA49972CC937A757EC14F1097DA27AB9998D7CAE332EC135A937A80285C87448AD7B4F4ED059063BCB5032920C65CE16FD32475CD395B279021F62E5C3B534697EDCD68A98D2A654379CCA17056F7B4FAB0346242CE56681F405DB9700FD766FDBD584BB69A4AC088BF3B971BE8B05B723701A22B9D76BB5C063F1BD32B56DB7B3BDC6D827E3D90106F3C1145E04B0629528EA24BD37</Property><Property
    Name="AuthSenderMachine">COLSCCM01;COLSCCM01.lc-uk.org;</Property><Property Name="MPSiteCode">COL</Property></Hook></Hooks><Payload Type="inline"/></Msg>'    ccmsetup  
     05/02/2015 16:28:41    500 (0x01F4)
    Received reply body '<ContentLocationReply SchemaVersion="1.00"><ContentInfo PackageFlags="16777216"><ContentHashValues/></ContentInfo><Sites><Site><MPSite SiteCode="COL" MasterSiteCode="COL"
    SiteLocality="LOCAL" IISPreferedPort="80" IISSSLPreferedPort="443"/><LocationRecords><LocationRecord><URL Name="http://COLSCCM01.lc-uk.org/SMS_DP_SMSPKG$/COL00002" Signature="http://COLSCCM01.lc-uk.org/SMS_DP_SMSSIG$/COL00002"/><ADSite
    Name="Millbank"/><IPSubnets><IPSubnet Address="10.20.0.0"/><IPSubnet Address=""/></IPSubnets><Metric Value=""/><Version>7958</Version><Capabilities SchemaVersion="1.0"><Property
    Name="SSLState" Value="0"/></Capabilities><ServerRemoteName>COLSCCM01.lc-uk.org</ServerRemoteName><DPType>SERVER</DPType><Windows Trust="1"/><Locality>LOCAL</Locality></LocationRecord></LocationRecords></Site></Sites><ClientPackage
    FullPackageID="COL00002" FullPackageVersion="2" FullPackageHash="DB3D5D115FC93F6275817FB9791864D98D4AF6897339B9D4AB1C0DE456C240A8" MinimumClientVersion="5.00.7958.1000" RandomizeMaxDays="7" ProgramEnabled="false"
    LastModifiedTime="30376953;932870912" SiteVersionMatch="true" SiteVersion="5.00.7958.1000" EnablePeerCache="true"/><RelatedContentIDs/></ContentLocationReply>'    ccmsetup    05/02/2015
    16:28:41    500 (0x01F4)
    Found local location 'http://COLSCCM01.lc-uk.org/SMS_DP_SMSPKG$/COL00002'    ccmsetup    05/02/2015 16:28:41    500 (0x01F4)
    Discovered 1 local DP locations.    ccmsetup    05/02/2015 16:28:41    500 (0x01F4)
    PROPFIND 'http://COLSCCM01.lc-uk.org/SMS_DP_SMSPKG$/COL00002'    ccmsetup    05/02/2015 16:28:41    500 (0x01F4)
    Got 401 challenge Retrying with Windows Auth...    ccmsetup    05/02/2015 16:28:41    500 (0x01F4)
    PROPFIND 'http://COLSCCM01.lc-uk.org/SMS_DP_SMSPKG$/COL00002'    ccmsetup    05/02/2015 16:28:41    500 (0x01F4)
    Using DP location http://COLSCCM01.lc-uk.org/SMS_DP_SMSPKG$/COL00002    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    GET 'http://COLSCCM01.lc-uk.org/SMS_DP_SMSPKG$/COL00002/ccmsetup.cab'    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Got 401 challenge Retrying with Windows Auth...    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    GET 'http://COLSCCM01.lc-uk.org/SMS_DP_SMSPKG$/COL00002/ccmsetup.cab'    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    C:\Windows\ccmsetup\ccmsetup.cab is Microsoft trusted.    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Successfully extracted manifest file C:\Windows\ccmsetup\ccmsetup.xml from file C:\Windows\ccmsetup\ccmsetup.cab.    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Retrieved client version '5.00.7958.1000' and minimum assignable site version '5.00.7845.1000' from manifest    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Checking compatibility of site version '5.00.7958.1000', expect newer than '5.00.7845.1000'    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Site version '5.00.7958.1000' is compatible. Client deployment will continue.    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Location 'http://COLSCCM01.lc-uk.org/SMS_DP_SMSPKG$/COL00002' passed site version check.    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Loading manifest file: C:\Windows\ccmsetup\ccmsetup.xml    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Successfully loaded ccmsetup manifest file.    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Checking if manifest version '5.00.7958.1000' is newer than the ccmsetup version '5.0.7958.1401'    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Running from temp downloaded folder or manifest is not newer than ccmsetup.    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Item 'i386/vcredist_x86.exe' is applicable. Add to the list.    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Item 'x64/vcredist_x64.exe' is not applicable.    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Item 'i386/vc50727_x86.exe' is applicable. Add to the list.    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Item 'x64/vc50727_x64.exe' is not applicable.    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Item 'i386/WindowsUpdateAgent30-x86.exe' is applicable. Add to the list.    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Item 'x64/WindowsUpdateAgent30-x64.exe' is not applicable.    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Item 'i386/msxml6.msi' is applicable. Add to the list.    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Item 'x64/msxml6_x64.msi' is not applicable.    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Item 'i386/msrdcoob_x86.exe' is not applicable.    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Item 'x64/msrdcoob_amd64.exe' is not applicable.    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Item 'pkgmgr.exe' is not applicable.    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Item 'dism.exe' is applicable. Add to the list.    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Item 'wimgapi.msi' is not applicable.    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Item 'i386/MicrosoftPolicyPlatformSetup.msi' is applicable. Add to the list.    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Item 'x64/MicrosoftPolicyPlatformSetup.msi' is not applicable.    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Item 'i386/WindowsFirewallConfigurationProvider.msi' is applicable. Add to the list.    ccmsetup    05/02/2015 1

    Hi, Yes i had a look at the log yesterday. there are errors initially, but then the install completes. I can copy the whole log here, the machine in question is LCD14572. If you could take a look would be great. Still doesnt explain why i had to manually
    push the client though:
    Execute query exec [sp_CP_GetPushRequestMachineResource] 2097154539    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:05:58    3648 (0x0E40)
    Execute query exec [sp_CP_GetPushMachineName] 2097154539    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:05:58    3648 (0x0E40)
    Received request: "2097154539" for machine name: "LCD15000" on queue: "Retry".    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:05:58    3648 (0x0E40)
    Stored request "2097154539", machine name "LCD15000", in queue "Processing".    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:05:58    3648 (0x0E40)
    Execute query exec [sp_CP_SetPushRequestMachineStatus] 2097154539, 1    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:05:58    3648 (0x0E40)
    ----- Started a new CCR processing thread. Thread ID is 0x12d8. There are now 1 processing threads    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:00    3648 (0x0E40)
    Submitted request successfully    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:00    3648 (0x0E40)
    Getting a new request from queue "Retry" after 100 millisecond delay.    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:00    3648 (0x0E40)
    Found CCR "2097154540.ccr" in queue "Retry".    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:00    3648 (0x0E40)
    ======>Begin Processing request: "2097154539", machine name: "LCD15000"    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:00    4824 (0x12D8)
    Execute query exec [sp_IsMPAvailable] N'COL'    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:00    4824 (0x12D8)
    ---> Trying the 'best-shot' account which worked for previous CCRs (index = 0x0)    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:00    4824 (0x12D8)
    ---> Attempting to connect to administrative share '\\LCD15000\admin$' using account 'LC-UK\VAdmin'    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:00    4824 (0x12D8)
    Execute query exec [sp_CP_GetPushRequestMachine] 2097154540    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:00    3648 (0x0E40)
    Successfully retrieved information for machine LCD14589 from DB    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:00    3648 (0x0E40)
    Execute query exec [sp_CP_GetPushRequestMachineIP] 2097154540    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:00    3648 (0x0E40)
    Execute query exec [sp_CP_GetPushRequestMachineResource] 2097154540    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:00    3648 (0x0E40)
    Execute query exec [sp_CP_GetPushMachineName] 2097154540    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:00    3648 (0x0E40)
    Received request: "2097154540" for machine name: "LCD14589" on queue: "Retry".    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:00    3648 (0x0E40)
    Stored request "2097154540", machine name "LCD14589", in queue "Processing".    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:00    3648 (0x0E40)
    Execute query exec [sp_CP_SetPushRequestMachineStatus] 2097154540, 1    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:00    3648 (0x0E40)
    ----- Started a new CCR processing thread. Thread ID is 0x1d10. There are now 2 processing threads    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:02    3648 (0x0E40)
    Submitted request successfully    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:02    3648 (0x0E40)
    Getting a new request from queue "Retry" after 100 millisecond delay.    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:02    3648 (0x0E40)
    Found CCR "2097154542.ccr" in queue "Retry".    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:02    3648 (0x0E40)
    ======>Begin Processing request: "2097154540", machine name: "LCD14589"    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:02    7440 (0x1D10)
    Execute query exec [sp_IsMPAvailable] N'COL'    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:02    7440 (0x1D10)
    ---> Trying the 'best-shot' account which worked for previous CCRs (index = 0x0)    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:02    7440 (0x1D10)
    ---> Attempting to connect to administrative share '\\LCD14589\admin$' using account 'LC-UK\VAdmin'    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:02    7440 (0x1D10)
    Execute query exec [sp_CP_GetPushRequestMachine] 2097154542    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:02    3648 (0x0E40)
    Successfully retrieved information for machine LCD14571 from DB    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:02    3648 (0x0E40)
    Execute query exec [sp_CP_GetPushRequestMachineIP] 2097154542    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:02    3648 (0x0E40)
    Execute query exec [sp_CP_GetPushRequestMachineResource] 2097154542    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:02    3648 (0x0E40)
    Execute query exec [sp_CP_GetPushMachineName] 2097154542    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:02    3648 (0x0E40)
    Received request: "2097154542" for machine name: "LCD14571" on queue: "Retry".    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:02    3648 (0x0E40)
    Stored request "2097154542", machine name "LCD14571", in queue "Processing".    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:02    3648 (0x0E40)
    Execute query exec [sp_CP_SetPushRequestMachineStatus] 2097154542, 1    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:02    3648 (0x0E40)
    ----- Started a new CCR processing thread. Thread ID is 0x1768. There are now 3 processing threads    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:04    3648 (0x0E40)
    Submitted request successfully    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:04    3648 (0x0E40)
    Getting a new request from queue "Retry" after 100 millisecond delay.    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:04    3648 (0x0E40)
    Sleeping for 60 minutes for queue "Retry".    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:04    3648 (0x0E40)
    ======>Begin Processing request: "2097154542", machine name: "LCD14571"    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:04    5992 (0x1768)
    Execute query exec [sp_IsMPAvailable] N'COL'    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:05    5992 (0x1768)
    ---> Trying the 'best-shot' account which worked for previous CCRs (index = 0x0)    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:05    5992 (0x1768)
    ---> Attempting to connect to administrative share '\\LCD14571\admin$' using account 'LC-UK\VAdmin'    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:05    5992 (0x1768)
    ---> WNetAddConnection2 failed (LOGON32_LOGON_NEW_CREDENTIALS) using account LC-UK\VAdmin (00000035)    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:21    4824 (0x12D8)
    ---> The device LCD15000 does not exist on the network. Giving up    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:21    4824 (0x12D8)
    ---> Trying the 'best-shot' account which worked for previous CCRs (index = 0x0)    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:21    4824 (0x12D8)
    ---> Attempting to connect to administrative share '\\LCD15000.lc-uk.org\admin$' using account 'LC-UK\VAdmin'    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:21    4824 (0x12D8)
    ---> WNetAddConnection2 failed (LOGON32_LOGON_NEW_CREDENTIALS) using account LC-UK\VAdmin (00000035)    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:23    7440 (0x1D10)
    ---> The device LCD14589 does not exist on the network. Giving up    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:23    7440 (0x1D10)
    ---> Trying the 'best-shot' account which worked for previous CCRs (index = 0x0)    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:23    7440 (0x1D10)
    ---> Attempting to connect to administrative share '\\LCD14589.lc-uk.org\admin$' using account 'LC-UK\VAdmin'    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:23    7440 (0x1D10)
    ---> WNetAddConnection2 failed (LOGON32_LOGON_NEW_CREDENTIALS) using account LC-UK\VAdmin (00000035)    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:26    5992 (0x1768)
    ---> The device LCD14571 does not exist on the network. Giving up    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:26    5992 (0x1768)
    ---> Trying the 'best-shot' account which worked for previous CCRs (index = 0x0)    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:26    5992 (0x1768)
    ---> Attempting to connect to administrative share '\\LCD14571.lc-uk.org\admin$' using account 'LC-UK\VAdmin'    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:26    5992 (0x1768)
    ---> WNetAddConnection2 failed (LOGON32_LOGON_NEW_CREDENTIALS) using account LC-UK\VAdmin (00000035)    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:47    4824 (0x12D8)
    ---> The device LCD15000.lc-uk.org does not exist on the network. Giving up    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:47    4824 (0x12D8)
    ---> Trying the 'best-shot' account which worked for previous CCRs (index = 0x0)    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:47    4824 (0x12D8)
    ---> Attempting to connect to administrative share '\\LCD15000\admin$' using account 'LC-UK\VAdmin'    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:47    4824 (0x12D8)
    ---> WNetAddConnection2 failed (LOGON32_LOGON_NEW_CREDENTIALS) using account LC-UK\VAdmin (00000035)    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:47    4824 (0x12D8)
    ---> The device LCD15000 does not exist on the network. Giving up    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:47    4824 (0x12D8)
    ---> ERROR: Unable to access target machine for request: "2097154539", machine name: "LCD15000",  access denied or invalid network path.    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:47  
     4824 (0x12D8)
    Execute query exec [sp_CP_SetLastErrorCode] 2097154539, 53    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:47    4824 (0x12D8)
    Stored request "2097154539", machine name "LCD15000", in queue "Retry".    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:47    4824 (0x12D8)
    Execute query exec [sp_CP_SetPushRequestMachineStatus] 2097154539, 2    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:47    4824 (0x12D8)
    Execute query exec [sp_CP_SetLatest] 2097154539, N'02/05/2015 16:06:47', 2    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:47    4824 (0x12D8)
    <======End request: "2097154539", machine name: "LCD15000".    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:47    4824 (0x12D8)
    ---> WNetAddConnection2 failed (LOGON32_LOGON_NEW_CREDENTIALS) using account LC-UK\VAdmin (00000035)    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:51    7440 (0x1D10)
    ---> The device LCD14589.lc-uk.org does not exist on the network. Giving up    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:51    7440 (0x1D10)
    ---> Trying the 'best-shot' account which worked for previous CCRs (index = 0x0)    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:51    7440 (0x1D10)
    ---> Attempting to connect to administrative share '\\LCD14589\admin$' using account 'LC-UK\VAdmin'    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:51    7440 (0x1D10)
    ---> WNetAddConnection2 failed (LOGON32_LOGON_NEW_CREDENTIALS) using account LC-UK\VAdmin (00000035)    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:51    7440 (0x1D10)
    ---> The device LCD14589 does not exist on the network. Giving up    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:51    7440 (0x1D10)
    ---> ERROR: Unable to access target machine for request: "2097154540", machine name: "LCD14589",  access denied or invalid network path.    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:51  
     7440 (0x1D10)
    Execute query exec [sp_CP_SetLastErrorCode] 2097154540, 53    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:51    7440 (0x1D10)
    Stored request "2097154540", machine name "LCD14589", in queue "Retry".    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:51    7440 (0x1D10)
    Execute query exec [sp_CP_SetPushRequestMachineStatus] 2097154540, 2    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:51    7440 (0x1D10)
    Execute query exec [sp_CP_SetLatest] 2097154540, N'02/05/2015 16:06:51', 2    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:51    7440 (0x1D10)
    <======End request: "2097154540", machine name: "LCD14589".    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:51    7440 (0x1D10)
    ---> WNetAddConnection2 failed (LOGON32_LOGON_NEW_CREDENTIALS) using account LC-UK\VAdmin (00000035)    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:55    5992 (0x1768)
    ---> The device LCD14571.lc-uk.org does not exist on the network. Giving up    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:55    5992 (0x1768)
    ---> Trying the 'best-shot' account which worked for previous CCRs (index = 0x0)    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:55    5992 (0x1768)
    ---> Attempting to connect to administrative share '\\LCD14571\admin$' using account 'LC-UK\VAdmin'    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:55    5992 (0x1768)
    ---> WNetAddConnection2 failed (LOGON32_LOGON_NEW_CREDENTIALS) using account LC-UK\VAdmin (00000035)    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:55    5992 (0x1768)
    ---> The device LCD14571 does not exist on the network. Giving up    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:55    5992 (0x1768)
    ---> ERROR: Unable to access target machine for request: "2097154542", machine name: "LCD14571",  access denied or invalid network path.    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:55  
     5992 (0x1768)
    Execute query exec [sp_CP_SetLastErrorCode] 2097154542, 53    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:55    5992 (0x1768)
    Stored request "2097154542", machine name "LCD14571", in queue "Retry".    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:55    5992 (0x1768)
    Execute query exec [sp_CP_SetPushRequestMachineStatus] 2097154542, 2    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:55    5992 (0x1768)
    Execute query exec [sp_CP_SetLatest] 2097154542, N'02/05/2015 16:06:55', 2    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:55    5992 (0x1768)
    <======End request: "2097154542", machine name: "LCD14571".    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:55    5992 (0x1768)
    CCR count in queue "Retry" is 3.    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:07:42    6564 (0x19A4)
    Sleeping for 634 seconds...    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:07:43    6564 (0x19A4)
    Thread has been inactive too long. Closing thread    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:16:47    4824 (0x12D8)
    --- This thread is terminating due to inactivity    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:16:47    4824 (0x12D8)
    ----- Terminated CCR processing thread. There are now 2 processing threads    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:16:47    4824 (0x12D8)
    Thread has been inactive too long. Closing thread    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:16:51    7440 (0x1D10)
    --- This thread is terminating due to inactivity    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:16:51    7440 (0x1D10)
    ----- Terminated CCR processing thread. There are now 1 processing threads    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:16:51    7440 (0x1D10)
    Thread has been inactive too long. Closing thread    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:16:55    5992 (0x1768)
    --- This thread is terminating due to inactivity    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:16:55    5992 (0x1768)
    ----- Terminated CCR processing thread. There are now 0 processing threads    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:16:55    5992 (0x1768)
    Sleeping for 1 seconds...    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:18:16    6564 (0x19A4)
    The Site Control File has not changed since the last parameter update.    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:18:17    6564 (0x19A4)
    Updating Site Parameters    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:18:18    6564 (0x19A4)
    MP Ports: 80    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:18:18    6564 (0x19A4)
    IISPreferedPort: 80    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:18:18    6564 (0x19A4)
    MP SSL Ports: 443    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:18:18    6564 (0x19A4)
    IISSSLPreferedPort: 443    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:18:18    6564 (0x19A4)
    Default MP: COLSCCM01.lc-uk.org    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:18:18    6564 (0x19A4)
    Default MP Type: 1    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:18:18    6564 (0x19A4)
    Default MP: [None]    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:18:18    6564 (0x19A4)
    Certificate Selection Criteria:    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:18:18    6564 (0x19A4)
    Certificate Store:    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:18:18    6564 (0x19A4)
    SSL State: 224    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:18:18    6564 (0x19A4)
    Select First Certificate: 1    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:18:18    6564 (0x19A4)
    Certificate Issuers:    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:18:18    6564 (0x19A4)
    Checking configuration information for server: COLSCCM01.LC-UK.ORG.    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:18:18    6564 (0x19A4)
    Checking configuration information for server: COLSCCM01.LC-UK.ORG.    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:18:18    6564 (0x19A4)
    Fallback Status Point: COLSCCM01.lc-uk.org    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:18:18    6564 (0x19A4)
    Install on DC: False    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:18:18    6564 (0x19A4)
    Option for installing using IP address: 0    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:18:18    6564 (0x19A4)
    Sleeping for 1200 seconds...    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:18:18    6564 (0x19A4)
    Waiting for change in directory "D:\Program Files\Microsoft Configuration Manager\inboxes\ccr.box" for queue "Incoming", (30 minute backup timeout).    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:23:39  
     2876 (0x0B3C)
    Execute query exec [sp_CP_GetNewPushMachines] N'COL'    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:28:09    2876 (0x0B3C)
    Execute query exec [sp_CP_SetPushRequestMachineStatus] 2097154468, 1    SMS_CLIENT_CONF

  • Couldn't verify 'C:\Windows\ccmsetup\ccmsetup.cab' authenticode signature. Return code 0x80096001 - SCCM 2012 R2 Client Deployment

    Hi All,
    I installed SCCM 2012 R2 one primary site from one of our customer & using SQL 2012 SP1 DB at the back-end.
    Facing Issues while deploying agent  from one of our client machine - OS - window 7 Professional Sp1:
    ==========[ ccmsetup started in process 3828 ]==========
    ccmsetup 25-02-2014 02:20:37 PM
    284 (0x011C)
    Running on platform X86 ccmsetup
    25-02-2014 02:20:37 PM 284 (0x011C)
    Updated security on object C:\Windows\ccmsetup\cache\.
    ccmsetup 25-02-2014 02:20:37 PM
    284 (0x011C)
    Launch from folder C:\Windows\ccmsetup\ ccmsetup
    25-02-2014 02:20:37 PM 284 (0x011C)
    CcmSetup version: 5.0.7958.1000 ccmsetup
    25-02-2014 02:20:37 PM 284 (0x011C)
    Successfully started the ccmsetup service ccmsetup
    25-02-2014 02:20:37 PM 332 (0x014C)
    In ServiceMain ccmsetup
    25-02-2014 02:20:37 PM 1480 (0x05C8)
    Folder 'Microsoft\Configuration Manager' not found. Task does not exist.
    ccmsetup 25-02-2014 02:20:37 PM
    332 (0x014C)
    CcmSetup is exiting with return code 0 ccmsetup
    25-02-2014 02:20:37 PM 332 (0x014C)
    Running on 'Microsoft Windows 7 Professional ' (6.1.7601). Service Pack (1.0). SuiteMask = 272. Product Type = 18
    ccmsetup 25-02-2014 02:20:37 PM
    1480 (0x05C8)
    Ccmsetup command line: "C:\Windows\ccmsetup\ccmsetup.exe" /runservice "/config:C:\Windows\ccmsetup\MobileClientUnicode.tcf" "/RetryWinTask:1"
    ccmsetup 25-02-2014 02:20:37 PM
    1480 (0x05C8)
    Command line parameters for ccmsetup have been specified.  No registry lookup for command line parameters is required.
    ccmsetup 25-02-2014 02:20:37 PM
    1480 (0x05C8)
    Command line: "C:\Windows\ccmsetup\ccmsetup.exe" /runservice "/config:C:\Windows\ccmsetup\MobileClientUnicode.tcf" "/RetryWinTask:1"
    ccmsetup 25-02-2014 02:20:37 PM
    1480 (0x05C8)
    SslState value: 224 ccmsetup
    25-02-2014 02:20:37 PM 1480 (0x05C8)
    CCMHTTPPORT:    80 ccmsetup
    25-02-2014 02:20:37 PM 1480 (0x05C8)
    CCMHTTPSPORT:    443 ccmsetup
    25-02-2014 02:20:37 PM 1480 (0x05C8)
    CCMHTTPSSTATE:    480 ccmsetup
    25-02-2014 02:20:37 PM 1480 (0x05C8)
    CCMHTTPSCERTNAME:     ccmsetup
    25-02-2014 02:20:37 PM 1480 (0x05C8)
    FSP:    SCCM.MYDOMAIN.COM ccmsetup
    25-02-2014 02:20:37 PM 1480 (0x05C8)
    CCMCERTISSUERS:    CN=MYDOMAIN-CA-CA; DC=MYDOMAIN; DC=COM
    ccmsetup 25-02-2014 02:20:37 PM
    1480 (0x05C8)
    CCMFIRSTCERT:    1 ccmsetup
    25-02-2014 02:20:37 PM 1480 (0x05C8)
    Config file:      C:\Windows\ccmsetup\MobileClientUnicode.tcf
    ccmsetup 25-02-2014 02:20:37 PM
    1480 (0x05C8)
    Retry time:       10 minute(s)
    ccmsetup 25-02-2014 02:20:37 PM
    1480 (0x05C8)
    MSI log file:     C:\Windows\ccmsetup\Logs\client.msi.log
    ccmsetup 25-02-2014 02:20:37 PM
    1480 (0x05C8)
    MSI properties:    INSTALL="ALL" SMSSITECODE="PRI" CCMHTTPPORT="80" CCMHTTPSPORT="443" CCMHTTPSSTATE="480" FSP="SCCM.MYDOMAIN.COM" CCMCERTISSUERS="CN=MYDOMAIN-CA-CA; DC=MYDOMAIN; DC=COM"
    CCMFIRSTCERT="1" ccmsetup
    25-02-2014 02:20:37 PM 1480 (0x05C8)
    Source List: ccmsetup
    25-02-2014 02:20:37 PM 1480 (0x05C8)
                      \\SCCM.MYDOMAIN.COM\SMSClient
    ccmsetup 25-02-2014 02:20:37 PM
    1480 (0x05C8)
                      \\SCCMDMZ.MYDOMAIN.COM\SMSClient
    ccmsetup 25-02-2014 02:20:37 PM
    1480 (0x05C8)
                      \\SCCM.MYDOMAIN.COM\SMSClient
    ccmsetup 25-02-2014 02:20:37 PM
    1480 (0x05C8)
                      \\SCCMDMZ.MYDOMAIN.COM\SMSClient
    ccmsetup 25-02-2014 02:20:37 PM
    1480 (0x05C8)
    MPs: ccmsetup
    25-02-2014 02:20:37 PM 1480 (0x05C8)
                      SCCM.MYDOMAIN.COM
    ccmsetup 25-02-2014 02:20:37 PM
    1480 (0x05C8)
    No version of the client is currently detected.
    ccmsetup 25-02-2014 02:20:37 PM
    1480 (0x05C8)
    Folder 'Microsoft\Configuration Manager' not found. Task does not exist.
    ccmsetup 25-02-2014 02:20:37 PM
    1480 (0x05C8)
    Attempting #1 retry. Max 5 retries. ccmsetup
    25-02-2014 02:20:37 PM 1480 (0x05C8)
    Updated security on object C:\Windows\ccmsetup\.
    ccmsetup 25-02-2014 02:20:37 PM
    1480 (0x05C8)
    Sending Fallback Status Point message to 'SCCM.MYDOMAIN.COM', STATEID='100'.
    ccmsetup 25-02-2014 02:20:37 PM
    1480 (0x05C8)
    Failed to get client version for sending messages to FSP. Error 0x8004100e
    ccmsetup 25-02-2014 02:20:37 PM
    1480 (0x05C8)
    Params to send FSP message '5.0.7958.1000 Deployment '
    ccmsetup 25-02-2014 02:20:37 PM
    1480 (0x05C8)
    Request failed: 500 Internal Server Error
    FSPStateMessage
    25-02-2014 02:20:37 PM 1480 (0x05C8)
    Running as user "SYSTEM" ccmsetup
    25-02-2014 02:20:37 PM 1480 (0x05C8)
    Detected 69650 MB free disk space on system drive.
    ccmsetup 25-02-2014 02:20:37 PM
    1480 (0x05C8)
    Checking Write Filter Status. ccmsetup
    25-02-2014 02:20:37 PM 1480 (0x05C8)
    This is not a supported write filter device. We are not in a write filter maintenance mode.
    ccmsetup 25-02-2014 02:20:37 PM
    1480 (0x05C8)
    Performing AD query: '(&(ObjectCategory=mSSMSManagementPoint)(mSSMSDefaultMP=TRUE)(mSSMSSiteCode=PRI))'
    ccmsetup 25-02-2014 02:20:38 PM
    1480 (0x05C8)
    OperationalXml '<ClientOperationalSettings><Version>5.00.7958.1000</Version><SecurityConfiguration><SecurityModeMask>0</SecurityModeMask><SecurityModeMaskEx>448</SecurityModeMaskEx><HTTPPort>80</HTTPPort><HTTPSPort>443</HTTPSPort><CertificateStoreName></CertificateStoreName><CertificateIssuers>CN=MYDOMAIN-CA-CA;
    DC=MYDOMAIN; DC=COM</CertificateIssuers><CertificateSelectionCriteria></CertificateSelectionCriteria><CertificateSelectFirstFlag>1</CertificateSelectFirstFlag><SiteSigningCert>308202F2308201DAA00302010202105F02416299E5D1BC44A2DBB2F1CFDE39300D06092A864886F70D01010B05003016311430120603550403130B53697465205365727665723020170D3134303130363037333732365A180F32313133313231343037333732365A3016311430120603550403130B536974652053657276657230820122300D06092A864886F70D01010105000382010F003082010A0282010100B82EF14C5EEB69D726A3E24B3A2248ACC67667E2D4A4021792169437C5C2A03A35649F0FA3D01DC7FF3BB8668C30662B322A73562FA54EE19DF6A0533EBE895F0CA833E375CA2B8298C59C2372B05A61AF1F41360ED700508678AE2A4321F99DCE7C42139E9690009017A69568D59D2480E45EE724EF902757B66ACE24A8C1705B6628863F7C6DD9140B466F36FCB8FA891AF9F01BC1C94093EDE814D711ACB13F7067F69AD970DAF03AA58E1E5C943582B4B5D0B49BB99E7C1E51D76661BE0A4DEBA2FDF6121C7211A33E8E3092F9CFBECCD0EB9BDE2E1E83EB98F57DD905226B1693D1EEFDE826593D5538902C5292B119303CA02D41B11E762BCC1AF118630203010001A33A303830200603551D110419301782155343434D2E68656C70616765696E6469612E6F726730140603551D25040D300B06092B060104018237650B300D06092A864886F70D01010B05000382010100839328B4017E3317BD05E6D35022AFC1C0AA91E7B1EA838143B257BDAF9780B3C582547891FE4361E5D789B269C4E49CFDAA2E38E85AE7252980F392EC7378F482001909E92F752A6292AFF0FE9E9634B915A70CF3E5DECE35B272630B6CAF5A73FFF4928F847B63A35DF05E2B41F05AAD7C436B166AF6C157789FAA084BB5A38E0592F65F5C6D29588DF6B79B6A51AB6D6D2985FDB346FA88FDD36EE0DAF53603F2036371F7D6866F49A96AB9BE3ED757743033C7C3F97FDF772F699F38DB52775BD0B0090381F89B3D8AD2A49DC653991BCE031517F6BA61FCED45E23139CA01E32F61E865DBA2F5FF0E30403BFC7FEDE1892EE890B765C38FE2F06448FC58</SiteSigningCert></SecurityConfiguration><RootSiteCode>PRI</RootSiteCode><CCM>
    <CommandLine>SMSSITECODE=PRI</CommandLine> </CCM><FSP> <FSPServer>SCCM.MYDOMAIN.COM</FSPServer> </FSP><Capabilities SchemaVersion ="1.0"><Property Name="SSLState" Value="0" /></Capabilities><Domain
    Value="MYDOMAIN.COM" /><Forest Value="MYDOMAIN.COM" /></ClientOperationalSettings>'
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Unable to open Registry key Software\Microsoft\CCM. Return Code [80070002]. Client HTTPS state is Unknown.
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    The MP name retrieved is 'SCCM.MYDOMAIN.COM' with version '7958' and capabilities '<Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities>'
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    MP 'SCCM.MYDOMAIN.COM' is compatible ccmsetup
    25-02-2014 02:20:39 PM 1480 (0x05C8)
    Retrieved 1 MP records from AD for site 'PRI'
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Retrived site version '5.00.7958.1000' from AD for site 'PRI'
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    SiteCode:         PRI ccmsetup
    25-02-2014 02:20:39 PM 1480 (0x05C8)
    SiteVersion:      5.00.7958.1000
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Ccmsetup is being restarted due to an administrative action. Installation files will be reset and downloaded again.
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Only one MP SCCM.MYDOMAIN.COM is specified. Use it.
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Searching for DP locations from MP(s)... ccmsetup
    25-02-2014 02:20:39 PM 1480 (0x05C8)
    Current AD site of machine is Default-First-Site
    LocationServices 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Local Machine is joined to an AD domain LocationServices
    25-02-2014 02:20:39 PM 1480 (0x05C8)
    Current AD forest name is MYDOMAIN.COM, domain name is MYDOMAIN.COM
    LocationServices 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    DhcpGetOriginalSubnetMask entry point is supported.
    LocationServices 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Begin checking Alternate Network Configuration
    LocationServices 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Finished checking Alternate Network Configuration
    LocationServices 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Adapter {95A6D3CE-4F28-4E55-A29A-FF3F1A317C61} is DHCP enabled. Checking quarantine status.
    LocationServices 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Adapter {6024AB68-EB5E-4370-BD9E-8B2CEFE261A8} is DHCP enabled. Checking quarantine status.
    LocationServices 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Sending message body '<ContentLocationRequest SchemaVersion="1.00">
      <AssignedSite SiteCode="PRI"/>
      <ClientPackage/>
      <ClientLocationInfo LocationType="SMSPACKAGE" DistributeOnDemand="0" UseProtected="0" AllowCaching="0" BranchDPFlags="0" AllowHTTP="1" AllowSMB="0" AllowMulticast="0"
    UseInternetDP="0">
        <ADSite Name="Default-First-Site"/>
        <Forest Name="MYDOMAIN.COM"/>
        <Domain Name="MYDOMAIN.COM"/>
        <IPAddresses>
    <IPAddress SubnetAddress="10.0.0.0" Address="10.10.10.192"/>
        </IPAddresses>
      </ClientLocationInfo>
    </ContentLocationRequest>
    ' ccmsetup
    25-02-2014 02:20:39 PM 1480 (0x05C8)
    Sending message header '<Msg SchemaVersion="1.1"><ID>{F6331322-941A-4E44-974F-A755B1B016A4}</ID><SourceHost>POOJASETHI</SourceHost><TargetAddress>mp:[http]MP_LocationManager</TargetAddress><ReplyTo>direct:POOJASETHI:LS_ReplyLocations</ReplyTo><Priority>3</Priority><Timeout>600</Timeout><ReqVersion>5931</ReqVersion><TargetHost>SCCM.MYDOMAIN.COM</TargetHost><TargetEndpoint>MP_LocationManager</TargetEndpoint><ReplyMode>Sync</ReplyMode><Protocol>http</Protocol><SentTime>2014-02-25T08:50:39Z</SentTime><Body
    Type="ByteRange" Offset="0" Length="1126"/><Hooks><Hook3 Name="zlib-compress"/></Hooks><Payload Type="inline"/></Msg>'
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    CCM_POST 'HTTP://SCCM.MYDOMAIN.COM/ccm_system/request'
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Content boundary is '--aAbBcCdDv1234567890VxXyYzZ'
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Received header '<Msg SchemaVersion="1.1">
    <ID>{14ADB6F1-95C1-4EEF-B8BA-16CD020ACFCF}</ID>
    <SourceID>GUID:526CE573-6351-407E-AC2A-2C3927979AD9</SourceID>
    <SourceHost>SCCM</SourceHost>
    <TargetAddress>direct:POOJASETHI:LS_ReplyLocations</TargetAddress>
    <ReplyTo>MP_LocationManager</ReplyTo>
    <CorrelationID>{00000000-0000-0000-0000-000000000000}</CorrelationID>
    <Priority>3</Priority>
    <Timeout>600</Timeout>
    <Capabilities><Property Name="SSL" Version="1"/></Capabilities><ReplyCapabilities><AllowRegistrationReset>direct:SCCM:ClientRegistration</AllowRegistrationReset></ReplyCapabilities><TargetHost>POOJASETHI</TargetHost><TargetEndpoint>LS_ReplyLocations</TargetEndpoint><ReplyMode>Sync</ReplyMode><Protocol>https</Protocol><SentTime>2014-02-25T08:50:39Z</SentTime><Body
    Type="ByteRange" Offset="0" Length="3494"/><Hooks><Hook3 Name="zlib-compress"/><Hook Name="authenticate"><Property Name="Signature">3082018C06092A864886F70D010702A082017D30820179020101310B300906052B0E03021A0500300B06092A864886F70D01070131820158308201540201013031301D310D300B060355040313045343434D310C300A06035504031303534D530210165D06FED03B9DB94FE763D9360D9AC5300906052B0E03021A0500300D06092A864886F70D010101050004820100501708FC116FFF030AF508AA81D93086786D1E088F8729906DBFC42B6239C511CF34CB5AA9008B4356FA2D314EF43E85D8555A7D185888870EDC7A3D3700AA974B5246D59D9CC72614845768082F3AB463F2F92025D4505C1E8CBF243F6245E224EAE31091A18C9B0ADE6DEF3500DC599B04BDCE176EA49159D2947C84328F7BD2F0F6C93271F72F5826ED6717C19B5C36CDA9E1B02F9810F1D6B91659E9FD5DB25AFE155ECF86A3535A28ADE0B53505C20E69FB4A6406904299D60098B9756180BA3B6D742E3483F9FE0A45A8EC1611565377D8E6788E51057F7082339BF67771BAFC985C56784CE756BCB39C59E77071BCEE7352500B961D4509FC3EFE3828</Property><Property
    Name="AuthSenderMachine">SCCM;SCCM.MYDOMAIN.COM;</Property><Property Name="MPSiteCode">PRI</Property></Hook></Hooks><Payload Type="inline"/></Msg>'
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Received reply body '<ContentLocationReply SchemaVersion="1.00"><ContentInfo PackageFlags="16777216"><ContentHashValues/></ContentInfo><Sites><Site><MPSite SiteCode="PRI" MasterSiteCode="PRI"
    SiteLocality="LOCAL" IISPreferedPort="80" IISSSLPreferedPort="443"/><LocationRecords><LocationRecord><URL Name="http://SCCM.MYDOMAIN.COM/SMS_DP_SMSPKG$/PRI00003" Signature="http://SCCM.MYDOMAIN.COM/SMS_DP_SMSSIG$/PRI00003"/><ADSite
    Name="Default-First-Site"/><IPSubnets><IPSubnet Address="10.0.0.0"/><IPSubnet Address=""/></IPSubnets><Metric Value=""/><Version>7958</Version><Capabilities SchemaVersion="1.0"><Property
    Name="SSLState" Value="0"/></Capabilities><ServerRemoteName>SCCM.MYDOMAIN.COM</ServerRemoteName><DPType>SERVER</DPType><Windows Trust="1"/><Locality>LOCAL</Locality></LocationRecord><LocationRecord><URL
    Name="http://SCCMDMZ.MYDOMAIN.COM/SMS_DP_SMSPKG$/PRI00003" Signature="http://SCCMDMZ.MYDOMAIN.COM/SMS_DP_SMSSIG$/PRI00003"/><ADSite Name="Default-First-Site"/><IPSubnets><IPSubnet Address="172.16.10.0"/><IPSubnet
    Address=""/></IPSubnets><Metric Value=""/><Version>7958</Version><Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities><ServerRemoteName>SCCMDMZ.MYDOMAIN.COM</ServerRemoteName><DPType>SERVER</DPType><Windows
    Trust="1"/><Locality>FALLBACK</Locality></LocationRecord></LocationRecords></Site></Sites><ClientPackage FullPackageID="PRI00003" FullPackageVersion="1" FullPackageHash="BFC11E099E8F451107B43E0DBEFD93B01DB2D6453DA74F8A2CB94B73D676C1CD"
    MinimumClientVersion="5.00.7958.1000" RandomizeMaxDays="7" ProgramEnabled="false" LastModifiedTime="30354761;897103744" SiteVersionMatch="true" SiteVersion="5.00.7958.1000" EnablePeerCache="true"/><RelatedContentIDs/></ContentLocationReply>'
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Found local location 'http://SCCM.MYDOMAIN.COM/SMS_DP_SMSPKG$/PRI00003'
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Found remote location 'http://SCCMDMZ.MYDOMAIN.COM/SMS_DP_SMSPKG$/PRI00003'
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Discovered 1 local DP locations. ccmsetup
    25-02-2014 02:20:39 PM 1480 (0x05C8)
    PROPFIND 'http://SCCM.MYDOMAIN.COM/SMS_DP_SMSPKG$/PRI00003'
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Using DP location http://SCCM.MYDOMAIN.COM/SMS_DP_SMSPKG$/PRI00003
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    GET 'http://SCCM.MYDOMAIN.COM/SMS_DP_SMSPKG$/PRI00003/ccmsetup.cab'
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Couldn't verify 'C:\Windows\ccmsetup\ccmsetup.cab' authenticode signature. Return code 0x80096001
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Sending Fallback Status Point message to 'SCCM.MYDOMAIN.COM', STATEID='316'.
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Failed to get client version for sending messages to FSP. Error 0x8004100e
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Params to send FSP message '5.0.7958.1000 Deployment Error 0x80004005. Pre-req file name: C:\Windows\ccmsetup\ccmsetup.cab'
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Request failed: 500 Internal Server Error
    FSPStateMessage
    25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Failed to extract manifest cab file with error 0x80004005. Try next location.
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Enumerated all 1 local DP locations but none of them is good. Fallback to MP.
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    GET 'HTTP://SCCM.MYDOMAIN.COM/CCM_Client/ccmsetup.cab'
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Couldn't verify 'C:\Windows\ccmsetup\ccmsetup.cab' authenticode signature. Return code 0x80096001
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    CcmSetup failed with error code 0x80004005
    ccmsetup 25-02-2014 02:20:39 PM
    284 (0x011C)
    Please let me know any solution or workaround for this 
    Thanks Rahul$

    Hi,
    The client cannot verify the signature of ccmsetup.cab. I suggest you check the Trusted Root Certification Authorities in certificate store on the client to see whether a certificate is missing.
    Try to enable verbose logging for SCCM client installation. Then check the log to see whether there are some useful information.(http://technet.microsoft.com/en-us/library/gg699356.aspx)  
    Best Regards,
    Joyce Li
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Adding JAR file to project

    Hi All
    How can i add jar to my project environment.
    Actually what i did was.
    Created one folder called "JavaWork" like d:\JavaWork
    and put the jar file into this folder and wrote a test class which is importing some classes from the jar file.
    how to use jar ? Please someone help me.
    Thanks in advance
    Shan

    `man jar`
    jar(1) jar(1)
    NAME
    jar - Java archive tool
    SYNOPSIS
    jar [ -C ] [ c ] [ f ] [ i ] [ M ] [ m ] [ O ] [ t ] [ u ]
    [ v ]
    [ x file ] [ manifest-file ] destination input-file
    [ input-files ]
    DESCRIPTION
    The jar tool is a Java application that combines multiple
    files into a single JAR archive file. It is also a gen-
    eral-purpose archiving and compression tool, based on ZIP
    and the ZLIB compression format. However, jar was
    designed mainly to facilitate the packaging of Java
    applets or applications into a single archive. When the
    components of an applet or application (.class files,
    images and sounds) are combined into a single archive,
    they can be downloaded by a Java agent (like a browser) in
    a single HTTP transaction, rather than require a new con-
    nection for each piece. This dramatically improves down-
    load time. The jar tool also compresses files, which fur-
    ther improves download time. In addition, it allows indi-
    vidual entries in a file to be signed by the applet author
    so that their origins can be authenticated. The syntax
    for the jar tool is almost identical to the syntax for the
    tar(1) command. A jar archive can be used as a class path
    entry, whether or not it is compressed.
    The three types of input files for the jar tool are:
    o Manifest file (optional)
    o Destination jar file
    o Files to be archived
    Typical usage is:
    example% jar cf myjarfile *.class
    In this example, all the class files in the current direc-
    tory are placed in the file named myjarfile. A manifest
    file is automatically generated by the jar tool and is
    always the first entry in the jar file. By default, it is
    named META-INF/MANIFEST.MF. The manifest file is the
    place where any meta-information about the archive is
    stored. Refer to the Manifest Format in the SEE ALSO sec-
    tion for details about how meta-information is stored in
    the manifest file.
    To use a pre-existing manifest file to create a new jar
    archive, specify the old manifest file with the m option:
    example% jar cmf myManifestFile myJarFile *.class
    When you specify cfm instead of cmf (that is, you invert
    the order of the m and f options), you need to specify the
    name of the jar archive first, followed by the name of the
    manifest file:
    example% jar cfm myJarFile myManifestFile *.class
    The manifest uses RFC822 ASCII format, so it is easy to
    view and process manifest-file contents.
    OPTIONS
    The following options are supported:
    -C Changes directories during execution of the jar com-
    mand. For example:
    example% jar uf foo.jar -C classes *
    c Creates a new or empty archive on the standard out-
    put.
    f The second argument specifies a jar file to process.
    In the case of creation, this refers to the name of
    the jar file to be created (instead of on stdout).
    For table or xtract, the second argument identifies
    the jar file to be listed or extracted.
    i Generates index information for the specified jar
    file and its dependent jar files. For example,
    example% jar i foo.jar
    would generate an INDEX.LIST file in foo.jar which con-
    tains location information for each package in foo.jar and
    all the jar files specified in foo.jar's Class-Path
    attribute.
    M Does not create a manifest file for the entries.
    m Includes manifest information from specified pre-
    existing manifest file. Example use:
    example% jar cmf myManifestFile myJarFile *.class
    You can add special-purpose name-value attribute
    headers to the manifest file that are not contained
    in the default manifest. Examples of such headers
    are those for vendor information, version informa-
    tion, package sealing, and headers to make JAR-bun-
    dled applications executable. See the JAR Files
    trail in the Java Tutorial and the JRE Notes for
    Developers web page for examples of using the m
    option.
    O Stores only, without using ZIP compression.
    t Lists the table of contents from standard output.
    u Updates an existing JAR file by adding files or
    changing the manifest. For example:
    example% jar uf foo.jar foo.class
    adds the file foo.class to the existing JAR file
    foo.jar, and
    example% jar umf foo.jar
    updates foo.jar's manifest with the information in
    manifest.
    v Generates verbose output on stderr.
    x file
    Extracts all files, or just the named files, from
    standard input. If file is omitted, then all files
    are extracted; otherwise, only the specified file or
    files are extracted.
    If any of the files is a directory, then that direc-
    tory is processed recursively.
    EXAMPLES
    To add all of the files in a particular directory to an
    archive:
    example% ls
    0.au 3.au 6.au 9.au at_work.gif
    1.au 4.au 7.au Animator.class monkey.jpg
    e.au 5.au 8.au Wave.class spacemusic.au
    example% jar cvf bundle.jar *
    adding: 0.au
    adding: 1.au
    adding: 2.au
    adding: 3.au
    adding: 4.au
    adding: 5.au
    adding: 6.au
    adding: 7.au
    adding: 8.au
    adding: 9.au
    adding: Animator.class
    adding: Wave.class
    adding: at_work.gif
    adding: monkey.jpg
    adding: spacemusic.au
    example%
    If you already have subdirectories for images, audio
    files, and classes that already exist in an HTML direc-
    tory, use jar to archive each directory to a single jar
    file:
    example% ls
    audio classes images
    example% jar cvf bundle.jar audio classes images
    adding: audio/1.au
    adding: audio/2.au
    adding: audio/3.au
    adding: audio/spacemusic.au
    adding: classes/Animator.class
    adding: classes/Wave.class
    adding: images/monkey.jpg
    adding: images/at_work.gif
    example% ls -l
    total 142
    drwxr-xr-x 2 brown green 512 Aug 1 22:33 audio
    -rw-r--r-- 1 brown green 68677 Aug 1 22:36 bundle.jar
    drwxr-xr-x 2 brown green 512 Aug 1 22:26 classes
    drwxr-xr-x 2 brown green 512 Aug 1 22:25 images
    example%
    To see the entry names in the jar file using the jar tool
    and the t option:
    example% ls
    audio bundle.jar classes images
    example% jar tf bundle.jar
    META-INF/MANIFEST.MF
    audio/1.au
    audio/2.au
    audio/3.au
    audio/spacemusic.au
    classes/Animator.class
    classes/Wave.class
    images/monkey.jpg
    images/at_work.gif
    example%
    To display more information about the files in the
    archive, such as their size and last modified date, use
    the v option:
    example% jar tvf bundle.jar
    145 Thu Aug 01 22:27:00 PDT 1996 META-INF/MANIFEST.MF
    946 Thu Aug 01 22:24:22 PDT 1996 audio/1.au
    1039 Thu Aug 01 22:24:22 PDT 1996 audio/2.au
    993 Thu Aug 01 22:24:22 PDT 1996 audio/3.au
    48072 Thu Aug 01 22:24:23 PDT 1996 audio/spacemusic.au
    16711 Thu Aug 01 22:25:50 PDT 1996 classes/Animator.class
    3368 Thu Aug 01 22:26:02 PDT 1996 classes/Wave.class
    12809 Thu Aug 01 22:24:48 PDT 1996 images/monkey.jpg
    527 Thu Aug 01 22:25:20 PDT 1996 images/at_work.gif
    example%
    If you bundled a stock trade application (applet) into the
    following jar files,
    main.jar buy.jar sell.jar other.jar
    and you specified the Class-Path attribute in main.jar's
    manifest as
    Class-Path: buy.jar sell.jar other.jar
    then you can use the i option to speed up your applica-
    tion's class loading time:
    example$ jar i main.jar
    An INDEX.LIST file is inserted in the META-INF directory
    which will enable the application class loader to download
    the right jar files when it is searching for classes or
    resources.
    SEE ALSO
    keytool(1)
    JAR Files @
    http://java.sun.com/docs/books/tutorial/jar/
    JRE Notes @
    http://java.sun.com/j2se/1.3/runtime.html#exam-
    ple
    JAR Guide @
    http://java.sun.com/j2se/1.3/docs/guide/jar/index.html
    For information on related topics, use the search link @
    http://java.sun.com/
    13 June 2000 jar(1)

  • [CS4/JS] Pnglib.jsx -- A PNG creator function

    After seeing Marc Autret's marvellous pngswatch script, I spent several hours creating PNGs with Photoshop, copying its hex data into Javascript compatible format, finding the relevant color bytes to change ... and all the while I was thinking, "there was an uncompressed PNG format, wasn't there?"
    That's not because I have a bad memory.
    Sure, Marc created his PNG in some other program, saved it as a compressed file, and 'only' changed the palette part in his script -- which involves delving quite deeply into the actual PNG format --, and that's a feasible way of doing the stuff he intended to: change jsut the color. But if you want to actually create a dropdown or listbox image on the fly -- say, for a line widths dropdown --, you have to be able to create an entire image a-new. And PNGs are notoriously difficult to create, because the image pixels themselves are compressed using the very advanced zlib compression.
    But (as I was thinking) ... zlib also allows a "non-compressed" format!
    With some sleuthing I found a couple of hints to get me started, and found a totally useful utility as well: pngcheck, which can take a PNG to bits and tell you what's wrong with it. So, here you have it: a lightweight PNGLIB Javascript, that can create any PNG right out of nothing!
    Any image, apart from the limitations, that is.
    Its main limitation is that you can only create 8-bit palettized PNGs with it. I see no reason to add umpteen functions to cater for the occasional 1-, 2-, or 4-bit or true color PNG, or to add total support for all the different types of transparency that PNG supports. But, hey, its main use is for icons, and you'll have to do with the limits of "just" 256 colors -- or even less than that, if you reserve one or more colors for transparency. On the plus side again, it's total real pixel alpha-level transparency we're talking about (overall that can make your graphics still better than the average '90s DOS game).
    Using the function is easy; at the bottom of the script is an example, but it boils down to:
    Create a string for the palette's colors. Each color is a triplet, in RGB order.
    Create a string for the transparency indexes. Each single entry determines the transparency of the full palette color at that index; the first entry applies to color index #0, the second to color index #1, and so on. The value [00] indicates zero opacity (fully transparent), the value [FF] full opacity. The transparency index string doesn't need to define all of your colors' transparencies; unlisted values are "normal", non-transparent, and if you only need to make color index #0 transparent, you are done right there and then. By the way, the transparency string may be omitted entirely if you don't need it.
    Create a string for the image itself -- wide x high color indexes. Make sure you fill the entire image, 'cause my function will refuse to work if this string length isn't correct.
    Then call my function: myImg = makePng (wide, high, palette, pixels [, transparency]);
    The returned string can be used immediately as a source for a ScriptUI dialog image, or -- less useful, but might come in handy -- be written to a file.
    Tips: hmm. I dunno. Don't use this function to create super-huge PNGs, I guess. The non-compression format uses a couple of checksums on its own, and they are sure to fail on very large images. But, come on, be realistic: it's not a Photoshop replacement we're talking about, it's for icons!
    And Be Kind to Your Users: it's rather overkill to include all of the data for a static PNG image, such as a logo or something. Just create that once, and include the binary data in your script! This function is designed to create PNGs on the fly, from variable rather than static data.
    Before I forget: here it is. Enjoy!
    /****** PngLib.jsx ******/
    /* A Jongware Product -- based *very* heavily, however, upon Marc Autret's pngswatch
    /* script (http://forums.adobe.com/thread/780105?tstart=0), and with further
    /* help from the pages of David "Code Monk" Jones (http://drj11.wordpress.com/2007/11/20/a-use-for-uncompressed-pngs/)
    /* and Christian Fröschlin (http://www.chrfr.de/software/midp_png.html)
    /* Any errors, of course, must have crept in while I wasn't paying attention.
    /* [Jw] 26-Jan-2010
    var makePng = (function()
         // Table of CRCs of 8-bit messages
         var CRC_256 = [0, 0x77073096, 0xee0e612c, 0x990951ba, 0x76dc419, 0x706af48f, 0xe963a535, 0x9e6495a3, 0xedb8832, 0x79dcb8a4, 0xe0d5e91e, 0x97d2d988, 0x9b64c2b, 0x7eb17cbd, 0xe7b82d07, 0x90bf1d91, 0x1db71064, 0x6ab020f2, 0xf3b97148, 0x84be41de, 0x1adad47d, 0x6ddde4eb, 0xf4d4b551, 0x83d385c7, 0x136c9856, 0x646ba8c0, 0xfd62f97a, 0x8a65c9ec, 0x14015c4f, 0x63066cd9, 0xfa0f3d63, 0x8d080df5, 0x3b6e20c8, 0x4c69105e, 0xd56041e4, 0xa2677172, 0x3c03e4d1, 0x4b04d447, 0xd20d85fd, 0xa50ab56b, 0x35b5a8fa, 0x42b2986c, 0xdbbbc9d6, 0xacbcf940, 0x32d86ce3, 0x45df5c75, 0xdcd60dcf, 0xabd13d59, 0x26d930ac, 0x51de003a, 0xc8d75180, 0xbfd06116, 0x21b4f4b5, 0x56b3c423, 0xcfba9599, 0xb8bda50f, 0x2802b89e, 0x5f058808, 0xc60cd9b2, 0xb10be924, 0x2f6f7c87, 0x58684c11, 0xc1611dab, 0xb6662d3d, 0x76dc4190, 0x1db7106, 0x98d220bc, 0xefd5102a, 0x71b18589, 0x6b6b51f, 0x9fbfe4a5, 0xe8b8d433, 0x7807c9a2, 0xf00f934, 0x9609a88e, 0xe10e9818, 0x7f6a0dbb, 0x86d3d2d, 0x91646c97, 0xe6635c01, 0x6b6b51f4, 0x1c6c6162, 0x856530d8, 0xf262004e, 0x6c0695ed, 0x1b01a57b, 0x8208f4c1, 0xf50fc457, 0x65b0d9c6, 0x12b7e950, 0x8bbeb8ea, 0xfcb9887c, 0x62dd1ddf, 0x15da2d49, 0x8cd37cf3, 0xfbd44c65, 0x4db26158, 0x3ab551ce, 0xa3bc0074, 0xd4bb30e2, 0x4adfa541, 0x3dd895d7, 0xa4d1c46d, 0xd3d6f4fb, 0x4369e96a, 0x346ed9fc, 0xad678846, 0xda60b8d0, 0x44042d73, 0x33031de5, 0xaa0a4c5f, 0xdd0d7cc9, 0x5005713c, 0x270241aa, 0xbe0b1010, 0xc90c2086, 0x5768b525, 0x206f85b3, 0xb966d409, 0xce61e49f, 0x5edef90e, 0x29d9c998, 0xb0d09822, 0xc7d7a8b4, 0x59b33d17, 0x2eb40d81, 0xb7bd5c3b, 0xc0ba6cad, 0xedb88320, 0x9abfb3b6, 0x3b6e20c, 0x74b1d29a, 0xead54739, 0x9dd277af, 0x4db2615, 0x73dc1683, 0xe3630b12, 0x94643b84, 0xd6d6a3e, 0x7a6a5aa8, 0xe40ecf0b, 0x9309ff9d, 0xa00ae27, 0x7d079eb1, 0xf00f9344, 0x8708a3d2, 0x1e01f268, 0x6906c2fe, 0xf762575d, 0x806567cb, 0x196c3671, 0x6e6b06e7, 0xfed41b76, 0x89d32be0, 0x10da7a5a, 0x67dd4acc, 0xf9b9df6f, 0x8ebeeff9, 0x17b7be43, 0x60b08ed5, 0xd6d6a3e8, 0xa1d1937e, 0x38d8c2c4, 0x4fdff252, 0xd1bb67f1, 0xa6bc5767, 0x3fb506dd, 0x48b2364b, 0xd80d2bda, 0xaf0a1b4c, 0x36034af6, 0x41047a60, 0xdf60efc3, 0xa867df55, 0x316e8eef, 0x4669be79, 0xcb61b38c, 0xbc66831a, 0x256fd2a0, 0x5268e236, 0xcc0c7795, 0xbb0b4703, 0x220216b9, 0x5505262f, 0xc5ba3bbe, 0xb2bd0b28, 0x2bb45a92, 0x5cb36a04, 0xc2d7ffa7, 0xb5d0cf31, 0x2cd99e8b, 0x5bdeae1d, 0x9b64c2b0, 0xec63f226, 0x756aa39c, 0x26d930a, 0x9c0906a9, 0xeb0e363f, 0x72076785, 0x5005713, 0x95bf4a82, 0xe2b87a14, 0x7bb12bae, 0xcb61b38, 0x92d28e9b, 0xe5d5be0d, 0x7cdcefb7, 0xbdbdf21, 0x86d3d2d4, 0xf1d4e242, 0x68ddb3f8, 0x1fda836e, 0x81be16cd, 0xf6b9265b, 0x6fb077e1, 0x18b74777, 0x88085ae6, 0xff0f6a70, 0x66063bca, 0x11010b5c, 0x8f659eff, 0xf862ae69, 0x616bffd3, 0x166ccf45, 0xa00ae278, 0xd70dd2ee, 0x4e048354, 0x3903b3c2, 0xa7672661, 0xd06016f7, 0x4969474d, 0x3e6e77db, 0xaed16a4a, 0xd9d65adc, 0x40df0b66, 0x37d83bf0, 0xa9bcae53, 0xdebb9ec5, 0x47b2cf7f, 0x30b5ffe9, 0xbdbdf21c, 0xcabac28a, 0x53b39330, 0x24b4a3a6, 0xbad03605, 0xcdd70693, 0x54de5729, 0x23d967bf, 0xb3667a2e, 0xc4614ab8, 0x5d681b02, 0x2a6f2b94, 0xb40bbe37, 0xc30c8ea1, 0x5a05df1b, 0x2d02ef8d];
         // PNG Cyclic Redundancy Code algorithm -- http://www.w3.org/TR/PNG/#D-CRCAppendix
         var crc32s = function(/*uint[]*/buf)
              var c = 0xffffffff, i;
              for( i=0 ; i < buf.length; i++ )
                   c = CRC_256[(c ^ buf.charCodeAt(i)) & 0xff] ^ (c >>> 8);
              return (c ^ 0xffffffff);
         var header = function ()
              return "\x89PNG\x0D\x0A\x1A\x0A";
         var i2s = function (/*int32*/i)
              return String.fromCharCode(i>>>24) + String.fromCharCode(i>>>16) + String.fromCharCode(i>>>8) + String.fromCharCode(i);
         var chunk = function (/*4 Char PNG code*/chunkType, /*data*/data)
              var buf = chunkType + data;
              var crc = crc32s(buf);
              buf = i2s (data.length) + buf + i2s (crc);
              return buf;
         var adler32 = function (/*string*/buf)
              var i, a = 1, b = 0;
              for (i=0; i<buf.length; i++)
                   a += buf.charCodeAt(i); s1 %= 65521;
                   b += a; b %= 65521;
              return (b<<16)+a;
         return function(/*int*/wide, /*int*/high, /*string*/ pal, /*string*/image, /*string*/transpIndex)
              var t, bits;
              if (pal.length % 3)
                   alert ("Bad Palette length -- not a multiple of 3");
                   return null;
              if (image.length != high*wide)
                   alert ("Size error: expected "+(high*wide)+" bytes, got "+image.length);
                   return null;
              bits = '';
              for (t=0; t<high; t++)
                   bits += "\x00"+image.substr(t*wide, wide);
              t = bits.length;
              bits += i2s (adler32(bits));
              var r = header() + chunk ('IHDR', i2s (wide)+i2s(high)+"\x08\x03\x00\x00\x00");
              r += chunk ('PLTE', pal);
              if (transpIndex != null)
                   r += chunk ('tRNS', transpIndex);
              r += chunk ('IDAT', "\x78\x9c\x01"+ String.fromCharCode (t & 0xff)+String.fromCharCode((t>>>8) & 0xff)+String.fromCharCode ((~t) & 0xff)+String.fromCharCode(~(t>>>8) & 0xff)+bits);
              r += chunk ('IEND', '');
              return r;
    /* Sample usage. Remove when #including the above in _your_ script! */
    var pngPal  = "\x00\x00\x00"+"\xff\x00\x00"+"\x00\xff\x00"+"\x00\x00\xff"+"\xff\xff\x00"+"\x40\x40\x40";
    var pngData =     "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"+
                        "\x00\x01\x01\x02\x02\x03\x03\x04\x04\x00"+
                        "\x00\x01\x01\x02\x02\x03\x03\x04\x04\x00"+
                        "\x05\x01\x01\x02\x02\x03\x03\x04\x04\x05"+
                        "\x05\x01\x01\x02\x02\x03\x03\x04\x04\x05"+
                        "\x05\x01\x01\x02\x02\x03\x03\x04\x04\x05"+
                        "\x05\x01\x01\x02\x02\x03\x03\x04\x04\x05"+
                        "\x05\x01\x01\x02\x02\x03\x03\x04\x04\x05"+
                        "\x05\x01\x01\x02\x02\x03\x03\x04\x04\x05"+
                        "\x05\x01\x01\x02\x02\x03\x03\x04\x04\x05"+
                        "\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05";
    img = makePng (10,11, pngPal, pngData, "\x40");
    var w = new Window("dialog", "Image test");
    w.add ('image', undefined, img);
    var f = new File(Folder.myDocuments+"/test-me2.png");
    if (f.open('w'))
         f.encoding = "BINARY";
         f.write (img);
         f.close();
    } else
         alert ("eh -- couldn't write test file...");
    w.show();

    Here is a more complicated (and useful ) example. (--Its actual usefulness is not as, erm, useful as I hoped, because it seems you don't have access to the built-in stroke styles! If anyone knows a work-around that, let me know ...)
    First, create a few custom Striped and/or Dashed stroke styles; then call this Javascript to see them created "live" in the drop down. Make sure you removed the sample code from the end of "pnglib.jsx", otherwise that dialog with interfere and mess up my nice program.
    #include "pnglib.jsx"
    function createStripeImg (styleIndex)
         var pngPal  = "\x00\x00\x00"+"\xff\xff\xff";
         var pngData = '';
         var x,y, ystart;
         var stripes = [];
         var i;
         for (y=0; y<app.activeDocument.stripedStrokeStyles[styleIndex].stripeArray.length; y++)
              stripes.push (Math.round (11*app.activeDocument.stripedStrokeStyles[styleIndex].stripeArray[y]/100));
         i = 0;
         for (y=0; y<11; y++)
              if (y >= stripes[i])
                   if (y <= stripes[i+1])
                        for (x=0; x<48; x++)
                             pngData += "\x00";
                        continue;
                   i += 2;
              for (x=0; x<48; x++)
                   pngData += "\x01";
         return makePng (48,11, pngPal, pngData, "\xff\x00");
    function createDashImg (styleIndex)
         var pngPal  = "\x00\x00\x00"+"\xff\xff\xff";
         var pngData = '';
         var x,y, xstart;
         var dashes = [];
         var i, len;
         len = 0;
         for (y=0; y<app.activeDocument.dashedStrokeStyles[styleIndex].dashArray.length; y++)
              len += app.activeDocument.dashedStrokeStyles[styleIndex].dashArray[y];
         xstart = 0;
         for (y=0; y<app.activeDocument.dashedStrokeStyles[styleIndex].dashArray.length; y++)
              dashes.push (xstart);
              xstart += Math.round (48*app.activeDocument.dashedStrokeStyles[styleIndex].dashArray[y]/len);
         dashes.push (47);
         i = 0;
         for (y=0; y<11; y++)
              if (y < 3 || y > 8)
                   for (x=0; x<48; x++)
                        pngData += "\x01";
              } else
                   xstart = 0;
                   for (x=0; x<48; x++)
                        if (x >= dashes[xstart])
                             if (x >= dashes[xstart+1])
                                  xstart += 2;
                             pngData += "\x00";
                        } else
                             pngData += "\x01";
         return makePng (48,11, pngPal, pngData, "\xff\x00");
    if (app.activeDocument.stripedStrokeStyles.length+app.activeDocument.dashedStrokeStyles.length < 1)
         alert ("This example needs a few custom stripe or dash stroke styles to play with");
         exit (0);
    var w = new Window("dialog", "Select a stripe type");
    var ddl = w.add("dropdownlist");
    for( i=0; i < app.activeDocument.stripedStrokeStyles.length; i++)
         (ddl.add('item', " "+app.activeDocument.stripedStrokeStyles[i].name)).image = createStripeImg (i);
    for( i=0; i < app.activeDocument.dashedStrokeStyles.length; i++)
         (ddl.add('item', " "+app.activeDocument.dashedStrokeStyles[i].name)).image = createDashImg (i);
    ddl.selection = 0;
    g = w.add ("group");
    g.orientation = 'row';
    g.add ("button", undefined, "OK");
    g.add ("button", undefined, "Cancel");
    w.show();

  • Can't install client on one computer

    This is a new Lenovo ThinkPad with Windows 8.1 Professional. Our SCCM 2012R2 has successfully installed clients on hundreds of our computers. It doesn't work on this one. Also, manual installation fails. the push client installation always creates this
    error message, immediately:
    Summary of client push installation
    Resource ID: 2097152820
    Object name: LT008806
    Include domain controllers: No
    Always install (repair or upgrade existing client): No
    Force uninstall and reinstall Configuration Manager client: No
    Total resources selected to install the Configuration Manager client:  1
    Summary of client push installation resources
    Resources to be installed from site <UCH>: 1
     Error: Exception
    Errors
    The machine name for Resource ID '2097152820' cannot be retrieved from the database.
    Running manual installation at the client always fails also.
    Here is a partial log file for manual installation (a few initial log entries included, and then I jumped to the first "failed" message):
    <![LOG[==========[ ccmsetup started in process 144 ]==========]LOG]!><time="13:27:16.636+480" date="11-20-2014" component="ccmsetup" context="" type="1" thread="3296" file="ccmsetup.cpp:9437">
    <![LOG[Running on platform X64]LOG]!><time="13:27:16.638+480" date="11-20-2014" component="ccmsetup" context="" type="1" thread="3296" file="util.cpp:1837">
    <![LOG[Launch from folder C:\Client\]LOG]!><time="13:27:16.640+480" date="11-20-2014" component="ccmsetup" context="" type="1" thread="3296" file="ccmsetup.cpp:721">
    <![LOG[CcmSetup version: 5.0.7958.1000]LOG]!><time="13:27:16.641+480" date="11-20-2014" component="ccmsetup" context="" type="1" thread="3296" file="ccmsetup.cpp:727">
    <![LOG[Running on 'Microsoft Windows 8.1 Pro' (6.3.9600). Service Pack (0.0). SuiteMask = 272. Product Type = 18]LOG]!><time="13:27:16.754+480" date="11-20-2014" component="ccmsetup" context="" type="1"
    thread="3296" file="util.cpp:1919">
    <![LOG[Ccmsetup command line: "C:\Client\ccmsetup.exe" ]LOG]!><time="13:27:16.755+480" date="11-20-2014" component="ccmsetup" context="" type="1" thread="3296" file="ccmsetup.cpp:3590">
    <![LOG[Local Machine is joined to an AD domain]LOG]!><time="13:27:16.756+480" date="11-20-2014" component="ccmsetup" context="" type="0" thread="3296" file="lsad.cpp:714">
    <![LOG[Failed to get client version for sending messages to FSP. Error 0x8004100e]LOG]!><time="13:27:17.612+480" date="11-20-2014" component="ccmsetup" context="" type="2" thread="3296"
    file="ccmsetup.cpp:9838">
    <![LOG[Params to send FSP message '5.0.7958.1000 Deployment ']LOG]!><time="13:27:17.613+480" date="11-20-2014" component="ccmsetup" context="" type="0" thread="3296" file="ccmsetup.cpp:9887">
    <![LOG[State message with TopicType 800 and TopicId {6BFF76AB-0341-4ACB-9719-7B5754A210A5} has been sent to the FSP]LOG]!><time="13:27:17.641+480" date="11-20-2014" component="FSPStateMessage" context=""
    type="1" thread="3296" file="fsputillib.cpp:752">
    <![LOG[Downloading file C:\Client\ccmsetup.exe]LOG]!><time="13:27:18.644+480" date="11-20-2014" component="ccmsetup" context="" type="1" thread="3296" file="ccmsetup.cpp:5685">
    <![LOG[Downloading C:\Client\ccmsetup.exe to C:\WINDOWS\ccmsetup\ccmsetup.exe]LOG]!><time="13:27:18.645+480" date="11-20-2014" component="ccmsetup" context="" type="1" thread="3296" file="ccmsetup.cpp:5769">
    <![LOG[File download 16% complete (262144 of 1614520 bytes).]LOG]!><time="13:27:18.651+480" date="11-20-2014" component="ccmsetup" context="" type="0" thread="3296" file="ccmsetup.cpp:9185">
    <![LOG[File download 32% complete (524288 of 1614520 bytes).]LOG]!><time="13:27:18.652+480" date="11-20-2014" component="ccmsetup" context="" type="0" thread="3296" file="ccmsetup.cpp:9185">
    <![LOG[File download 48% complete (786432 of 1614520 bytes).]LOG]!><time="13:27:18.653+480" date="11-20-2014" component="ccmsetup" context="" type="0" thread="3296" file="ccmsetup.cpp:9185">
    <![LOG[File download 64% complete (1048576 of 1614520 bytes).]LOG]!><time="13:27:18.655+480" date="11-20-2014" component="ccmsetup" context="" type="0" thread="3296" file="ccmsetup.cpp:9185">
    <![LOG[File download 81% complete (1310720 of 1614520 bytes).]LOG]!><time="13:27:18.656+480" date="11-20-2014" component="ccmsetup" context="" type="0" thread="3296" file="ccmsetup.cpp:9185">
    <![LOG[File download 97% complete (1572864 of 1614520 bytes).]LOG]!><time="13:27:18.657+480" date="11-20-2014" component="ccmsetup" context="" type="0" thread="3296" file="ccmsetup.cpp:9185">
    <![LOG[File download 100% complete (1614520 of 1614520 bytes).]LOG]!><time="13:27:18.658+480" date="11-20-2014" component="ccmsetup" context="" type="0" thread="3296" file="ccmsetup.cpp:9185">
    <![LOG[Download complete.]LOG]!><time="13:27:19.540+480" date="11-20-2014" component="ccmsetup" context="" type="1" thread="3296" file="ccmsetup.cpp:5867">
    <![LOG[Running as user "AdminProschan"]LOG]!><time="13:27:19.560+480" date="11-20-2014" component="ccmsetup" context="" type="1" thread="3296" file="ccmsetup.cpp:1995">
    <![LOG[Detected 423823 MB free disk space on system drive.]LOG]!><time="13:27:19.561+480" date="11-20-2014" component="ccmsetup" context="" type="1" thread="3296" file="util.cpp:628">
    <![LOG[Checking Write Filter Status.]LOG]!><time="13:27:19.561+480" date="11-20-2014" component="ccmsetup" context="" type="1" thread="3296" file="ccmsetup.cpp:2024">
    <![LOG[This is not a supported write filter device. We are not in a write filter maintenance mode.]LOG]!><time="13:27:19.561+480" date="11-20-2014" component="ccmsetup" context="" type="1" thread="3296"
    file="ccmsetup.cpp:2051">
    <![LOG[SiteCode:         UCH]LOG]!><time="13:27:19.561+480" date="11-20-2014" component="ccmsetup" context="" type="1" thread="3296" file="ccmsetup.cpp:2076">
    <![LOG[SiteVersion:      5.00.7958.1000]LOG]!><time="13:27:19.561+480" date="11-20-2014" component="ccmsetup" context="" type="1" thread="3296" file="ccmsetup.cpp:2077">
    <![LOG[Only one MP https://SCCM2012.uchastings.local is specified. Use it.]LOG]!><time="13:27:19.561+480" date="11-20-2014" component="ccmsetup" context=""
    type="1" thread="3296" file="ccmsetup.cpp:10080">
    <![LOG[Searching for DP locations from MP(s)...]LOG]!><time="13:27:19.561+480" date="11-20-2014" component="ccmsetup" context="" type="1" thread="3296" file="ccmsetup.cpp:11018">
    <![LOG[Current AD forest name is uchastings.local, domain name is uchastings.local]LOG]!><time="13:27:19.565+480" date="11-20-2014" component="LocationServices" context="" type="1" thread="3296"
    file="lsad.cpp:842">
    <![LOG[Domain joined client is in Intranet]LOG]!><time="13:27:19.565+480" date="11-20-2014" component="LocationServices" context="" type="1" thread="3296" file="lsad.cpp:1047">
    <![LOG[Current AD site of machine is Default-First-Site-Name]LOG]!><time="13:27:19.565+480" date="11-20-2014" component="LocationServices" context="" type="1" thread="3296" file="lsad.cpp:770">
    <![LOG[DHCP entry points already initialized.]LOG]!><time="13:27:19.569+480" date="11-20-2014" component="LocationServices" context="" type="0" thread="3296" file="ccmiputil.cpp:75">
    <![LOG[Begin checking Alternate Network Configuration]LOG]!><time="13:27:19.569+480" date="11-20-2014" component="LocationServices" context="" type="0" thread="3296" file="ccmiputil.cpp:1095">
    <![LOG[Finished checking Alternate Network Configuration]LOG]!><time="13:27:19.573+480" date="11-20-2014" component="LocationServices" context="" type="0" thread="3296" file="ccmiputil.cpp:1172">
    <![LOG[Adapter {B46CE415-DE46-4980-BE92-941C205DB66A} is DHCP enabled. Checking quarantine status.]LOG]!><time="13:27:19.578+480" date="11-20-2014" component="LocationServices" context="" type="0"
    thread="3296" file="ccmiputil.cpp:436">
    <![LOG[Adapter {B33663C9-A182-45CA-89B7-9BF56E6C1EAC} is DHCP enabled. Checking quarantine status.]LOG]!><time="13:27:19.579+480" date="11-20-2014" component="LocationServices" context="" type="0"
    thread="3296" file="ccmiputil.cpp:436">
    <![LOG[Adapter {C2A7018B-094C-40E3-9A9A-025A2CABF991} is DHCP enabled. Checking quarantine status.]LOG]!><time="13:27:19.579+480" date="11-20-2014" component="LocationServices" context="" type="0"
    thread="3296" file="ccmiputil.cpp:436">
    <![LOG[Adapter {BCFEB73A-A68F-4A7A-838E-C15717D89468} is DHCP enabled. Checking quarantine status.]LOG]!><time="13:27:19.579+480" date="11-20-2014" component="LocationServices" context="" type="0"
    thread="3296" file="ccmiputil.cpp:436">
    <![LOG[Adapter {52179116-5DB6-4077-93A9-CBE18178E8D3} is DHCP enabled. Checking quarantine status.]LOG]!><time="13:27:19.579+480" date="11-20-2014" component="LocationServices" context="" type="0"
    thread="3296" file="ccmiputil.cpp:436">
    <![LOG[Sending message body '<ContentLocationRequest SchemaVersion="1.00">
      <AssignedSite SiteCode="UCH"/>
      <ClientPackage/>
      <ClientLocationInfo LocationType="SMSPACKAGE" DistributeOnDemand="0" UseProtected="0" AllowCaching="0" BranchDPFlags="0" AllowHTTP="1" AllowSMB="0" AllowMulticast="0"
    UseInternetDP="0">
        <ADSite Name="Default-First-Site-Name"/>
        <Forest Name="uchastings.local"/>
        <Domain Name="uchastings.local"/>
        <IPAddresses>
    <IPAddress SubnetAddress="10.192.0.0" Address="10.199.167.81"/>
        </IPAddresses>
      </ClientLocationInfo>
    </ContentLocationRequest>
    ']LOG]!><time="13:27:19.590+480" date="11-20-2014" component="ccmsetup" context="" type="0" thread="3296" file="siteinfo.cpp:96">
    <![LOG[Sending message header '<Msg SchemaVersion="1.1"><ID>{C32B31C6-F529-4F84-A752-C3950E6D96EE}</ID><SourceHost>LT008806</SourceHost><TargetAddress>mp:[http]MP_LocationManager</TargetAddress><ReplyTo>direct:LT008806:LS_ReplyLocations</ReplyTo><Priority>3</Priority><Timeout>600</Timeout><ReqVersion>5931</ReqVersion><TargetHost>https://SCCM2012.uchastings.local</TargetHost><TargetEndpoint>MP_LocationManager</TargetEndpoint><ReplyMode>Sync</ReplyMode><Protocol>http</Protocol><SentTime>2014-11-20T21:27:19Z</SentTime><Body
    Type="ByteRange" Offset="0" Length="1142"/><Hooks><Hook3 Name="zlib-compress"/></Hooks><Payload Type="inline"/></Msg>']LOG]!><time="13:27:19.590+480" date="11-20-2014"
    component="ccmsetup" context="" type="0" thread="3296" file="siteinfo.cpp:177">
    <![LOG[MapNLMCostDataToCCMCost() returning Cost 0x1]LOG]!><time="13:27:19.594+480" date="11-20-2014" component="ccmsetup" context="" type="1" thread="3296" file="ccmutillib.cpp:5479">
    <![LOG[CCM_POST 'https://SCCM2012.uchastings.local/ccm_system/request']LOG]!><time="13:27:19.596+480" date="11-20-2014" component="ccmsetup" context="" type="1" thread="3296" file="httphelper.cpp:807">
    <![LOG[Begin searching client certificates based on Certificate Issuers]LOG]!><time="13:27:19.598+480" date="11-20-2014" component="ccmsetup" context="" type="1" thread="3296" file="ccmcert.cpp:4393">
    <![LOG[Certificate Issuer 1 [CN=uchastings-UCH-DC1-CA; DC=uchastings; DC=local]]LOG]!><time="13:27:19.598+480" date="11-20-2014" component="ccmsetup" context="" type="1" thread="3296"
    file="ccmcert.cpp:4409">
    <![LOG[Analyzing 1 Chain(s) found]LOG]!><time="13:27:19.633+480" date="11-20-2014" component="ccmsetup" context="" type="0" thread="3296" file="ccmcert.cpp:4447">
    <![LOG[Chain has Certificate [Thumbprint E13F726510B5AD4A9E29626D22CB63A951DDC5CD] issued to 'LT008806.uchastings.local']LOG]!><time="13:27:19.634+480" date="11-20-2014" component="ccmsetup" context="" type="0"
    thread="3296" file="ccmcert.cpp:4468">
    <![LOG[Chain has Certificate [Thumbprint 5E7E6A175628551C0CBD494124BBF33F85EE3C1E] issued to 'uchastings-UCH-DC1-CA']LOG]!><time="13:27:19.634+480" date="11-20-2014" component="ccmsetup" context="" type="0"
    thread="3296" file="ccmcert.cpp:4468">
    <![LOG[Based on Certificate Issuer 'uchastings-UCH-DC1-CA' found Certificate [Thumbprint E13F726510B5AD4A9E29626D22CB63A951DDC5CD] issued to 'LT008806.uchastings.local']LOG]!><time="13:27:19.636+480" date="11-20-2014" component="ccmsetup"
    context="" type="1" thread="3296" file="ccmcert.cpp:4489">
    <![LOG[Begin validation of Certificate [Thumbprint E13F726510B5AD4A9E29626D22CB63A951DDC5CD] issued to 'LT008806.uchastings.local']LOG]!><time="13:27:19.636+480" date="11-20-2014" component="ccmsetup" context=""
    type="1" thread="3296" file="ccmcert.cpp:1662">
    <![LOG[CRL check enabled. ]LOG]!><time="13:27:19.636+480" date="11-20-2014" component="ccmsetup" context="" type="0" thread="3296" file="ccmcert.cpp:1735">
    <![LOG[Verification of Certificate chain returned 00000000]LOG]!><time="13:27:19.648+480" date="11-20-2014" component="ccmsetup" context="" type="0" thread="3296" file="ccmcert.cpp:1449">
    <![LOG[Completed validation of Certificate [Thumbprint E13F726510B5AD4A9E29626D22CB63A951DDC5CD] issued to 'LT008806.uchastings.local']LOG]!><time="13:27:19.648+480" date="11-20-2014" component="ccmsetup" context=""
    type="1" thread="3296" file="ccmcert.cpp:1803">
    <![LOG[Completed searching client certificates based on Certificate Issuers]LOG]!><time="13:27:19.648+480" date="11-20-2014" component="ccmsetup" context="" type="1" thread="3296" file="ccmcert.cpp:4550">
    <![LOG[Begin to select client certificate]LOG]!><time="13:27:19.648+480" date="11-20-2014" component="ccmsetup" context="" type="1" thread="3296" file="ccmcert.cpp:4706">
    <![LOG[The 'Certificate Selection Criteria' was not specified, counting number of certificates present in 'MY' store of 'Local Computer'.]LOG]!><time="13:27:19.648+480" date="11-20-2014" component="ccmsetup" context=""
    type="0" thread="3296" file="ccmcert.cpp:4742">
    <![LOG[1 certificate(s) found in the 'MY' certificate store.]LOG]!><time="13:27:19.648+480" date="11-20-2014" component="ccmsetup" context="" type="0" thread="3296" file="ccmcert.cpp:4770">
    <![LOG[Only one certificate present in the certificate store.]LOG]!><time="13:27:19.648+480" date="11-20-2014" component="ccmsetup" context="" type="0" thread="3296" file="ccmcert.cpp:4774">
    <![LOG[Begin validation of Certificate [Thumbprint E13F726510B5AD4A9E29626D22CB63A951DDC5CD] issued to 'LT008806.uchastings.local']LOG]!><time="13:27:19.649+480" date="11-20-2014" component="ccmsetup" context=""
    type="1" thread="3296" file="ccmcert.cpp:1662">
    <![LOG[The Certificate [Thumbprint E13F726510B5AD4A9E29626D22CB63A951DDC5CD] issued to 'LT008806.uchastings.local' has 'Client Authentication' capability.]LOG]!><time="13:27:19.654+480" date="11-20-2014" component="ccmsetup"
    context="" type="0" thread="3296" file="ccmcert.cpp:582">
    <![LOG[Completed validation of Certificate [Thumbprint E13F726510B5AD4A9E29626D22CB63A951DDC5CD] issued to 'LT008806.uchastings.local']LOG]!><time="13:27:19.654+480" date="11-20-2014" component="ccmsetup" context=""
    type="1" thread="3296" file="ccmcert.cpp:1803">
    <![LOG[>>> Client selected the PKI Certificate [Thumbprint E13F726510B5AD4A9E29626D22CB63A951DDC5CD] issued to 'LT008806.uchastings.local']LOG]!><time="13:27:19.654+480" date="11-20-2014" component="ccmsetup"
    context="" type="1" thread="3296" file="ccmcert.cpp:4850">
    <![LOG[Content boundary is '--aAbBcCdDv1234567890VxXyYzZ']LOG]!><time="13:27:19.722+480" date="11-20-2014" component="ccmsetup" context="" type="0" thread="3296" file="httphelper.cpp:1972">
    <![LOG[Received header '<Msg SchemaVersion="1.1">
     <ID>{C6407ADB-689B-47E6-9692-01453FA04FC1}</ID>
     <SourceID>GUID:13C1127A-ADD4-4DC1-A7EC-593170E539C7</SourceID>
     <SourceHost>SCCM2012</SourceHost>
     <TargetAddress>direct:LT008806:LS_ReplyLocations</TargetAddress>
     <ReplyTo>MP_LocationManager</ReplyTo>
     <CorrelationID>{00000000-0000-0000-0000-000000000000}</CorrelationID>
     <Priority>3</Priority>
     <Timeout>600</Timeout>
     <Capabilities><Property Name="SSL" Version="1"/></Capabilities><ReplyCapabilities><AllowRegistrationReset>direct:SCCM2012:ClientRegistration</AllowRegistrationReset></ReplyCapabilities><TargetHost>LT008806</TargetHost><TargetEndpoint>LS_ReplyLocations</TargetEndpoint><ReplyMode>Sync</ReplyMode><Protocol>https</Protocol><SentTime>2014-11-20T21:27:19Z</SentTime><Body
    Type="ByteRange" Offset="0" Length="2822"/><Hooks><Hook3 Name="zlib-compress"/><Hook Name="authenticate"><Property Name="Signature">308201BC06092A864886F70D010702A08201AD308201A9020101310B300906052B0E03021A0500300B06092A864886F70D01070131820188308201840201013061305331153013060A0992268993F22C64011916056C6F63616C311A3018060A0992268993F22C640119160A756368617374696E6773311E301C06035504031315756368617374696E67732D5543482D4443312D4341020A1C39B02C0000000000C6300906052B0E03021A0500300D06092A864886F70D01010105000482010015C0EB981EB6F69348F8FDFA1BC7B9246FC48DD730E30327ED5FB57A0AF912E7803C83EE6E22C29BA3B55FBE2D15B5B5A3DC27D46A228F730049111CE8823FDDCB723E6CB9D4D031057B6F841D84DB52D46A085A5A379DEB7FFFA396DE50916EA0F0B005A6E48EAE6049C16067E782592E4606505625B652BD1D1E78C8D3E93A813A75B61B243D2E6EFE59FA7A3653210713E1DDEFBD48AACBA09E10468DCFC5986A190E0FCF04C931B615E5651608DC9FA79BF8023FD7FEB914D736743ECEAEDA3FCFF3B2C56263029CB1912AFCDB40E9F72DC08C4A88FA7FB4BF8994507622D1437A7C2021798941A7DFF444352D300C84B7CEA8048E2BEE1D1F528E992B7E</Property><Property
    Name="AuthSenderMachine">SCCM2012;SCCM2012.uchastings.local;sccm2012.uchastings.local</Property><Property Name="MPSiteCode">UCH</Property></Hook></Hooks><Payload Type="inline"/></Msg>']LOG]!><time="13:27:19.723+480"
    date="11-20-2014" component="ccmsetup" context="" type="0" thread="3296" file="httphelper.cpp:1724">
    <![LOG[Received reply body '<ContentLocationReply SchemaVersion="1.00"><ContentInfo PackageFlags="16777216"><ContentHashValues/></ContentInfo><Sites><Site><MPSite SiteCode="UCH" MasterSiteCode="UCH"
    SiteLocality="LOCAL" IISPreferedPort="80" IISSSLPreferedPort="443"/><LocationRecords><LocationRecord><URL Name="http://SCCM2012.uchastings.local/SMS_DP_SMSPKG$/UCH00003"
    Signature="<URL">http://SCCM2012.uchastings.local/SMS_DP_SMSSIG$/UCH00003"/><URL Name="http://SCCM2012.uchastings.local/NOCERT_SMS_DP_SMSPKG$/UCH00003"
    Signature="<ADSite">http://SCCM2012.uchastings.local/NOCERT_SMS_DP_SMSSIG$/UCH00003"/><ADSite Name="Default-First-Site-Name"/><IPSubnets><IPSubnet
    Address="10.192.0.0"/><IPSubnet Address=""/></IPSubnets><Metric Value=""/><Version>7958</Version><Capabilities SchemaVersion="1.0"><Property Name="SSL" Version="1"/><Property
    Name="SSLState" Value="63"/></Capabilities><ServerRemoteName>SCCM2012.uchastings.local</ServerRemoteName><DPType>SERVER</DPType><Windows Trust="1"/><Locality>LOCAL</Locality></LocationRecord></LocationRecords></Site></Sites><ClientPackage
    FullPackageID="UCH00003" FullPackageVersion="4" FullPackageHash="BFC11E099E8F451107B43E0DBEFD93B01DB2D6453DA74F8A2CB94B73D676C1CD" MinimumClientVersion="5.00.7958.1000" RandomizeMaxDays="1" ProgramEnabled="true"
    LastModifiedTime="30342396;2747718784" SiteVersionMatch="true" SiteVersion="5.00.7958.1000" EnablePeerCache="true"/><RelatedContentIDs/></ContentLocationReply>']LOG]!><time="13:27:19.724+480"
    date="11-20-2014" component="ccmsetup" context="" type="0" thread="3296" file="siteinfo.cpp:221">
    <![LOG[Found local location 'https://SCCM2012.uchastings.local/SMS_DP_SMSPKG$/UCH00003']LOG]!><time="13:27:19.725+480" date="11-20-2014" component="ccmsetup" context="" type="0" thread="3296"
    file="siteinfo.cpp:351">
    <![LOG[Found local location 'https://SCCM2012.uchastings.local/NOCERT_SMS_DP_SMSPKG$/UCH00003']LOG]!><time="13:27:19.725+480" date="11-20-2014" component="ccmsetup" context="" type="0" thread="3296"
    file="siteinfo.cpp:351">
    <![LOG[Discovered 2 local DP locations.]LOG]!><time="13:27:19.726+480" date="11-20-2014" component="ccmsetup" context="" type="1" thread="3296" file="ccmsetup.cpp:11153">
    <![LOG[MapNLMCostDataToCCMCost() returning Cost 0x1]LOG]!><time="13:27:19.729+480" date="11-20-2014" component="ccmsetup" context="" type="1" thread="3296" file="ccmutillib.cpp:5479">
    <![LOG[PROPFIND 'https://SCCM2012.uchastings.local/SMS_DP_SMSPKG$/UCH00003']LOG]!><time="13:27:19.731+480" date="11-20-2014" component="ccmsetup" context="" type="1" thread="3296" file="httphelper.cpp:807">
    <![LOG[Using DP location
    <time="13:27:21.010+480">https://SCCM2012.uchastings.local/SMS_DP_SMSPKG$/UCH00003']LOG]!><time="13:27:21.010+480" date="11-20-2014" component="ccmsetup" context="" type="0"
    thread="3296" file="ccmsetup.cpp:9887">
    <![LOG[State message with TopicType 800 and TopicId {2E64FF61-438A-42D7-8FD1-6934216E9A11} has been sent to the FSP]LOG]!><time="13:27:21.029+480" date="11-20-2014" component="FSPStateMessage" context=""
    type="1" thread="3296" file="fsputillib.cpp:752">
    <![LOG[Failed to download from DP 'https://SCCM2012.uchastings.local/SMS_DP_SMSPKG$/UCH00003', error 0x800704dd.]LOG]!><time="13:27:21.030+480" date="11-20-2014" component="ccmsetup" context="" type="2"
    thread="3296" file="ccmsetup.cpp:1377">
    <![LOG[MapNLMCostDataToCCMCost() returning Cost 0x1]LOG]!><time="13:27:21.034+480" date="11-20-2014" component="ccmsetup" context="" type="1" thread="3296" file="ccmutillib.cpp:5479">
    <![LOG[PROPFIND 'https://SCCM2012.uchastings.local/NOCERT_SMS_DP_SMSPKG$/UCH00003']LOG]!><time="13:27:21.035+480" date="11-20-2014" component="ccmsetup" context="" type="1" thread="3296"
    file="httphelper.cpp:807">
    <![LOG[Got 401 challenge Retrying with Windows Auth...]LOG]!><time="13:27:21.053+480" date="11-20-2014" component="ccmsetup" context="" type="1" thread="3296" file="httphelper.cpp:1288">
    <![LOG[MapNLMCostDataToCCMCost() returning Cost 0x1]LOG]!><time="13:27:21.058+480" date="11-20-2014" component="ccmsetup" context="" type="1" thread="3296" file="ccmutillib.cpp:5479">
    <![LOG[PROPFIND 'https://SCCM2012.uchastings.local/NOCERT_SMS_DP_SMSPKG$/UCH00003']LOG]!><time="13:27:21.060+480" date="11-20-2014" component="ccmsetup" context="" type="1" thread="3296"
    file="httphelper.cpp:807">
    <![LOG[Using DP location <a href="https://SCCM2012.uchastings.local/NOCERT_SMS_DP_SMSPKG$/UCH00003]LOG]!><time="13:27:21.098+480">https://SCCM2012.uchastings.local/NOCERT_SMS_DP_SMSPKG$/UCH00003]LOG]!><time="13:27:21.098+480"
    date="11-20-2014" component="ccmsetup" context="" type="1" thread="3296" file="ccmsetup.cpp:11395">
    <![LOG[Cost settings successfully set on '{FECEE05C-214A-42D1-8C52-09B7BC6C9F20}'.]LOG]!><time="13:27:21.106+480" date="11-20-2014" component="ccmsetup" context="" type="0" thread="3296"
    file="ccmutillib.cpp:5634">
    <![LOG[Failed to download client files by BITS. Error 0x800704dd]LOG]!><time="13:27:21.108+480" date="11-20-2014" component="ccmsetup" context="" type="3" thread="3296" file="ccmsetup.cpp:6618">
    <![LOG[Failed to download from DP 'https://SCCM2012.uchastings.local/NOCERT_SMS_DP_SMSPKG$/UCH00003', error 0x800704dd.]LOG]!><time="13:27:21.108+480" date="11-20-2014" component="ccmsetup" context="" type="2"
    thread="3296" file="ccmsetup.cpp:1377">
    <![LOG[Enumerated all 2 local DP locations but none of them is good. Fallback to MP.]LOG]!><time="13:27:21.108+480" date="11-20-2014" component="ccmsetup" context="" type="2" thread="3296"
    file="ccmsetup.cpp:11389">
    <![LOG[Cost settings successfully set on '{A0238A9F-2448-446A-92AB-105DA6B2F47E}'.]LOG]!><time="13:27:21.116+480" date="11-20-2014" component="ccmsetup" context="" type="0" thread="3296"
    file="ccmutillib.cpp:5634">
    <![LOG[Failed to download client files by BITS. Error 0x800704dd]LOG]!><time="13:27:21.118+480" date="11-20-2014" component="ccmsetup" context="" type="3" thread="3296" file="ccmsetup.cpp:6618">
    <![LOG[Deleted file C:\WINDOWS\ccmsetup\ccmsetup.xml]LOG]!><time="13:27:21.122+480" date="11-20-2014" component="ccmsetup" context="" type="1" thread="3296" file="ccmsetup.cpp:9493">
    <![LOG[CcmSetup failed with error code 0x800704dd]LOG]!><time="13:27:21.123+480" date="11-20-2014" component="ccmsetup" context="" type="1" thread="3296" file="ccmsetup.cpp:10879">
    Any ideas?  Thanks.
    Ron Proschan

    That was it!  It was a strange mix-up of accounts, where I was logging on with a "Microsoft" account that had the same name as an "organizational" domain account.  When I was logged on with the Microsoft account, I couldn't
    install the software.  When I logged on with the domain account, I could.  Thanks!!!
    Ron Proschan

  • ABAP- JAVA : How to unzip a zip file sent by ABAP

    Hello,
    We are using JCO to exchange the XML strings (File Sizes can range upto couple of MBs) between ABAP and JAVA. We were earlier using a STRING parameter for XML data exchange. This approach was resulting in huge performance overheads. As per our initial performance investigations, we have identified that time taken for XML exchange using JCO is the major bottlenecks.
    Currently we are evaluating Zip - Exchange - Unzip mechanism for XML exchange.
    We now try to ZIP the export content using following ABAP code:
          TRY.
              CALL METHOD cl_abap_gzip=>compress_text
                EXPORTING
                  text_in  = lv_xmlstring
                IMPORTING
                  gzip_out = ev_xmlstring.
    This returns an XSTRING (zipped) which is lesser in size as compared to the earlier xml STRING.For zipping the XML String this code works fine. But on java end on using the following code (for unzipping):
    public static String unzipStringFromBytes( byte[] bytes ) throws IOException
        ByteArrayInputStream bis = new ByteArrayInputStream(bytes);
        BufferedInputStream bufis = new BufferedInputStream(new InflaterInputStream(bis));
        ByteArrayOutputStream bos = new ByteArrayOutputStream();
        byte[] buf = new byte[1024];
        int len;
        while( (len = bufis.read(buf)) > 0 )
          bos.write(buf, 0, len);
        String retval = bos.toString();
        bis.close();
        bufis.close();
        bos.close();
        return retval;
    We get the following error:
    java.util.zip.DataFormatException: unknown compression method
         at java.util.zip.Inflater.inflateBytes(Native Method)
         at java.util.zip.Inflater.inflate(Inflater.java:215)
    Please share java code snippet which we can use in our program to retrieve our initial XML string.
    Best Regards,
    Aayush

    Hi,
    i took a sequence '0123456789' and gziped it with your ABAP code snipped.
    Result is in HEX:
    '33 30 34 32 36 31 35 33 B7 B0 04 00'
    Than i took an good old gzip executable and gzipped a text file with the same sequence in compression mode 6(default of ABAP Method).
    Result in HEX:
    '1F 8B 08 08 BA B1 D1 45 00 0B 31 2E 74 78 74 00'
    '33 30 34 32 36 31 35 33 B7 B0 04 00 C6 C7 84 A6'   <-- quiet similar with ABAP gzip data
    '0A 00 00 00'
    It seems that some gzip headers and trailers are missing from ABAP Processor's output, i don't know why, maybe it will help you to fake the file headers's to your data section: http://www.gzip.org/zlib/rfc-gzip.html
    Other topic is your Exception: java.util.zip.Inflater.inflate(Inflater.java:215)
    Inflater is used for ZLIB compressed files, try to pass your InputStream to an Object of [java.util.zip.GZIPInputStream] like:
    http://www.galileocomputing.de/openbook/javainsel6/javainsel_12_010.htm [Listing 12.29]
    Let me know if it works and have fun.....

  • SCCM 2012 Client not installing

    I have some machines that are installing fine and some that are failing.  Some that do install are hit and miss with installing the endpoint client as well. One one that is failing below is the client log on the machine..
    ==========[ ccmsetup started in process 6072 ]==========    ccmsetup    6/2/2014 11:31:46 AM    3328 (0x0D00)
    Running on platform X86    ccmsetup    6/2/2014 11:31:46 AM    3328 (0x0D00)
    Launch from folder C:\WINDOWS\ccmsetup\    ccmsetup    6/2/2014 11:31:46 AM    3328 (0x0D00)
    CcmSetup version: 5.0.7804.1400    ccmsetup    6/2/2014 11:31:46 AM    3328 (0x0D00)
    In ServiceMain    ccmsetup    6/2/2014 11:31:46 AM    3952 (0x0F70)
    Running on OS (5.1.2600). Service Pack (3.0). SuiteMask = 256. Product Type = 1    ccmsetup    6/2/2014 11:31:46 AM    3952 (0x0F70)
    Ccmsetup command line: "C:\WINDOWS\ccmsetup\ccmsetup.exe" /runservice /config:MobileClient.tcf    ccmsetup    6/2/2014 11:31:46 AM    3952 (0x0F70)
    Command line parameters for ccmsetup have been specified.  No registry lookup for command line parameters is required.    ccmsetup    6/2/2014 11:31:46 AM    3952 (0x0F70)
    Command line: "C:\WINDOWS\ccmsetup\ccmsetup.exe" /runservice /config:MobileClient.tcf    ccmsetup    6/2/2014 11:31:46 AM    3952 (0x0F70)
    SslState value: 224    ccmsetup    6/2/2014 11:31:46 AM    3952 (0x0F70)
    CCMHTTPPORT:    80    ccmsetup    6/2/2014 11:31:46 AM    3952 (0x0F70)
    CCMHTTPSPORT:    443    ccmsetup    6/2/2014 11:31:46 AM    3952 (0x0F70)
    CCMHTTPSSTATE:    224    ccmsetup    6/2/2014 11:31:46 AM    3952 (0x0F70)
    CCMHTTPSCERTNAME:        ccmsetup    6/2/2014 11:31:46 AM    3952 (0x0F70)
    FSP:        ccmsetup    6/2/2014 11:31:46 AM    3952 (0x0F70)
    CCMFIRSTCERT:    1    ccmsetup    6/2/2014 11:31:46 AM    3952 (0x0F70)
    Config file:      C:\WINDOWS\ccmsetup\MobileClientUnicode.tcf    ccmsetup    6/2/2014 11:31:46 AM    3952 (0x0F70)
    Retry time:       10 minute(s)    ccmsetup    6/2/2014 11:31:46 AM    3952 (0x0F70)
    MSI log file:     C:\WINDOWS\ccmsetup\Logs\client.msi.log    ccmsetup    6/2/2014 11:31:46 AM    3952 (0x0F70)
    MSI properties:    INSTALL="ALL" SMSSITECODE="UCS" CCMHTTPPORT="80" CCMHTTPSPORT="443" CCMHTTPSSTATE="224" CCMFIRSTCERT="1"    ccmsetup    6/2/2014 11:31:46
    AM    3952 (0x0F70)
    Source List:    ccmsetup    6/2/2014 11:31:46 AM    3952 (0x0F70)
                      \\ROSSCCM.domain.corp\SMSClient    ccmsetup    6/2/2014 11:31:46 AM    3952 (0x0F70)
                      \\ROSSCCM.domain.CORP\SMSClient    ccmsetup    6/2/2014 11:31:46 AM    3952 (0x0F70)
    MPs:    ccmsetup    6/2/2014 11:31:46 AM    3952 (0x0F70)
                      ROSSCCM.domain.corp    ccmsetup    6/2/2014 11:31:46 AM    3952 (0x0F70)
    No version of the client is currently detected.    ccmsetup    6/2/2014 11:31:47 AM    3952 (0x0F70)
    Updated security on object C:\WINDOWS\ccmsetup\.    ccmsetup    6/2/2014 11:31:48 AM    3952 (0x0F70)
    A Fallback Status Point has not been specified.  Message with STATEID='100' will not be sent.    ccmsetup    6/2/2014 11:31:48 AM    3952 (0x0F70)
    Running as user "SYSTEM"    ccmsetup    6/2/2014 11:31:50 AM    3952 (0x0F70)
    Detected 39283 MB free disk space on system drive.    ccmsetup    6/2/2014 11:31:50 AM    3952 (0x0F70)
    Checking Write Filter Status.    ccmsetup    6/2/2014 11:31:50 AM    3952 (0x0F70)
    This is not a supported write filter device. We are not in a write filter maintenance mode.    ccmsetup    6/2/2014 11:31:50 AM    3952 (0x0F70)
    Wmi repository check passed.    ccmsetup    6/2/2014 11:31:51 AM    3952 (0x0F70)
    Performing AD query: '(&(ObjectCategory=mSSMSManagementPoint)(mSSMSDefaultMP=TRUE)(mSSMSSiteCode=UCS))'    ccmsetup    6/2/2014 11:31:51 AM    3952 (0x0F70)
    OperationalXml '<ClientOperationalSettings><Version>5.00.7804.1400</Version><SecurityConfiguration><SecurityModeMask>0</SecurityModeMask><SecurityModeMaskEx>224</SecurityModeMaskEx><HTTPPort>80</HTTPPort><HTTPSPort>443</HTTPSPort><CertificateStoreName></CertificateStoreName><CertificateIssuers></CertificateIssuers><CertificateSelectionCriteria></CertificateSelectionCriteria><CertificateSelectFirstFlag>1</CertificateSelectFirstFlag><SiteSigningCert>308202F4308201DCA003020102021079F6EB29BC29EAB34D5190A53521A33A300D06092A864886F70D01010B05003016311430120603550403130B53697465205365727665723020170D3134303532363139323234345A180F32313134303530333139323234345A3016311430120603550403130B536974652053657276657230820122300D06092A864886F70D01010105000382010F003082010A02820101009880C8CE1825AA148D380A793AFF2EDC748685F0841A724F05C30884041E2F354EDD872420C4291615106E7EFF93E970F9AE4B00B95C324BDE8A4FEE73D44547238C216444A956CCBE4FCAC8FF0756304252CBB9726FB64004AFB667446E75717BB41B9905A221B88E5B228353EA6124FA2D11782FCD6BE19CBB70B5757830BB0045EBF1A8C59D0B185990AA0AE4413373F35BFE86C996648AAAABE0AA1399D972FC38C30541F4B18A9D1D2C3AEA94661B391E111740AFF5B1FFE17229CF3C3FE0ADED8EE52888454EFC3F41CD17CC4B18FF199FE94AC7CC3915AFDB571306552CAF4199A4E1DCAD480A37A81F297959A07DFBBCBF379DCC60EFADA45F4EF5190203010001A33C303A30220603551D11041B30198217524F535343434D2E726F736E65726175746F2E636F727030140603551D25040D300B06092B060104018237650B300D06092A864886F70D01010B050003820101008B1CF91187223C8CDB27604EA2479D5D24EF3D1AD3B8E359814E3F0D04601E364C4DD2B6159A71BA13A0F9D4951440508EFBACB210119CAB3FE1EB8257993BCEC76F7FB2EAC6FF9A34D2D88FC945C1A8C191C8A509CC8D4F4D1D662E3A9EA5C16D0378F86389E95F888D5E2F83B127EEF94C9A29F7081D8AD667EEE102BB57A9763D826C8DCE4EA6B187F0F0759368E50BE2FF9B39FB87C4C7F54369F8AD81996FF4CF37C8130A0039A2F3DA2A14B9A5BA0FDCA6AD3F278058B81CC56EE756B1906C15E41B14636167FC0F14489225FA9199047EF8D808D60EB72C0B5799613A6B2EEFB2140E77AE3EC37EAF9FE8E15425C5AE4507A165E97117803F655AD46C</SiteSigningCert></SecurityConfiguration><RootSiteCode>UCS</RootSiteCode><CCM>
    <CommandLine>SMSSITECODE=UCS</CommandLine> </CCM><FSP> <FSPServer></FSPServer> </FSP><Capabilities SchemaVersion ="1.0"><Property Name="SSLState" Value="0" /></Capabilities><Domain
    Value="domain.corp" /><Forest Value="domain.corp" /></ClientOperationalSettings>'    ccmsetup    6/2/2014 11:31:52 AM    3952 (0x0F70)
    Unable to open Registry key Software\Microsoft\CCM. Return Code [80070002]. Client HTTPS state is Unknown.    ccmsetup    6/2/2014 11:31:53 AM    3952 (0x0F70)
    The MP name retrieved is 'ROSSCCM.domain.corp' with version '7804' and capabilities '<Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities>'    ccmsetup   
    6/2/2014 11:31:53 AM    3952 (0x0F70)
    MP 'ROSSCCM.domain.corp' is compatible    ccmsetup    6/2/2014 11:31:53 AM    3952 (0x0F70)
    Retrieved 1 MP records from AD for site 'UCS'    ccmsetup    6/2/2014 11:31:53 AM    3952 (0x0F70)
    Retrived site version '5.00.7804.1400' from AD for site 'UCS'    ccmsetup    6/2/2014 11:31:53 AM    3952 (0x0F70)
    SiteCode:         UCS    ccmsetup    6/2/2014 11:31:53 AM    3952 (0x0F70)
    SiteVersion:      5.00.7804.1400    ccmsetup    6/2/2014 11:31:53 AM    3952 (0x0F70)
    Only one MP ROSSCCM.domain.corp is specified. Use it.    ccmsetup    6/2/2014 11:31:53 AM    3952 (0x0F70)
    Searching for DP locations from MP(s)...    ccmsetup    6/2/2014 11:31:53 AM    3952 (0x0F70)
    Current AD site of machine is MercedesBenz-Volvo    LocationServices    6/2/2014 11:31:53 AM    3952 (0x0F70)
    Local Machine is joined to an AD domain    LocationServices    6/2/2014 11:31:53 AM    3952 (0x0F70)
    Current AD forest name is domain.corp, domain name is domain.corp    LocationServices    6/2/2014 11:31:53 AM    3952 (0x0F70)
    DhcpGetOriginalSubnetMask entry point not supported.    LocationServices    6/2/2014 11:31:53 AM    3952 (0x0F70)
    Begin checking Alternate Network Configuration    LocationServices    6/2/2014 11:31:53 AM    3952 (0x0F70)
    Finished checking Alternate Network Configuration    LocationServices    6/2/2014 11:31:53 AM    3952 (0x0F70)
    Sending message body '<ContentLocationRequest SchemaVersion="1.00">
      <AssignedSite SiteCode="UCS"/>
      <ClientPackage/>
      <ClientLocationInfo LocationType="SMSPACKAGE" DistributeOnDemand="0" UseProtected="0" AllowCaching="0" BranchDPFlags="0" AllowHTTP="1" AllowSMB="0" AllowMulticast="0"
    UseInternetDP="0">
        <ADSite Name="MercedesBenz-Volvo"/>
        <Forest Name="domain.corp"/>
        <Domain Name="domain.corp"/>
        <IPAddresses>
    <IPAddress SubnetAddress="10.226.156.0" Address="10.226.156.92"/>
        </IPAddresses>
      </ClientLocationInfo>
    </ContentLocationRequest>
    '    ccmsetup    6/2/2014 11:31:53 AM    3952 (0x0F70)
    Sending message header '<Msg SchemaVersion="1.1"><ID>{DD705366-2018-4F61-83E1-2E9AEB22A3A5}</ID><SourceHost>MBTECH2</SourceHost><TargetAddress>mp:[http]MP_LocationManager</TargetAddress><ReplyTo>direct:MBTECH2:LS_ReplyLocations</ReplyTo><Priority>3</Priority><Timeout>600</Timeout><ReqVersion>5931</ReqVersion><TargetHost>ROSSCCM.domain.corp</TargetHost><TargetEndpoint>MP_LocationManager</TargetEndpoint><ReplyMode>Sync</ReplyMode><Protocol>http</Protocol><SentTime>2014-06-02T15:31:53Z</SentTime><Body
    Type="ByteRange" Offset="0" Length="1132"/><Hooks><Hook3 Name="zlib-compress"/></Hooks><Payload Type="inline"/></Msg>'    ccmsetup    6/2/2014
    11:31:53 AM    3952 (0x0F70)
    CCM_POST 'HTTP://ROSSCCM.domain.corp/ccm_system/request'    ccmsetup    6/2/2014 11:31:53 AM    3952 (0x0F70)
    Failed to receive ccm message response. Status code = 400    ccmsetup    6/2/2014 11:31:53 AM    3952 (0x0F70)
    GetDPLocations failed with error 0x80004005    ccmsetup    6/2/2014 11:31:53 AM    3952 (0x0F70)
    Failed to get DP locations as the expected version from MP 'ROSSCCM.domain.corp'. Error 0x80004005    ccmsetup    6/2/2014 11:31:53 AM    3952 (0x0F70)
    A Fallback Status Point has not been specified.  Message with STATEID='101' will not be sent.    ccmsetup    6/2/2014 11:31:53 AM    3952 (0x0F70)
    Next retry in 10 minute(s)...    ccmsetup    6/2/2014 11:31:53 AM    3952 (0x0F70)
    Current AD site of machine is MercedesBenz-Volvo    LocationServices    6/2/2014 11:41:53 AM    3952 (0x0F70)
    DHCP entry points already initialized.    LocationServices    6/2/2014 11:41:53 AM    3952 (0x0F70)
    Begin checking Alternate Network Configuration    LocationServices    6/2/2014 11:41:53 AM    3952 (0x0F70)
    Finished checking Alternate Network Configuration    LocationServices    6/2/2014 11:41:54 AM    3952 (0x0F70)
    Sending message body '<ContentLocationRequest SchemaVersion="1.00">
      <AssignedSite SiteCode="UCS"/>
      <ClientPackage/>
      <ClientLocationInfo LocationType="SMSPACKAGE" DistributeOnDemand="0" UseProtected="0" AllowCaching="0" BranchDPFlags="0" AllowHTTP="1" AllowSMB="0" AllowMulticast="0"
    UseInternetDP="0">
        <ADSite Name="MercedesBenz-Volvo"/>
        <Forest Name="domain.corp"/>
        <Domain Name="domain.corp"/>
        <IPAddresses>
    <IPAddress SubnetAddress="10.226.156.0" Address="10.226.156.92"/>
        </IPAddresses>
      </ClientLocationInfo>
    </ContentLocationRequest>
    '    ccmsetup    6/2/2014 11:41:54 AM    3952 (0x0F70)
    Sending message header '<Msg SchemaVersion="1.1"><ID>{77EA4F9D-47A6-41F4-A393-A7A0461CE196}</ID><SourceHost>MBTECH2</SourceHost><TargetAddress>mp:[http]MP_LocationManager</TargetAddress><ReplyTo>direct:MBTECH2:LS_ReplyLocations</ReplyTo><Priority>3</Priority><Timeout>600</Timeout><ReqVersion>5931</ReqVersion><TargetHost>ROSSCCM.domain.corp</TargetHost><TargetEndpoint>MP_LocationManager</TargetEndpoint><ReplyMode>Sync</ReplyMode><Protocol>http</Protocol><SentTime>2014-06-02T15:41:54Z</SentTime><Body
    Type="ByteRange" Offset="0" Length="1132"/><Hooks><Hook3 Name="zlib-compress"/></Hooks><Payload Type="inline"/></Msg>'    ccmsetup    6/2/2014
    11:41:54 AM    3952 (0x0F70)
    CCM_POST 'HTTP://ROSSCCM.domain.corp/ccm_system/request'    ccmsetup    6/2/2014 11:41:54 AM    3952 (0x0F70)
    Failed to receive ccm message response. Status code = 400    ccmsetup    6/2/2014 11:41:54 AM    3952 (0x0F70)
    GetDPLocations failed with error 0x80004005    ccmsetup    6/2/2014 11:41:54 AM    3952 (0x0F70)
    Failed to get DP locations as the expected version from MP 'ROSSCCM.domain.corp'. Error 0x80004005    ccmsetup    6/2/2014 11:41:54 AM    3952 (0x0F70)
    Failed to find DP locations from MP 'ROSSCCM.domain.corp' with error 0x80004005, status code 400. Check next MP.    ccmsetup    6/2/2014 11:41:54 AM    3952 (0x0F70)
    Only one MP ROSSCCM.domain.corp is specified. Use it.    ccmsetup    6/2/2014 11:41:54 AM    3952 (0x0F70)
    Have already tried all MPs. Couldn't find DP locations.    ccmsetup    6/2/2014 11:41:54 AM    3952 (0x0F70)
    GET 'HTTP://ROSSCCM.domain.corp/CCM_Client/ccmsetup.cab'    ccmsetup    6/2/2014 11:41:54 AM    3952 (0x0F70)
    Failed to successfully complete WinHttp request. (StatusCode at WinHttpQueryHeaders: 504)    ccmsetup    6/2/2014 11:41:54 AM    3952 (0x0F70)
    DownloadFileByWinHTTP failed with error 0x80004005    ccmsetup    6/2/2014 11:41:54 AM    3952 (0x0F70)
    CcmSetup failed with error code 0x80004005    ccmsetup    6/2/2014 11:41:54 AM    3328 (0x0D00)
    ==========[ ccmsetup started in process 536 ]==========    ccmsetup    6/3/2014 11:45:15 AM    4280 (0x10B8)
    Running on platform X86    ccmsetup    6/3/2014 11:45:15 AM    4280 (0x10B8)
    Updated security on object C:\WINDOWS\ccmsetup\cache\.    ccmsetup    6/3/2014 11:45:15 AM    4280 (0x10B8)
    Launch from folder C:\WINDOWS\ccmsetup\    ccmsetup    6/3/2014 11:45:15 AM    4280 (0x10B8)
    CcmSetup version: 5.0.7804.1400    ccmsetup    6/3/2014 11:45:15 AM    4280 (0x10B8)
    In ServiceMain    ccmsetup    6/3/2014 11:45:15 AM    2140 (0x085C)
    Running on OS (5.1.2600). Service Pack (3.0). SuiteMask = 256. Product Type = 1    ccmsetup    6/3/2014 11:45:15 AM    2140 (0x085C)
    Ccmsetup command line: "C:\WINDOWS\ccmsetup\ccmsetup.exe" /runservice /config:MobileClient.tcf    ccmsetup    6/3/2014 11:45:15 AM    2140 (0x085C)
    Command line parameters for ccmsetup have been specified.  No registry lookup for command line parameters is required.    ccmsetup    6/3/2014 11:45:15 AM    2140 (0x085C)
    Command line: "C:\WINDOWS\ccmsetup\ccmsetup.exe" /runservice /config:MobileClient.tcf    ccmsetup    6/3/2014 11:45:15 AM    2140 (0x085C)
    SslState value: 224    ccmsetup    6/3/2014 11:45:15 AM    2140 (0x085C)
    CCMHTTPPORT:    80    ccmsetup    6/3/2014 11:45:15 AM    2140 (0x085C)
    CCMHTTPSPORT:    443    ccmsetup    6/3/2014 11:45:15 AM    2140 (0x085C)
    CCMHTTPSSTATE:    224    ccmsetup    6/3/2014 11:45:15 AM    2140 (0x085C)
    CCMHTTPSCERTNAME:        ccmsetup    6/3/2014 11:45:15 AM    2140 (0x085C)
    FSP:        ccmsetup    6/3/2014 11:45:15 AM    2140 (0x085C)
    CCMFIRSTCERT:    1    ccmsetup    6/3/2014 11:45:15 AM    2140 (0x085C)
    Config file:      C:\WINDOWS\ccmsetup\MobileClientUnicode.tcf    ccmsetup    6/3/2014 11:45:15 AM    2140 (0x085C)
    Retry time:       10 minute(s)    ccmsetup    6/3/2014 11:45:15 AM    2140 (0x085C)
    MSI log file:     C:\WINDOWS\ccmsetup\Logs\client.msi.log    ccmsetup    6/3/2014 11:45:15 AM    2140 (0x085C)
    MSI properties:    INSTALL="ALL" SMSSITECODE="UCS" CCMHTTPPORT="80" CCMHTTPSPORT="443" CCMHTTPSSTATE="224" CCMFIRSTCERT="1"    ccmsetup    6/3/2014 11:45:15
    AM    2140 (0x085C)
    Source List:    ccmsetup    6/3/2014 11:45:15 AM    2140 (0x085C)
                      \\ROSSCCM.domain.corp\SMSClient    ccmsetup    6/3/2014 11:45:15 AM    2140 (0x085C)
                      \\ROSSCCM.domain.CORP\SMSClient    ccmsetup    6/3/2014 11:45:15 AM    2140 (0x085C)
    MPs:    ccmsetup    6/3/2014 11:45:15 AM    2140 (0x085C)
                      ROSSCCM.domain.corp    ccmsetup    6/3/2014 11:45:15 AM    2140 (0x085C)
    No version of the client is currently detected.    ccmsetup    6/3/2014 11:45:15 AM    2140 (0x085C)
    Updated security on object C:\WINDOWS\ccmsetup\.    ccmsetup    6/3/2014 11:45:15 AM    2140 (0x085C)
    A Fallback Status Point has not been specified.  Message with STATEID='100' will not be sent.    ccmsetup    6/3/2014 11:45:15 AM    2140 (0x085C)
    Running as user "SYSTEM"    ccmsetup    6/3/2014 11:45:17 AM    2140 (0x085C)
    Detected 39213 MB free disk space on system drive.    ccmsetup    6/3/2014 11:45:17 AM    2140 (0x085C)
    Checking Write Filter Status.    ccmsetup    6/3/2014 11:45:17 AM    2140 (0x085C)
    This is not a supported write filter device. We are not in a write filter maintenance mode.    ccmsetup    6/3/2014 11:45:17 AM    2140 (0x085C)
    Wmi repository check passed.    ccmsetup    6/3/2014 11:45:17 AM    2140 (0x085C)
    Performing AD query: '(&(ObjectCategory=mSSMSManagementPoint)(mSSMSDefaultMP=TRUE)(mSSMSSiteCode=UCS))'    ccmsetup    6/3/2014 11:45:18 AM    2140 (0x085C)
    OperationalXml '<ClientOperationalSettings><Version>5.00.7804.1400</Version><SecurityConfiguration><SecurityModeMask>0</SecurityModeMask><SecurityModeMaskEx>224</SecurityModeMaskEx><HTTPPort>80</HTTPPort><HTTPSPort>443</HTTPSPort><CertificateStoreName></CertificateStoreName><CertificateIssuers></CertificateIssuers><CertificateSelectionCriteria></CertificateSelectionCriteria><CertificateSelectFirstFlag>1</CertificateSelectFirstFlag><SiteSigningCert>308202F4308201DCA003020102021079F6EB29BC29EAB34D5190A53521A33A300D06092A864886F70D01010B05003016311430120603550403130B53697465205365727665723020170D3134303532363139323234345A180F32313134303530333139323234345A3016311430120603550403130B536974652053657276657230820122300D06092A864886F70D01010105000382010F003082010A02820101009880C8CE1825AA148D380A793AFF2EDC748685F0841A724F05C30884041E2F354EDD872420C4291615106E7EFF93E970F9AE4B00B95C324BDE8A4FEE73D44547238C216444A956CCBE4FCAC8FF0756304252CBB9726FB64004AFB667446E75717BB41B9905A221B88E5B228353EA6124FA2D11782FCD6BE19CBB70B5757830BB0045E

    <![LOG[==========[ ccmsetup started in process 6072 ]==========]LOG]!><time="11:31:46.509+240" date="06-02-2014" component="ccmsetup" context="" type="1" thread="3328" file="ccmsetup.cpp:9100">
    <![LOG[Running on platform X86]LOG]!><time="11:31:46.509+240" date="06-02-2014" component="ccmsetup" context="" type="1" thread="3328" file="util.cpp:1681">
    <![LOG[Launch from folder C:\WINDOWS\ccmsetup\]LOG]!><time="11:31:46.509+240" date="06-02-2014" component="ccmsetup" context="" type="1" thread="3328" file="ccmsetup.cpp:721">
    <![LOG[CcmSetup version: 5.0.7804.1400]LOG]!><time="11:31:46.509+240" date="06-02-2014" component="ccmsetup" context="" type="1" thread="3328" file="ccmsetup.cpp:727">
    <![LOG[In ServiceMain]LOG]!><time="11:31:46.572+240" date="06-02-2014" component="ccmsetup" context="" type="0" thread="3952" file="ccmsetup.cpp:3340">
    <![LOG[Running on OS (5.1.2600). Service Pack (3.0). SuiteMask = 256. Product Type = 1]LOG]!><time="11:31:46.634+240" date="06-02-2014" component="ccmsetup" context="" type="1" thread="3952" file="ccmsetup.cpp:2673">
    <![LOG[Ccmsetup command line: "C:\WINDOWS\ccmsetup\ccmsetup.exe" /runservice /config:MobileClient.tcf]LOG]!><time="11:31:46.650+240" date="06-02-2014" component="ccmsetup" context="" type="1" thread="3952" file="ccmsetup.cpp:3563">
    <![LOG[Command line parameters for ccmsetup have been specified.  No registry lookup for command line parameters is required.]LOG]!><time="11:31:46.650+240" date="06-02-2014" component="ccmsetup" context="" type="1" thread="3952" file="ccmsetup.cpp:3721">
    <![LOG[Command line: "C:\WINDOWS\ccmsetup\ccmsetup.exe" /runservice /config:MobileClient.tcf]LOG]!><time="11:31:46.650+240" date="06-02-2014" component="ccmsetup" context="" type="1" thread="3952" file="ccmsetup.cpp:3722">
    <![LOG[SslState value: 224]LOG]!><time="11:31:46.728+240" date="06-02-2014" component="ccmsetup" context="" type="0" thread="3952" file="ccmsetup.cpp:4330">
    <![LOG[CCMHTTPPORT:    80]LOG]!><time="11:31:46.775+240" date="06-02-2014" component="ccmsetup" context="" type="1" thread="3952" file="ccmsetup.cpp:8280">
    <![LOG[CCMHTTPSPORT:    443]LOG]!><time="11:31:46.775+240" date="06-02-2014" component="ccmsetup" context="" type="1" thread="3952" file="ccmsetup.cpp:8295">
    <![LOG[CCMHTTPSSTATE:    224]LOG]!><time="11:31:46.775+240" date="06-02-2014" component="ccmsetup" context="" type="1" thread="3952" file="ccmsetup.cpp:8313">
    <![LOG[CCMHTTPSCERTNAME:    ]LOG]!><time="11:31:46.775+240" date="06-02-2014" component="ccmsetup" context="" type="1" thread="3952" file="ccmsetup.cpp:8331">
    <![LOG[FSP:    ]LOG]!><time="11:31:46.775+240" date="06-02-2014" component="ccmsetup" context="" type="1" thread="3952" file="ccmsetup.cpp:8383">
    <![LOG[CCMFIRSTCERT:    1]LOG]!><time="11:31:46.775+240" date="06-02-2014" component="ccmsetup" context="" type="1" thread="3952" file="ccmsetup.cpp:8441">
    <![LOG[Config file:      C:\WINDOWS\ccmsetup\MobileClientUnicode.tcf]LOG]!><time="11:31:46.806+240" date="06-02-2014" component="ccmsetup" context="" type="1" thread="3952" file="ccmsetup.cpp:4432">
    <![LOG[Retry time:       10 minute(s)]LOG]!><time="11:31:46.806+240" date="06-02-2014" component="ccmsetup" context="" type="1" thread="3952" file="ccmsetup.cpp:4433">
    <![LOG[MSI log file:     C:\WINDOWS\ccmsetup\Logs\client.msi.log]LOG]!><time="11:31:46.806+240" date="06-02-2014" component="ccmsetup" context="" type="1" thread="3952" file="ccmsetup.cpp:4434">
    <![LOG[MSI properties:    INSTALL="ALL" SMSSITECODE="UCS" CCMHTTPPORT="80" CCMHTTPSPORT="443" CCMHTTPSSTATE="224" CCMFIRSTCERT="1"]LOG]!><time="11:31:46.806+240" date="06-02-2014" component="ccmsetup" context="" type="1" thread="3952"
    file="ccmsetup.cpp:4435">
    <![LOG[Source List:]LOG]!><time="11:31:46.806+240" date="06-02-2014" component="ccmsetup" context="" type="1" thread="3952" file="ccmsetup.cpp:4443">
    <![LOG[                  \\ROSSCCM.rosnerauto.corp\SMSClient]LOG]!><time="11:31:46.806+240" date="06-02-2014" component="ccmsetup" context="" type="1" thread="3952"
    file="ccmsetup.cpp:4450">
    <![LOG[                  \\ROSSCCM.ROSNERAUTO.CORP\SMSClient]LOG]!><time="11:31:46.806+240" date="06-02-2014" component="ccmsetup" context="" type="1" thread="3952"
    file="ccmsetup.cpp:4459">
    <![LOG[MPs:]LOG]!><time="11:31:46.806+240" date="06-02-2014" component="ccmsetup" context="" type="1" thread="3952" file="ccmsetup.cpp:4462">
    <![LOG[                  ROSSCCM.rosnerauto.corp]LOG]!><time="11:31:46.806+240" date="06-02-2014" component="ccmsetup" context="" type="1" thread="3952" file="ccmsetup.cpp:4477">
    <![LOG[No version of the client is currently detected.]LOG]!><time="11:31:47.713+240" date="06-02-2014" component="ccmsetup" context="" type="1" thread="3952" file="ccmsetup.cpp:2734">
    <![LOG[Updated security on object C:\WINDOWS\ccmsetup\.]LOG]!><time="11:31:48.025+240" date="06-02-2014" component="ccmsetup" context="" type="0" thread="3952" file="ccmsetup.cpp:8944">
    <![LOG[A Fallback Status Point has not been specified.  Message with STATEID='100' will not be sent.]LOG]!><time="11:31:48.025+240" date="06-02-2014" component="ccmsetup" context="" type="1" thread="3952" file="ccmsetup.cpp:9428">
    <![LOG[Running as user "SYSTEM"]LOG]!><time="11:31:50.650+240" date="06-02-2014" component="ccmsetup" context="" type="1" thread="3952" file="ccmsetup.cpp:1972">
    <![LOG[Detected 39283 MB free disk space on system drive.]LOG]!><time="11:31:50.650+240" date="06-02-2014" component="ccmsetup" context="" type="1" thread="3952" file="util.cpp:574">
    <![LOG[Checking Write Filter Status.]LOG]!><time="11:31:50.650+240" date="06-02-2014" component="ccmsetup" context="" type="1" thread="3952" file="ccmsetup.cpp:1999">
    <![LOG[This is not a supported write filter device. We are not in a write filter maintenance mode.]LOG]!><time="11:31:50.650+240" date="06-02-2014" component="ccmsetup" context="" type="1" thread="3952" file="ccmsetup.cpp:2026">
    <![LOG[Wmi repository check passed.]LOG]!><time="11:31:51.025+240" date="06-02-2014" component="ccmsetup" context="" type="0" thread="3952" file="util.cpp:2276">
    <![LOG[Performing AD query: '(&(ObjectCategory=mSSMSManagementPoint)(mSSMSDefaultMP=TRUE)(mSSMSSiteCode=UCS))']LOG]!><time="11:31:51.666+240" date="06-02-2014" component="ccmsetup" context="" type="0" thread="3952" file="lsad.cpp:640">
    <![LOG[OperationalXml '<ClientOperationalSettings><Version>5.00.7804.1400</Version><SecurityConfiguration><SecurityModeMask>0</SecurityModeMask><SecurityModeMaskEx>224</SecurityModeMaskEx><HTTPPort>80</HTTPPort><HTTPSPort>443</HTTPSPort><CertificateStoreName></CertificateStoreName><CertificateIssuers></CertificateIssuers><CertificateSelectionCriteria></CertificateSelectionCriteria><CertificateSelectFirstFlag>1</CertificateSelectFirstFlag><SiteSigningCert>308202F4308201DCA003020102021079F6EB29BC29EAB34D5190A53521A33A300D06092A864886F70D01010B05003016311430120603550403130B53697465205365727665723020170D3134303532363139323234345A180F32313134303530333139323234345A3016311430120603550403130B536974652053657276657230820122300D06092A864886F70D01010105000382010F003082010A02820101009880C8CE1825AA148D380A793AFF2EDC748685F0841A724F05C30884041E2F354EDD872420C4291615106E7EFF93E970F9AE4B00B95C324BDE8A4FEE73D44547238C216444A956CCBE4FCAC8FF0756304252CBB9726FB64004AFB667446E75717BB41B9905A221B88E5B228353EA6124FA2D11782FCD6BE19CBB70B5757830BB0045EBF1A8C59D0B185990AA0AE4413373F35BFE86C996648AAAABE0AA1399D972FC38C30541F4B18A9D1D2C3AEA94661B391E111740AFF5B1FFE17229CF3C3FE0ADED8EE52888454EFC3F41CD17CC4B18FF199FE94AC7CC3915AFDB571306552CAF4199A4E1DCAD480A37A81F297959A07DFBBCBF379DCC60EFADA45F4EF5190203010001A33C303A30220603551D11041B30198217524F535343434D2E726F736E65726175746F2E636F727030140603551D25040D300B06092B060104018237650B300D06092A864886F70D01010B050003820101008B1CF91187223C8CDB27604EA2479D5D24EF3D1AD3B8E359814E3F0D04601E364C4DD2B6159A71BA13A0F9D4951440508EFBACB210119CAB3FE1EB8257993BCEC76F7FB2EAC6FF9A34D2D88FC945C1A8C191C8A509CC8D4F4D1D662E3A9EA5C16D0378F86389E95F888D5E2F83B127EEF94C9A29F7081D8AD667EEE102BB57A9763D826C8DCE4EA6B187F0F0759368E50BE2FF9B39FB87C4C7F54369F8AD81996FF4CF37C8130A0039A2F3DA2A14B9A5BA0FDCA6AD3F278058B81CC56EE756B1906C15E41B14636167FC0F14489225FA9199047EF8D808D60EB72C0B5799613A6B2EEFB2140E77AE3EC37EAF9FE8E15425C5AE4507A165E97117803F655AD46C</SiteSigningCert></SecurityConfiguration><RootSiteCode>UCS</RootSiteCode><CCM>
    <CommandLine>SMSSITECODE=UCS</CommandLine> </CCM><FSP> <FSPServer></FSPServer> </FSP><Capabilities SchemaVersion ="1.0"><Property Name="SSLState" Value="0" /></Capabilities><Domain Value="rosnerauto.corp"
    /><Forest Value="rosnerauto.corp" /></ClientOperationalSettings>']LOG]!><time="11:31:52.728+240" date="06-02-2014" component="ccmsetup" context="" type="0" thread="3952" file="lsadcache.cpp:236">
    <![LOG[Unable to open Registry key Software\Microsoft\CCM. Return Code [80070002]. Client HTTPS state is Unknown.]LOG]!><time="11:31:53.431+240" date="06-02-2014" component="ccmsetup" context="" type="1" thread="3952" file="ccmutillib.cpp:373">
    <![LOG[The MP name retrieved is 'ROSSCCM.rosnerauto.corp' with version '7804' and capabilities '<Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities>']LOG]!><time="11:31:53.447+240" date="06-02-2014"
    component="ccmsetup" context="" type="1" thread="3952" file="lsadcache.cpp:334">
    <![LOG[MP 'ROSSCCM.rosnerauto.corp' is compatible]LOG]!><time="11:31:53.447+240" date="06-02-2014" component="ccmsetup" context="" type="1" thread="3952" file="lsadcache.cpp:339">
    <![LOG[Retrieved 1 MP records from AD for site 'UCS']LOG]!><time="11:31:53.447+240" date="06-02-2014" component="ccmsetup" context="" type="0" thread="3952" file="lsadcache.cpp:287">
    <![LOG[Retrived site version '5.00.7804.1400' from AD for site 'UCS']LOG]!><time="11:31:53.463+240" date="06-02-2014" component="ccmsetup" context="" type="1" thread="3952" file="siteinfo.cpp:575">
    <![LOG[SiteCode:         UCS]LOG]!><time="11:31:53.463+240" date="06-02-2014" component="ccmsetup" context="" type="1" thread="3952" file="ccmsetup.cpp:2051">
    <![LOG[SiteVersion:      5.00.7804.1400]LOG]!><time="11:31:53.463+240" date="06-02-2014" component="ccmsetup" context="" type="1" thread="3952" file="ccmsetup.cpp:2052">
    <![LOG[Only one MP ROSSCCM.rosnerauto.corp is specified. Use it.]LOG]!><time="11:31:53.556+240" date="06-02-2014" component="ccmsetup" context="" type="1" thread="3952" file="ccmsetup.cpp:9745">
    <![LOG[Searching for DP locations from MP(s)...]LOG]!><time="11:31:53.556+240" date="06-02-2014" component="ccmsetup" context="" type="1" thread="3952" file="ccmsetup.cpp:10683">
    <![LOG[Current AD site of machine is MercedesBenz-Volvo]LOG]!><time="11:31:53.650+240" date="06-02-2014" component="LocationServices" context="" type="1" thread="3952" file="lsad.cpp:746">
    <![LOG[Local Machine is joined to an AD domain]LOG]!><time="11:31:53.650+240" date="06-02-2014" component="LocationServices" context="" type="0" thread="3952" file="lsad.cpp:698">
    <![LOG[Current AD forest name is rosnerauto.corp, domain name is rosnerauto.corp]LOG]!><time="11:31:53.650+240" date="06-02-2014" component="LocationServices" context="" type="1" thread="3952" file="lsad.cpp:818">
    <![LOG[DhcpGetOriginalSubnetMask entry point not supported.]LOG]!><time="11:31:53.697+240" date="06-02-2014" component="LocationServices" context="" type="2" thread="3952" file="ccmiputil.cpp:105">
    <![LOG[Begin checking Alternate Network Configuration]LOG]!><time="11:31:53.697+240" date="06-02-2014" component="LocationServices" context="" type="0" thread="3952" file="ccmiputil.cpp:1095">
    <![LOG[Finished checking Alternate Network Configuration]LOG]!><time="11:31:53.759+240" date="06-02-2014" component="LocationServices" context="" type="0" thread="3952" file="ccmiputil.cpp:1172">
    <![LOG[Sending message body '<ContentLocationRequest SchemaVersion="1.00">
      <AssignedSite SiteCode="UCS"/>
      <ClientPackage/>
      <ClientLocationInfo LocationType="SMSPACKAGE" DistributeOnDemand="0" UseProtected="0" AllowCaching="0" BranchDPFlags="0" AllowHTTP="1" AllowSMB="0" AllowMulticast="0" UseInternetDP="0">
        <ADSite Name="MercedesBenz-Volvo"/>
        <Forest Name="rosnerauto.corp"/>
        <Domain Name="rosnerauto.corp"/>
        <IPAddresses>
    <IPAddress SubnetAddress="10.226.156.0" Address="10.226.156.92"/>
        </IPAddresses>
      </ClientLocationInfo>
    </ContentLocationRequest>
    ']LOG]!><time="11:31:53.759+240" date="06-02-2014" component="ccmsetup" context="" type="0" thread="3952" file="siteinfo.cpp:96">
    <![LOG[Sending message header '<Msg SchemaVersion="1.1"><ID>{DD705366-2018-4F61-83E1-2E9AEB22A3A5}</ID><SourceHost>MBTECH2</SourceHost><TargetAddress>mp:[http]MP_LocationManager</TargetAddress><ReplyTo>direct:MBTECH2:LS_ReplyLocations</ReplyTo><Priority>3</Priority><Timeout>600</Timeout><ReqVersion>5931</ReqVersion><TargetHost>ROSSCCM.rosnerauto.corp</TargetHost><TargetEndpoint>MP_LocationManager</TargetEndpoint><ReplyMode>Sync</ReplyMode><Protocol>http</Protocol><SentTime>2014-06-02T15:31:53Z</SentTime><Body
    Type="ByteRange" Offset="0" Length="1132"/><Hooks><Hook3 Name="zlib-compress"/></Hooks><Payload Type="inline"/></Msg>']LOG]!><time="11:31:53.759+240" date="06-02-2014" component="ccmsetup" context="" type="0" thread="3952"
    file="siteinfo.cpp:177">
    <![LOG[CCM_POST 'HTTP://ROSSCCM.rosnerauto.corp/ccm_system/request']LOG]!><time="11:31:53.775+240" date="06-02-2014" component="ccmsetup" context="" type="1" thread="3952" file="httphelper.cpp:807">
    <![LOG[Failed to receive ccm message response. Status code = 400]LOG]!><time="11:31:53.838+240" date="06-02-2014" component="ccmsetup" context="" type="2" thread="3952" file="httphelper.cpp:1694">
    <![LOG[GetDPLocations failed with error 0x80004005]LOG]!><time="11:31:53.838+240" date="06-02-2014" component="ccmsetup" context="" type="3" thread="3952" file="siteinfo.cpp:532">
    <![LOG[Failed to get DP locations as the expected version from MP 'ROSSCCM.rosnerauto.corp'. Error 0x80004005]LOG]!><time="11:31:53.838+240" date="06-02-2014" component="ccmsetup" context="" type="2" thread="3952" file="ccmsetup.cpp:10926">
    <![LOG[A Fallback Status Point has not been specified.  Message with STATEID='101' will not be sent.]LOG]!><time="11:31:53.838+240" date="06-02-2014" component="ccmsetup" context="" type="1" thread="3952" file="ccmsetup.cpp:9428">
    <![LOG[Next retry in 10 minute(s)...]LOG]!><time="11:31:53.838+240" date="06-02-2014" component="ccmsetup" context="" type="0" thread="3952" file="ccmsetup.cpp:8498">
    <![LOG[Current AD site of machine is MercedesBenz-Volvo]LOG]!><time="11:41:53.947+240" date="06-02-2014" component="LocationServices" context="" type="1" thread="3952" file="lsad.cpp:746">
    <![LOG[DHCP entry points already initialized.]LOG]!><time="11:41:53.947+240" date="06-02-2014" component="LocationServices" context="" type="0" thread="3952" file="ccmiputil.cpp:75">
    <![LOG[Begin checking Alternate Network Configuration]LOG]!><time="11:41:53.947+240" date="06-02-2014" component="LocationServices" context="" type="0" thread="3952" file="ccmiputil.cpp:1095">
    <![LOG[Finished checking Alternate Network Configuration]LOG]!><time="11:41:54.025+240" date="06-02-2014" component="LocationServices" context="" type="0" thread="3952" file="ccmiputil.cpp:1172">
    <![LOG[Sending message body '<ContentLocationRequest SchemaVersion="1.00">
      <AssignedSite SiteCode="UCS"/>
      <ClientPackage/>
      <ClientLocationInfo LocationType="SMSPACKAGE" DistributeOnDemand="0" UseProtected="0" AllowCaching="0" BranchDPFlags="0" AllowHTTP="1" AllowSMB="0" AllowMulticast="0" UseInternetDP="0">
        <ADSite Name="MercedesBenz-Volvo"/>
        <Forest Name="rosnerauto.corp"/>
        <Domain Name="rosnerauto.corp"/>
        <IPAddresses>
    <IPAddress SubnetAddress="10.226.156.0" Address="10.226.156.92"/>
        </IPAddresses>
      </ClientLocationInfo>
    </ContentLocationRequest>
    ']LOG]!><time="11:41:54.025+240" date="06-02-2014" component="ccmsetup" context="" type="0" thread="3952" file="siteinfo.cpp:96">
    <![LOG[Sending message header '<Msg SchemaVersion="1.1"><ID>{77EA4F9D-47A6-41F4-A393-A7A0461CE196}</ID><SourceHost>MBTECH2</SourceHost><TargetAddress>mp:[http]MP_LocationManager</TargetAddress><ReplyTo>direct:MBTECH2:LS_ReplyLocations</ReplyTo><Priority>3</Priority><Timeout>600</Timeout><ReqVersion>5931</ReqVersion><TargetHost>ROSSCCM.rosnerauto.corp</TargetHost><TargetEndpoint>MP_LocationManager</TargetEndpoint><ReplyMode>Sync</ReplyMode><Protocol>http</Protocol><SentTime>2014-06-02T15:41:54Z</SentTime><Body
    Type="ByteRange" Offset="0" Length="1132"/><Hooks><Hook3 Name="zlib-compress"/></Hooks><Payload Type="inline"/></Msg>']LOG]!><time="11:41:54.025+240" date="06-02-2014" component="ccmsetup" context="" type="0" thread="3952"
    file="siteinfo.cpp:177">
    <![LOG[CCM_POST 'HTTP://ROSSCCM.rosnerauto.corp/ccm_system/request']LOG]!><time="11:41:54.025+240" date="06-02-2014" component="ccmsetup" context="" type="1" thread="3952" file="httphelper.cpp:807">
    <![LOG[Failed to receive ccm message response. Status code = 400]LOG]!><time="11:41:54.041+240" date="06-02-2014" component="ccmsetup" context="" type="2" thread="3952" file="httphelper.cpp:1694">
    <![LOG[GetDPLocations failed with error 0x80004005]LOG]!><time="11:41:54.041+240" date="06-02-2014" component="ccmsetup" context="" type="3" thread="3952" file="siteinfo.cpp:532">
    <![LOG[Failed to get DP locations as the expected version from MP 'ROSSCCM.rosnerauto.corp'. Error 0x80004005]LOG]!><time="11:41:54.041+240" date="06-02-2014" component="ccmsetup" context="" type="2" thread="3952" file="ccmsetup.cpp:10926">
    <![LOG[Failed to find DP locations from MP 'ROSSCCM.rosnerauto.corp' with error 0x80004005, status code 400. Check next MP.]LOG]!><time="11:41:54.041+240" date="06-02-2014" component="ccmsetup" context="" type="2" thread="3952" file="ccmsetup.cpp:10782">
    <![LOG[Only one MP ROSSCCM.rosnerauto.corp is specified. Use it.]LOG]!><time="11:41:54.041+240" date="06-02-2014" component="ccmsetup" context="" type="1" thread="3952" file="ccmsetup.cpp:9745">
    <![LOG[Have already tried all MPs. Couldn't find DP locations.]LOG]!><time="11:41:54.041+240" date="06-02-2014" component="ccmsetup" context="" type="3" thread="3952" file="ccmsetup.cpp:10811">
    <![LOG[GET 'HTTP://ROSSCCM.rosnerauto.corp/CCM_Client/ccmsetup.cab']LOG]!><time="11:41:54.041+240" date="06-02-2014" component="ccmsetup" context="" type="1" thread="3952" file="httphelper.cpp:807">
    <![LOG[Failed to successfully complete WinHttp request. (StatusCode at WinHttpQueryHeaders: 504)]LOG]!><time="11:41:54.072+240" date="06-02-2014" component="ccmsetup" context="" type="3" thread="3952" file="httphelper.cpp:1013">
    <![LOG[DownloadFileByWinHTTP failed with error 0x80004005]LOG]!><time="11:41:54.072+240" date="06-02-2014" component="ccmsetup" context="" type="3" thread="3952" file="httphelper.cpp:1081">
    <![LOG[CcmSetup failed with error code 0x80004005]LOG]!><time="11:41:54.088+240" date="06-02-2014" component="ccmsetup" context="" type="1" thread="3328" file="ccmsetup.cpp:10544">
    <![LOG[==========[ ccmsetup started in process 536 ]==========]LOG]!><time="11:45:15.057+240" date="06-03-2014" component="ccmsetup" context="" type="1" thread="4280" file="ccmsetup.cpp:9100">
    <![LOG[Running on platform X86]LOG]!><time="11:45:15.072+240" date="06-03-2014" component="ccmsetup" context="" type="1" thread="4280" file="util.cpp:1681">
    <![LOG[Updated security on object C:\WINDOWS\ccmsetup\cache\.]LOG]!><time="11:45:15.072+240" date="06-03-2014" component="ccmsetup" context="" type="0" thread="4280" file="ccmsetup.cpp:8944">
    <![LOG[Launch from folder C:\WINDOWS\ccmsetup\]LOG]!><time="11:45:15.072+240" date="06-03-2014" component="ccmsetup" context="" type="1" thread="4280" file="ccmsetup.cpp:721">
    <![LOG[CcmSetup version: 5.0.7804.1400]LOG]!><time="11:45:15.072+240" date="06-03-2014" component="ccmsetup" context="" type="1" thread="4280" file="ccmsetup.cpp:727">
    <![LOG[In ServiceMain]LOG]!><time="11:45:15.072+240" date="06-03-2014" component="ccmsetup" context="" type="0" thread="2140" file="ccmsetup.cpp:3340">
    <![LOG[Running on OS (5.1.2600). Service Pack (3.0). SuiteMask = 256. Product Type = 1]LOG]!><time="11:45:15.072+240" date="06-03-2014" component="ccmsetup" context="" type="1" thread="2140" file="ccmsetup.cpp:2673">
    <![LOG[Ccmsetup command line: "C:\WINDOWS\ccmsetup\ccmsetup.exe" /runservice /config:MobileClient.tcf]LOG]!><time="11:45:15.072+240" date="06-03-2014" component="ccmsetup" context="" type="1" thread="2140" file="ccmsetup.cpp:3563">
    <![LOG[Command line parameters for ccmsetup have been specified.  No registry lookup for command line parameters is required.]LOG]!><time="11:45:15.072+240" date="06-03-2014" component="ccmsetup" context="" type="1" thread="2140" file="ccmsetup.cpp:3721">
    <![LOG[Command line: "C:\WINDOWS\ccmsetup\ccmsetup.exe" /runservice /config:MobileClient.tcf]LOG]!><time="11:45:15.072+240" date="06-03-2014" component="ccmsetup" context="" type="1" thread="2140" file="ccmsetup.cpp:3722">
    <![LOG[SslState value: 224]LOG]!><time="11:45:15.072+240" date="06-03-2014" component="ccmsetup" context="" type="0" thread="2140" file="ccmsetup.cpp:4330">
    <![LOG[CCMHTTPPORT:    80]LOG]!><time="11:45:15.104+240" date="06-03-2014" component="ccmsetup" context="" type="1" thread="2140" file="ccmsetup.cpp:8280">
    <![LOG[CCMHTTPSPORT:    443]LOG]!><time="11:45:15.104+240" date="06-03-2014" component="ccmsetup" context="" type="1" thread="2140" file="ccmsetup.cpp:8295">
    <![LOG[CCMHTTPSSTATE:    224]LOG]!><time="11:45:15.104+240" date="06-03-2014" component="ccmsetup" context="" type="1" thread="2140" file="ccmsetup.cpp:8313">
    <![LOG[CCMHTTPSCERTNAME:    ]LOG]!><time="11:45:15.104+240" date="06-03-2014" component="ccmsetup" context="" type="1" thread="2140" file="ccmsetup.cpp:8331">
    <![LOG[FSP:    ]LOG]!><time="11:45:15.104+240" date="06-03-2014" component="ccmsetup" context="" type="1" thread="2140" file="ccmsetup.cpp:8383">
    <![LOG[CCMFIRSTCERT:    1]LOG]!><time="11:45:15.104+240" date="06-03-2014" component="ccmsetup" context="" type="1" thread="2140" file="ccmsetup.cpp:8441">
    <![LOG[Config file:      C:\WINDOWS\ccmsetup\MobileClientUnicode.tcf]LOG]!><time="11:45:15.104+240" date="06-03-2014" component="ccmsetup" context="" type="1" thread="2140" file="ccmsetup.cpp:4432">
    <![LOG[Retry time:       10 minute(s)]LOG]!><time="11:45:15.104+240" date="06-03-2014" component="ccmsetup" context="" type="1" thread="2140" file="ccmsetup.cpp:4433">
    <![LOG[MSI log file:     C:\WINDOWS\ccmsetup\Logs\client.msi.log]LOG]!><time="11:45:15.104+240" date="06-03-2014" component="ccmsetup" context="" type="1" thread="2140" file="ccmsetup.cpp:4434">
    <![LOG[MSI properties:    INSTALL="ALL" SMSSITECODE="UCS" CCMHTTPPORT="80" CCMHTTPSPORT="443" CCMHTTPSSTATE="224" CCMFIRSTCERT="1"]LOG]!><time="11:45:15.104+240" date="06-03-2014" component="ccmsetup" context="" type="1" thread="2140"
    file="ccmsetup.cpp:4435">
    <![LOG[Source List:]LOG]!><time="11:45:15.104+240" date="06-03-2014" component="ccmsetup" context="" type="1" thread="2140" file="ccmsetup.cpp:4443">
    <![LOG[                  \\ROSSCCM.rosnerauto.corp\SMSClient]LOG]!><time="11:45:15.104+240" date="06-03-2014" component="ccmsetup" context="" type="1" thread="2140"
    file="ccmsetup.cpp:4450">
    <![LOG[                  \\ROSSCCM.ROSNERAUTO.CORP\SMSClient]LOG]!><time="11:45:15.104+240" date="06-03-2014" component="ccmsetup" context="" type="1" thread="2140"
    file="ccmsetup.cpp:4459">
    <![LOG[MPs:]LOG]!><time="11:45:15.104+240" date="06-03-2014" component="ccmsetup" context="" type="1" thread="2140" file="ccmsetup.cpp:4462">
    <![LOG[                  ROSSCCM.rosnerauto.corp]LOG]!><time="11:45:15.104+240" date="06-03-2014" component="ccmsetup" context="" type="1" thread="2140" file="ccmsetup.cpp:4477">
    <![LOG[No version of the client is currently detected.]LOG]!><time="11:45:15.416+240" date="06-03-2014" component="ccmsetup" context="" type="1" thread="2140" file="ccmsetup.cpp:2734">
    <![LOG[Updated security on object C:\WINDOWS\ccmsetup\.]LOG]!><time="11:45:15.432+240" date="06-03-2014" component="ccmsetup" context="" type="0" thread="2140" file="ccmsetup.cpp:8944">
    <![LOG[A Fallback Status Point has not been specified.  Message with STATEID='100' will not be sent.]LOG]!><time="11:45:15.432+240" date="06-03-2014" component="ccmsetup" context="" type="1" thread="2140" file="ccmsetup.cpp:9428">
    <![LOG[Running as user "SYSTEM"]LOG]!><time="11:45:17.494+240" date="06-03-2014" component="ccmsetup" context="" type="1" thread="2140" file="ccmsetup.cpp:1972">
    <![LOG[Detected 39213 MB free disk space on system drive.]LOG]!><time="11:45:17.494+240" date="06-03-2014" component="ccmsetup" context="" type="1" thread="2140" file="util.cpp:574">
    <![LOG[Checking Write Filter Status.]LOG]!><time="11:45:17.494+240" date="06-03-2014" component="ccmsetup" context="" type="1" thread="2140" file="ccmsetup.cpp:1999">
    <![LOG[This is not a supported write filter device. We are not in a write filter maintenance mode.]LOG]!><time="11:45:17.494+240" date="06-03-2014" component="ccmsetup" context="" type="1" thread="2140" file="ccmsetup.cpp:2026">
    <![LOG[Wmi repository check passed.]LOG]!><time="11:45:17.791+240" date="06-03-2014" component="ccmsetup" context="" type="0" thread="2140" file="util.cpp:2276">
    <![LOG[Performing AD query: '(&(ObjectCategory=mSSMSManagementPoint)(mSSMSDefaultMP=TRUE)(mSSMSSiteCode=UCS))']LOG]!><time="11:45:18.135+240" date="06-03-2014" component="ccmsetup" context="" type="0" thread="2140" file="lsad.cpp:640">
    <![LOG[OperationalXml '<ClientOperationalSettings><Version>5.00.7804.1400</Version><SecurityConfiguration><SecurityModeMask>0</SecurityModeMask><SecurityModeMaskEx>224</SecurityModeMaskEx><HTTPPort>80</HTTPPort><HTTPSPort>443</HTTPSPort><CertificateStoreName></CertificateStoreName><CertificateIssuers></CertificateIssuers><CertificateSelectionCriteria></CertificateSelectionCriteria><CertificateSelectFirstFlag>1</CertificateSelectFirstFlag><SiteSigningCert>308202F4308201DCA003020102021079F6EB29BC29EAB34D5190A53521A33A300D06092A864886F70D01010B05003016311430120603550403130B53697465205365727665723020170D3134303532363139323234345A180F32313134303530333139323234345A3016311430120603550403130B536974652053657276657230820122300D06092A864886F70D01010105000382010F003082010A02820101009880C8CE1825AA148D380A793AFF2EDC748685F0841A724F05C30884041E2F354EDD872420C4291615106E7EFF93E970F9AE4B00B95C324BDE8A4FEE73D44547238C216444A956CCBE4FCAC8FF0756304252CBB9726FB64004AFB667446E75717BB41B9905A221B88E5B228353EA6124FA2D11782FCD6BE19CBB70B5757830BB0045EBF1A8C59D0B185990AA0AE4413373F35BFE86C996648AAAABE0AA1399D972FC38C30541F4B18A9D1D2C3AEA94661B391E111740AFF5B1FFE17229CF3C3FE0ADED8EE52888454EFC3F41CD17CC4B18FF199FE94AC7CC3915AFDB571306552CAF4199A4E1DCAD480A37A81F297959A07DFBBCBF379DCC60EFADA45F4EF5190203010001A33C303A30220603551D11041B30198217524F535343434D2E726F736E65726175746F2E636F727030140603551D25040D300B06092B060104018237650B300D06092A864886F70D01010B050003820101008B1CF91187223C8CDB27604EA2479D5D24EF3D1AD3B8E359814E3F0D04601E364C4DD2B6159A71BA13A0F9D4951440508EFBACB210119CAB3FE1EB8257993BCEC76F7FB2EAC6FF9A34D2D88FC945C1A8C191C8A509CC8D4F4D1D662E3A9EA5C16D0378F86389E95F888D5E2F83B127EEF94C9A29F7081D8AD667EEE102BB57A9763D826C8DCE4EA6B187F0F0759368E50BE2FF9B39FB87C4C7F54369F8AD81996FF4CF37C8130A0039A2F3DA2A14B9A5BA0FDCA6AD3F278058B81CC56EE756B1906C15E41B14636167FC0F14489225FA9199047EF8D808D60EB72C0B5799613A6B2EEFB2140E77AE3EC37EAF9FE8E15425C5AE4507A165E97117803F655AD46C</SiteSigningCert></SecurityConfiguration><RootSiteCode>UCS</RootSiteCode><CCM>
    <CommandLine>SMSSITECODE=UCS</CommandLine> </CCM><FSP> <FSPServer></FSPServer> </FSP><Capabilities SchemaVersion ="1.0"><Property Name="SSLState" Value="0" /></Capabilities><Domain Value="rosnerauto.corp"
    /><Forest Value="rosnerauto.corp" /></ClientOperationalSettings>']LOG]!><time="11:45:19.635+240" date="06-03-2014" component="ccmsetup" context="" type="0" thread="2140" file="lsadcache.cpp:236">
    <![LOG[Unable to open Registry key Software\Microsoft\CCM. Return Code [80070002]. Client HTTPS state is Unknown.]LOG]!><time="11:45:19.744+240" date="06-03-2014" component="ccmsetup" context="" type="1" thread="2140" file="ccmutillib.cpp:373">
    <![LOG[The MP name retrieved is 'ROSSCCM.rosnerauto.corp' with version '7804' and capabilities '<Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities>']LOG]!><time="11:45:19.760+240" date="06-03-2014"
    component="ccmsetup" context="" type="1" thread="2140" file="lsadcache.cpp:334">
    <![LOG[MP 'ROSSCCM.rosnerauto.corp' is compatible]LOG]!><time="11:45:19.760+240" date="06-03-2014" component="ccmsetup" context="" type="1" thread="2140" file="lsadcache.cpp:339">
    <![LOG[Retrieved 1 MP records from AD for site 'UCS']LOG]!><time="11:45:19.760+240" date="06-03-2014" component="ccmsetup" context="" type="0" thread="2140" file="lsadcache.cpp:287">
    <![LOG[Retrived site version '5.00.7804.1400' from AD for site 'UCS']LOG]!><time="11:45:19.776+240" date="06-03-2014" component="ccmsetup" context="" type="1" thread="2140" file="siteinfo.cpp:575">
    <![LOG[SiteCode:         UCS]LOG]!><time="11:45:19.776+240" date="06-03-2014" component="ccmsetup" context="" type="1" thread="2140" file="ccmsetup.cpp:2051">
    <![LOG[SiteVersion:      5.00.7804.1400]LOG]!><time="11:45:19.776+240" date="06-03-2014" component="ccmsetup" context="" type="1" thread="2140" file="ccmsetup.cpp:2052">
    <![LOG[Ccmsetup is being restarted due to an administrative action. Installation files will be reset and downloaded again.]LOG]!><time="11:45:19.776+240" date="06-03-2014" component="ccmsetup" context="" type="1" thread="2140" file="ccmsetup.cpp:2086">
    <![LOG[Only one MP ROSSCCM.rosnerauto.corp is specified. Use it.]LOG]!><time="11:45:19.807+240" date="06-03-2014" component="ccmsetup" context="" type="1" thread="2140" file="ccmsetup.cpp:9745">
    <![LOG[Searching for DP locations from MP(s)...]LOG]!><time="11:45:19.807+240" date="06-03-2014" component="ccmsetup" context="" type="1" thread="2140" file="ccmsetup.cpp:10683">
    <![LOG[Current AD site of machine is MercedesBenz-Volvo]LOG]!><time="11:45:19.916+240" date="06-03-2014" component="LocationServices" context="" type="1" thread="2140" file="lsad.cpp:746">
    <![LOG[Local Machine is joined to an AD domain]LOG]!><time="11:45:19.916+240" date="06-03-2014" component="LocationServices" context="" type="0" thread="2140" file="lsad.cpp:698">
    <![LOG[Current AD forest name is rosnerauto.corp, domain name is rosnerauto.corp]LOG]!><time="11:45:19.932+240" date="06-03-2014" component="LocationServices" context="" type="1" thread="2140" file="lsad.cpp:818">
    <![LOG[DhcpGetOriginalSubnetMask entry point not supported.]LOG]!><time="11:45:19.963+240" date="06-03-2014" component="LocationServices" context="" type="2" thread="2140" file="ccmiputil.cpp:105">
    <![LOG[Begin checking Alternate Network Configuration]LOG]!><time="11:45:19.963+240" date="06-03-2014" component="LocationServices" context="" type="0" thread="2140" file="ccmiputil.cpp:1095">
    <![LOG[Finished checking Alternate Network Configuration]LOG]!><time="11:45:20.088+240" date="06-03-2014" component="LocationServices" context="" type="0" thread="2140" file="ccmiputil.cpp:1172">
    <![LOG[Sending message body '<ContentLocationRequest SchemaVersion="1.00">
      <AssignedSite SiteCode="UCS"/>
      <ClientPackage/>
      <ClientLocationInfo LocationType="SMSPACKAGE" DistributeOnDemand="0" UseProtected="0" AllowCaching="0" BranchDPFlags="0" AllowHTTP="1" AllowSMB="0" AllowMulticast="0" UseInternetDP="0">
        <ADSite Name="MercedesBenz-Volvo"/>
        <Forest Name="rosnerauto.corp"/>
        <Domain Name="rosnerauto.corp"/>
        <IPAddresses>
    <IPAddress SubnetAddress="10.226.156.0" Address="10.226.156.92"/>
        </IPAddresses>
      </ClientLocationInfo>
    </ContentLocationRequest>
    ']LOG]!><time="11:45:20.088+240" date="06-03-2014" component="ccmsetup" context="" type="0" thread="2140" file="siteinfo.cpp:96">
    <![LOG[Sending message header '<Msg SchemaVersion="1.1"><ID>{93AB2F88-658C-4A11-9E67-9C2E0CEE8C3E}</ID><SourceHost>MBTECH2</SourceHost><TargetAddress>mp:[http]MP_LocationManager</TargetAddress><ReplyTo>direct:MBTECH2:LS_ReplyLocations</ReplyTo><Priority>3</Priority><Timeout>600</Timeout><ReqVersion>5931</ReqVersion><TargetHost>ROSSCCM.rosnerauto.corp</TargetHost><TargetEndpoint>MP_LocationManager</TargetEndpoint><ReplyMode>Sync</ReplyMode><Protocol>http</Protocol><SentTime>2014-06-03T15:45:20Z</SentTime><Body
    Type="ByteRange" Offset="0" Length="1132"/><Hooks><Hook3 Name="zlib-compress"/></Hooks><Payload Type="inline"/></Msg>']LOG]!><time="11:45:20.088+240" date="06-03-2014" component="ccmsetup" context="" type="0" thread="2140"
    file="siteinfo.cpp:177">
    <![LOG[CCM_POST 'HTTP://ROSSCCM.rosnerauto.corp/ccm_system/request']LOG]!><time="11:45:20.119+240" date="06-03-2014" component="ccmsetup" context="" type="1" thread="2140" file="httphelper.cpp:807">
    <![LOG[Failed to receive ccm message response. Status code = 400]LOG]!><time="11:45:20.151+240" date="06-03-2014" component="ccmsetup" context="" type="2" thread="2140" file="httphelper.cpp:1694">
    <![LOG[GetDPLocations failed with error 0x80004005]LOG]!><time="11:45:20.151+240" date="06-03-2014" component="ccmsetup" context="" type="3" thread="2140" file="siteinfo.cpp:532">
    <![LOG[Failed to get DP locations as the expected version from MP 'ROSSCCM.rosnerauto.corp'. Error 0x80004005]LOG]!><time="11:45:20.151+240" date="06-03-2014" component="ccmsetup" context="" type="2" thread="2140" file="ccmsetup.cpp:10926">
    <![LOG[A Fallback Status Point has not been specified.  Message with STATEID='101' will not be sent.]LOG]!><time="11:45:20.151+240" date="06-03-2014" component="ccmsetup" context="" type="1" thread="2140" file="ccmsetup.cpp:9428">
    <![LOG[Next retry in 10 minute(s)...]LOG]!><time="11:45:20.151+240" date="06-03-2014" component="ccmsetup" context="" type="0" thread="2140" file="ccmsetup.cpp:8498">
    <![LOG[Current AD site of machine is MercedesBenz-Volvo]LOG]!><time="11:55:20.244+240" date="06-03-2014" component="LocationServices" context="" type="1" thread="2140" file="lsad.cpp:746">
    <![LOG[DHCP entry points already initialized.]LOG]!><time="11:55:20.244+240" date="06-03-2014" component="LocationServices" context="" type="0" thread="2140" file="ccmiputil.cpp:75">
    <![LOG[Begin checking Alternate Network Configuration]LOG]!><time="11:55:20.244+240" date="06-03-2014" component="LocationServices" context="" type="0" thread="2140" file="ccmiputil.cpp:1095">
    <![LOG[Finished checking Alternate Network Configuration]LOG]!><time="11:55:20.416+240" date="06-03-2014" component="LocationServices" context="" type="0" thread="2140" file="ccmiputil.cpp:1172">
    <![LOG[Sending message body '<ContentLocationRequest SchemaVersion="1.00">
      <AssignedSite SiteCode="UCS"/>
      <ClientPackage/>
      <ClientLocationInfo LocationType="SMSPACKAGE" DistributeOnDemand="0" UseProtected="0" AllowCaching="0" BranchDPFlags="0" AllowHTTP="1" AllowSMB="0" AllowMulticast="0" UseInternetDP="0">
        <ADSite Name="MercedesBenz-Volvo"/>
        <Forest Name="rosnerauto.corp"/>
        <Domain Name="rosnerauto.corp"/>
        <IPAddresses>
    <IPAddress SubnetAddress="10.226.156.0" Address="10.226.156.92"/>
        </IPAddresses>
      </ClientLocationInfo>
    </ContentLocationRequest>
    ']LOG]!><time="11:55:20.416+240" date="06-03-2014" component="ccmsetup" context="" type="0" thread="2140" file="siteinfo.cpp:96">
    <![LOG[Sending message header '<Msg SchemaVersion="1.1"><ID>{8D1FED25-E2B6-4D0B-ACED-6E27C199DBEE}</ID><SourceHost>MBTECH2</SourceHost><TargetAddress>mp:[http]MP_LocationManager</TargetAddress><ReplyTo>direct:MBTECH2:LS_ReplyLocations</ReplyTo><Priority>3</Priority><Timeout>600</Timeout><ReqVersion>5931</ReqVersion><TargetHost>ROSSCCM.rosnerauto.corp</TargetHost><TargetEndpoint>MP_LocationManager</TargetEndpoint><ReplyMode>Sync</ReplyMode><Protocol>http</Protocol><SentTime>2014-06-03T15:55:20Z</SentTime><Body
    Type="ByteRange" Offset="0" Length="1132"/><Hooks><Hook3 Name="zlib-compress"/></Hooks><Payload Type="inline"/></Msg>']LOG]!><time="11:55:20.416+240" date="06-03-2014" component="ccmsetup" context="" type="0" thread="2140"
    file="siteinfo.cpp:177">
    <![LOG[CCM_POST 'HTTP://ROSSCCM.rosnerauto.corp/ccm_system/request']LOG]!><time="11:55:20.416+240" date="06-03-2014" component="ccmsetup" context="" type="1" thread="2140" file="httphelper.cpp:807">
    <![LOG[Failed to receive ccm message response. Status code = 400]LOG]!><time="11:55:20.432+240" date="06-03-2014" component="ccmsetup" context="" type="2" thread="2140" file="httphelper.cpp:1694">
    <![LOG[GetDPLocations failed with error 0x80004005]LOG]!><time="11:55:20.432+240" date="06-03-2014" component="ccmsetup" context="" type="3" thread="2140" file="siteinfo.cpp:532">
    <![LOG[Failed to get DP locations as the expected version from MP 'ROSSCCM.rosnerauto.corp'. Error 0x80004005]LOG]!><time="11:55:20.432+240" date="06-03-2014" component="ccmsetup" context="" type="2" thread="2140" file="ccmsetup.cpp:10926">
    <![LOG[Failed to find DP locations from MP 'ROSSCCM.rosnerauto.corp' with error 0x80004005, status code 400. Check next MP.]LOG]!><time="11:55:20.432+240" date="06-03-2014" component="ccmsetup" context="" type="2" thread="2140" file="ccmsetup.cpp:10782">
    <![LOG[Only one MP ROSSCCM.rosnerauto.corp is specified. Use it.]LOG]!><time="11:55:20.432+240" date="06-03-2014" component="ccmsetup" context="" type="1" thread="2140" file="ccmsetup.cpp:9745">
    <![LOG[Have already tried all MPs. Couldn't find DP locations.]LOG]!><time="11:55:20.432+240" date="06-03-2014" component="ccmsetup" context="" type="3" thread="2140" file="ccmsetup.cpp:10811">
    <![LOG[GET 'HTTP://ROSSCCM.rosnerauto.corp/CCM_Client/ccmsetup.cab']LOG]!><time="11:55:20.432+240" date="06-03-2014" component="ccmsetup" context="" type="1" thread="2140" file="httphelper.cpp:807">
    <![LOG[Failed to successfully complete WinHttp request. (StatusCode at WinHttpQueryHeaders: 504)]LOG]!><time="11:55:20.479+240" date="06-03-2014" component="ccmsetup" context="" type="3" thread="2140" file="httphelper.cpp:1013">
    <![LOG[DownloadFileByWinHTTP failed with error 0x80004005]LOG]!><time="11:55:20.479+240" date="06-03-2014" component="ccmsetup" context="" type="3" thread="2140" file="httphelper.cpp:1081">
    <![LOG[CcmSetup failed with error code 0x80004005]LOG]!><time="11:55:20.479+240" date="06-03-2014" component="ccmsetup" context="" type="1" thread="4280" file="ccmsetup.cpp:10544">

  • Client Push Not Working SCCM 2012

    I am new to SCCM and have a test rig SCCM 2012 for testing, problem is the client push fails every time and I am at a loss to explain why. I have tried removing and reading the DP, FSP and MP roles (Both these are on the SCCM core server) I have run IIS
    reset, removed all AD configured Boundaries and Groups in favor of IP range but I keep getting the same errors. Any advice here would be greatly appreciated... Below is this mornings logs highlighting the failure.
    <![LOG[==========[ ccmsetup started in process 5764 ]==========]LOG]!><time="11:31:48.304-120" date="01-12-2014" component="ccmsetup" context="" type="1" thread="7628" file="ccmsetup.cpp:9437">
    <![LOG[Running on platform X64]LOG]!><time="11:31:48.305-120" date="01-12-2014" component="ccmsetup" context="" type="1" thread="7628" file="util.cpp:1837">
    <![LOG[Updated security on object C:\Windows\ccmsetup\cache\.]LOG]!><time="11:31:48.305-120" date="01-12-2014" component="ccmsetup" context="" type="0" thread="7628" file="ccmsetup.cpp:9281">
    <![LOG[Launch from folder C:\Windows\ccmsetup\]LOG]!><time="11:31:48.306-120" date="01-12-2014" component="ccmsetup" context="" type="1" thread="7628" file="ccmsetup.cpp:721">
    <![LOG[CcmSetup version: 5.0.7958.1000]LOG]!><time="11:31:48.306-120" date="01-12-2014" component="ccmsetup" context="" type="1" thread="7628" file="ccmsetup.cpp:727">
    <![LOG[In ServiceMain]LOG]!><time="11:31:48.308-120" date="01-12-2014" component="ccmsetup" context="" type="0" thread="6436" file="ccmsetup.cpp:3365">
    <![LOG[Running on 'Microsoft Windows Server 2012 Standard' (6.2.9200). Service Pack (0.0). SuiteMask = 272. Product Type = 18]LOG]!><time="11:31:48.366-120" date="01-12-2014" component="ccmsetup" context="" type="1"
    thread="6436" file="util.cpp:1919">
    <![LOG[Ccmsetup command line: "C:\Windows\ccmsetup\ccmsetup.exe" /runservice /config:MobileClient.tcf]LOG]!><time="11:31:48.366-120" date="01-12-2014" component="ccmsetup" context="" type="1"
    thread="6436" file="ccmsetup.cpp:3590">
    <![LOG[Command line parameters for ccmsetup have been specified.  No registry lookup for command line parameters is required.]LOG]!><time="11:31:48.366-120" date="01-12-2014" component="ccmsetup" context=""
    type="1" thread="6436" file="ccmsetup.cpp:3775">
    <![LOG[Command line: "C:\Windows\ccmsetup\ccmsetup.exe" /runservice /config:MobileClient.tcf]LOG]!><time="11:31:48.366-120" date="01-12-2014" component="ccmsetup" context="" type="1" thread="6436"
    file="ccmsetup.cpp:3776">
    <![LOG[SslState value: 224]LOG]!><time="11:31:48.368-120" date="01-12-2014" component="ccmsetup" context="" type="0" thread="6436" file="ccmsetup.cpp:4425">
    <![LOG[CCMHTTPPORT:    80]LOG]!><time="11:31:48.369-120" date="01-12-2014" component="ccmsetup" context="" type="1" thread="6436" file="ccmsetup.cpp:8617">
    <![LOG[CCMHTTPSPORT:    443]LOG]!><time="11:31:48.369-120" date="01-12-2014" component="ccmsetup" context="" type="1" thread="6436" file="ccmsetup.cpp:8632">
    <![LOG[CCMHTTPSSTATE:    224]LOG]!><time="11:31:48.369-120" date="01-12-2014" component="ccmsetup" context="" type="1" thread="6436" file="ccmsetup.cpp:8650">
    <![LOG[CCMHTTPSCERTNAME:    ]LOG]!><time="11:31:48.369-120" date="01-12-2014" component="ccmsetup" context="" type="1" thread="6436" file="ccmsetup.cpp:8668">
    <![LOG[FSP:    VKYV-HV01]LOG]!><time="11:31:48.369-120" date="01-12-2014" component="ccmsetup" context="" type="1" thread="6436" file="ccmsetup.cpp:8720">
    <![LOG[CCMFIRSTCERT:    1]LOG]!><time="11:31:48.370-120" date="01-12-2014" component="ccmsetup" context="" type="1" thread="6436" file="ccmsetup.cpp:8778">
    <![LOG[Config file:      C:\Windows\ccmsetup\MobileClientUnicode.tcf]LOG]!><time="11:31:48.371-120" date="01-12-2014" component="ccmsetup" context="" type="1" thread="6436"
    file="ccmsetup.cpp:4539">
    <![LOG[Retry time:       10 minute(s)]LOG]!><time="11:31:48.371-120" date="01-12-2014" component="ccmsetup" context="" type="1" thread="6436" file="ccmsetup.cpp:4540">
    <![LOG[MSI log file:     C:\Windows\ccmsetup\Logs\client.msi.log]LOG]!><time="11:31:48.371-120" date="01-12-2014" component="ccmsetup" context="" type="1" thread="6436" file="ccmsetup.cpp:4541">
    <![LOG[MSI properties:    INSTALL="ALL" SMSSITECODE="VSI" FSP="VKYV-HV01" CCMHTTPPORT="80" CCMHTTPSPORT="443" CCMHTTPSSTATE="224" CCMFIRSTCERT="1"]LOG]!><time="11:31:48.371-120"
    date="01-12-2014" component="ccmsetup" context="" type="1" thread="6436" file="ccmsetup.cpp:4542">
    <![LOG[Source List:]LOG]!><time="11:31:48.371-120" date="01-12-2014" component="ccmsetup" context="" type="1" thread="6436" file="ccmsetup.cpp:4550">
    <![LOG[                  \\VKYV-HV01.VKYV.LAN\SMSClient]LOG]!><time="11:31:48.371-120" date="01-12-2014" component="ccmsetup" context="" type="1" thread="6436"
    file="ccmsetup.cpp:4557">
    <![LOG[                  \\VKYV-HV01.VKYV.LAN\SMSClient]LOG]!><time="11:31:48.371-120" date="01-12-2014" component="ccmsetup" context="" type="1" thread="6436"
    file="ccmsetup.cpp:4566">
    <![LOG[MPs:]LOG]!><time="11:31:48.371-120" date="01-12-2014" component="ccmsetup" context="" type="1" thread="6436" file="ccmsetup.cpp:4569">
    <![LOG[                  VKYV-HV01.VKYV.LAN]LOG]!><time="11:31:48.371-120" date="01-12-2014" component="ccmsetup" context="" type="1" thread="6436"
    file="ccmsetup.cpp:4584">
    <![LOG[No version of the client is currently detected.]LOG]!><time="11:31:48.374-120" date="01-12-2014" component="ccmsetup" context="" type="1" thread="6436" file="ccmsetup.cpp:2748">
    <![LOG[Updated security on object C:\Windows\ccmsetup\.]LOG]!><time="11:31:48.750-120" date="01-12-2014" component="ccmsetup" context="" type="0" thread="6436" file="ccmsetup.cpp:9281">
    <![LOG[Sending Fallback Status Point message to 'VKYV-HV01', STATEID='100'.]LOG]!><time="11:31:48.750-120" date="01-12-2014" component="ccmsetup" context="" type="1" thread="6436" file="ccmsetup.cpp:9756">
    <![LOG[Failed to get client version for sending messages to FSP. Error 0x8004100e]LOG]!><time="11:31:48.752-120" date="01-12-2014" component="ccmsetup" context="" type="2" thread="6436" file="ccmsetup.cpp:9838">
    <![LOG[Params to send FSP message '5.0.7958.1000 Deployment ']LOG]!><time="11:31:48.752-120" date="01-12-2014" component="ccmsetup" context="" type="0" thread="6436" file="ccmsetup.cpp:9887">
    <![LOG[State message with TopicType 800 and TopicId {037AE2A1-3C8B-482A-A180-04392D0312BA} has been sent to the FSP]LOG]!><time="11:31:49.020-120" date="01-12-2014" component="FSPStateMessage" context="" type="1"
    thread="6436" file="fsputillib.cpp:752">
    <![LOG[Running as user "SYSTEM"]LOG]!><time="11:31:49.058-120" date="01-12-2014" component="ccmsetup" context="" type="1" thread="6436" file="ccmsetup.cpp:1995">
    <![LOG[Detected 44815 MB free disk space on system drive.]LOG]!><time="11:31:49.059-120" date="01-12-2014" component="ccmsetup" context="" type="1" thread="6436" file="util.cpp:628">
    <![LOG[Checking Write Filter Status.]LOG]!><time="11:31:49.059-120" date="01-12-2014" component="ccmsetup" context="" type="1" thread="6436" file="ccmsetup.cpp:2024">
    <![LOG[This is not a supported write filter device. We are not in a write filter maintenance mode.]LOG]!><time="11:31:49.059-120" date="01-12-2014" component="ccmsetup" context="" type="1" thread="6436"
    file="ccmsetup.cpp:2051">
    <![LOG[Performing AD query: '(&(ObjectCategory=mSSMSManagementPoint)(mSSMSDefaultMP=TRUE)(mSSMSSiteCode=VSI))']LOG]!><time="11:31:49.179-120" date="01-12-2014" component="ccmsetup" context="" type="0"
    thread="6436" 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>308202EF308201D7A0030201020210518E5B64E54890884666F9411DA2CCB3300D06092A864886F70D01010B05003016311430120603550403130B53697465205365727665723020170D3133313032393130343732365A180F32313133313030363130343732365A3016311430120603550403130B536974652053657276657230820122300D06092A864886F70D01010105000382010F003082010A0282010100B999635F3FFE2F0E7DB66B36407C0ED4FB7DC23A8CD42078325E08E7E553EC2AD1D35A5758268CA497A8023B9F056089BA068ADD84ABDDF74E00B1C402308F287387A8FFA3DBCBFDAC81F8A7F32C959B7CCDCBF5FC0D87434A2907C074675CAA4EA6963D2956EAD43957A831B746E4E5D00C66AAC1F2FE5F71D26D54909EEA0883D780EF46111B124C9C77E3F9D767D36972B9420FEFE291A2A377D958A27C1B24F72E3A870498CF44D8C854214C38F1A50C5CBB3924215F037B0256ACD78B5E32FDFD9BF9760329F523777C16234B560C808F201605774B77B54833D0EA918C44106FF72409876A6D1D4FE75EC9F3A349578577B96BAC62E39D102ACBB401230203010001A3373035301D0603551D11041630148212564B59562D485630312E564B59562E4C414E30140603551D25040D300B06092B060104018237650B300D06092A864886F70D01010B05000382010100B6B5CDA1A6AA6F712365113F0A81829B596081DB9AF07D5F10DEB0103F158460E9C17B3E1A201A81B9890741F7E2BF5B564058FED25FC724DD4AC948BC9462B1B6A7991AFD159C673B01CE019ABE0A0E0DDD9881AAC751427751C22A43754295DF3F4514EE1BDAD5EF06EE1010E294113B4BB00EB2DF555EE790224E40905E5183E77FF0D87D5EBD98A819DAAE265BA4CD81BA444C226B8B04EF4E80E62ECBF5F3DEDFD2F91822919DBDE529DB043FFAF424A84A0F85A8D0A45F4451F9F5DA48DCADE6603BF106128A36C20F2C52AD69A562BA7834497792D819EAD45DF18BFC6AF1AC60111AC34CF0BF48D9B037064BF41E90E910F36AEAB50C1697C18E800D</SiteSigningCert></SecurityConfiguration><RootSiteCode>VSI</RootSiteCode><CCM>
    <CommandLine>SMSSITECODE=VSI FSP=VKYV-HV01</CommandLine> </CCM><FSP> <FSPServer>VKYV-HV01.VKYV.LAN</FSPServer> </FSP><Capabilities SchemaVersion ="1.0"><Property Name="SSLState" Value="0"
    /></Capabilities><Domain Value="VKYV.LAN" /><Forest Value="VKYV.LAN" /></ClientOperationalSettings>']LOG]!><time="11:31:49.228-120" date="01-12-2014" component="ccmsetup" context=""
    type="0" thread="6436" file="lsadcache.cpp:236">
    <![LOG[Unable to open Registry key Software\Microsoft\CCM. Return Code [80070002]. Client HTTPS state is Unknown.]LOG]!><time="11:31:49.229-120" date="01-12-2014" component="ccmsetup" context="" type="1"
    thread="6436" file="ccmutillib.cpp:373">
    <![LOG[The MP name retrieved is 'VKYV-HV01.VKYV.LAN' with version '7958' and capabilities '<Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities>']LOG]!><time="11:31:49.229-120"
    date="01-12-2014" component="ccmsetup" context="" type="1" thread="6436" file="lsadcache.cpp:334">
    <![LOG[MP 'VKYV-HV01.VKYV.LAN' is compatible]LOG]!><time="11:31:49.229-120" date="01-12-2014" component="ccmsetup" context="" type="1" thread="6436" file="lsadcache.cpp:339">
    <![LOG[Retrieved 1 MP records from AD for site 'VSI']LOG]!><time="11:31:49.229-120" date="01-12-2014" component="ccmsetup" context="" type="0" thread="6436" file="lsadcache.cpp:287">
    <![LOG[Retrived site version '5.00.7958.1000' from AD for site 'VSI']LOG]!><time="11:31:49.231-120" date="01-12-2014" component="ccmsetup" context="" type="1" thread="6436" file="siteinfo.cpp:575">
    <![LOG[SiteCode:         VSI]LOG]!><time="11:31:49.231-120" date="01-12-2014" component="ccmsetup" context="" type="1" thread="6436" file="ccmsetup.cpp:2076">
    <![LOG[SiteVersion:      5.00.7958.1000]LOG]!><time="11:31:49.231-120" date="01-12-2014" component="ccmsetup" context="" type="1" thread="6436" file="ccmsetup.cpp:2077">
    <![LOG[Ccmsetup is being restarted due to an administrative action. Installation files will be reset and downloaded again.]LOG]!><time="11:31:49.231-120" date="01-12-2014" component="ccmsetup" context="" type="1"
    thread="6436" file="ccmsetup.cpp:2111">
    <![LOG[Only one MP VKYV-HV01.VKYV.LAN is specified. Use it.]LOG]!><time="11:31:49.232-120" date="01-12-2014" component="ccmsetup" context="" type="1" thread="6436" file="ccmsetup.cpp:10080">
    <![LOG[Searching for DP locations from MP(s)...]LOG]!><time="11:31:49.232-120" date="01-12-2014" component="ccmsetup" context="" type="1" thread="6436" file="ccmsetup.cpp:11018">
    <![LOG[Current AD site of machine is Default-First-Site-Name]LOG]!><time="11:31:49.232-120" date="01-12-2014" component="LocationServices" context="" type="1" thread="6436" file="lsad.cpp:770">
    <![LOG[Local Machine is joined to an AD domain]LOG]!><time="11:31:49.232-120" date="01-12-2014" component="LocationServices" context="" type="0" thread="6436" file="lsad.cpp:714">
    <![LOG[Current AD forest name is VKYV.LAN, domain name is VKYV.LAN]LOG]!><time="11:31:49.235-120" date="01-12-2014" component="LocationServices" context="" type="1" thread="6436" file="lsad.cpp:842">
    <![LOG[DhcpGetOriginalSubnetMask entry point is supported.]LOG]!><time="11:31:49.237-120" date="01-12-2014" component="LocationServices" context="" type="0" thread="6436" file="ccmiputil.cpp:117">
    <![LOG[Begin checking Alternate Network Configuration]LOG]!><time="11:31:49.237-120" date="01-12-2014" component="LocationServices" context="" type="0" thread="6436" file="ccmiputil.cpp:1095">
    <![LOG[Finished checking Alternate Network Configuration]LOG]!><time="11:31:49.239-120" date="01-12-2014" component="LocationServices" context="" type="0" thread="6436" file="ccmiputil.cpp:1172">
    <![LOG[Sending message body '<ContentLocationRequest SchemaVersion="1.00">
      <AssignedSite SiteCode="VSI"/>
      <ClientPackage/>
      <ClientLocationInfo LocationType="SMSPACKAGE" DistributeOnDemand="0" UseProtected="0" AllowCaching="0" BranchDPFlags="0" AllowHTTP="1" AllowSMB="0" AllowMulticast="0"
    UseInternetDP="0">
        <ADSite Name="Default-First-Site-Name"/>
        <Forest Name="VKYV.LAN"/>
        <Domain Name="VKYV.LAN"/>
        <IPAddresses>
    <IPAddress SubnetAddress="10.6.2.0" Address="10.6.2.2"/>
        </IPAddresses>
      </ClientLocationInfo>
    </ContentLocationRequest>
    ']LOG]!><time="11:31:49.256-120" date="01-12-2014" component="ccmsetup" context="" type="0" thread="6436" file="siteinfo.cpp:96">
    <![LOG[Sending message header '<Msg SchemaVersion="1.1"><ID>{CC48E819-7755-4650-83AC-8BC823C06C8C}</ID><SourceHost>VKYV-HV01</SourceHost><TargetAddress>mp:[http]MP_LocationManager</TargetAddress><ReplyTo>direct:VKYV-HV01:LS_ReplyLocations</ReplyTo><Priority>3</Priority><Timeout>600</Timeout><ReqVersion>5931</ReqVersion><TargetHost>VKYV-HV01.VKYV.LAN</TargetHost><TargetEndpoint>MP_LocationManager</TargetEndpoint><ReplyMode>Sync</ReplyMode><Protocol>http</Protocol><SentTime>2014-01-12T09:31:49Z</SentTime><Body
    Type="ByteRange" Offset="0" Length="1096"/><Hooks><Hook3 Name="zlib-compress"/></Hooks><Payload Type="inline"/></Msg>']LOG]!><time="11:31:49.256-120" date="01-12-2014"
    component="ccmsetup" context="" type="0" thread="6436" file="siteinfo.cpp:177">
    <![LOG[CCM_POST 'HTTP://VKYV-HV01.VKYV.LAN/ccm_system/request']LOG]!><time="11:31:49.257-120" date="01-12-2014" component="ccmsetup" context="" type="1" thread="6436" file="httphelper.cpp:807">
    <![LOG[Failed to receive ccm message response. Status code = 403]LOG]!><time="11:31:49.434-120" date="01-12-2014" component="ccmsetup" context="" type="2" thread="6436" file="httphelper.cpp:1694">
    <![LOG[GetDPLocations failed with error 0x80004005]LOG]!><time="11:31:49.435-120" date="01-12-2014" component="ccmsetup" context="" type="3" thread="6436" file="siteinfo.cpp:532">
    <![LOG[Failed to get DP locations as the expected version from MP 'VKYV-HV01.VKYV.LAN'. Error 0x80004005]LOG]!><time="11:31:49.435-120" date="01-12-2014" component="ccmsetup" context="" type="2" thread="6436"
    file="ccmsetup.cpp:11261">
    <![LOG[Sending Fallback Status Point message to 'VKYV-HV01', STATEID='101'.]LOG]!><time="11:31:49.435-120" date="01-12-2014" component="ccmsetup" context="" type="1" thread="6436" file="ccmsetup.cpp:9756">
    <![LOG[Failed to get client version for sending messages to FSP. Error 0x8004100e]LOG]!><time="11:31:49.437-120" date="01-12-2014" component="ccmsetup" context="" type="2" thread="6436" file="ccmsetup.cpp:9838">
    <![LOG[Params to send FSP message '5.0.7958.1000 Deployment ']LOG]!><time="11:31:49.437-120" date="01-12-2014" component="ccmsetup" context="" type="0" thread="6436" file="ccmsetup.cpp:9887">
    <![LOG[State message with TopicType 800 and TopicId {1D445639-95B1-4EC5-A65F-FC7A721F8061} has been sent to the FSP]LOG]!><time="11:31:49.455-120" date="01-12-2014" component="FSPStateMessage" context="" type="1"
    thread="6436" file="fsputillib.cpp:752">
    <![LOG[Next retry in 10 minute(s)...]LOG]!><time="11:31:49.455-120" date="01-12-2014" component="ccmsetup" context="" type="0" thread="6436" file="ccmsetup.cpp:8835">

    Does you MP/DP use HTTP or HTTPS? I recommend to start with HTTP and when you have successfully installed a few clients, you can switch to HTTPS if desired. HTTPS based communication requires more steps e.g. client certificates.
    Have you extended AD schema and do you see objects in \System\System Management container in AD?
    Also, you might have DNS name resolution problem or the firewall is blocking the traffic from the client to MP.
    The client is having troubles to successfully talk with MP:
    Failed to get DP locations as the expected version from MP 'VKYV-HV01.VKYV.LAN'. Error 0x80004005
    Panu

  • SCCM 2012 R2 Client install error - CcmGetOSVersion failed with 0x80070008

    Getting this error message, CcmGetOSVersion failed with 0x80070008 and CcmSetup failed with error code 0x80070008.  Only thing on this error I can find is Windows Update and removing languages.  Only language installed is English.  I've pasted
    the last part of the ccmsetup.log file.  Not sure if more would be needed.  I've done a complete uninstall\reinstall attempt.  Recompiled MOF files and reregistered DLL files for WMI.  Did a repository rebuild of WMI.  Nothing has
    helped.  Not sure what it's checking besides WMI to get the OSversion or what that error code means.  This is the only server having this error.  Our other 700 servers have installed the client with no issues.   OS is Server 2008 SP2, NOT
    R2.  Any help is greatly appreciated.  Thanks.
    Detected 6906 MB free disk space on system drive. ccmsetup 6/24/2014 4:01:23 PM 3984 (0x0F90)
    Checking Write Filter Status. ccmsetup 6/24/2014 4:01:23 PM 3984 (0x0F90)
    This is not a supported write filter device. We are not in a write filter maintenance mode. ccmsetup 6/24/2014 4:01:23 PM 3984 (0x0F90)
    SiteCode: MG1 ccmsetup 6/24/2014 4:01:23 PM 3984 (0x0F90)
    SiteVersion: 5.00.7958.1000 ccmsetup 6/24/2014 4:01:23 PM 3984 (0x0F90)
    Searching for a valid online MP... ccmsetup 6/24/2014 4:01:23 PM 3984 (0x0F90)
    Checking the URL 'http://ADCSCCM.xxxx.dom:80/CCM_Client/ccmsetup.cab' ccmsetup 6/24/2014 4:01:23 PM 3984 (0x0F90)
    PROPFIND 'http://ADCSCCM.xxxx.dom:80/CCM_Client' ccmsetup 6/24/2014 4:01:23 PM 3984 (0x0F90)
    Found a valid online MP 'http://ADCSCCM.xxxx.dom'. ccmsetup 6/24/2014 4:01:24 PM 3984 (0x0F90)
    Searching for DP locations from MP(s)... ccmsetup 6/24/2014 4:01:24 PM 3984 (0x0F90)
    Current AD forest name is mw.dom, domain name is xxxx.dom LocationServices 6/24/2014 4:01:24 PM 3984 (0x0F90)
    Domain joined client is in Intranet LocationServices 6/24/2014 4:01:24 PM 3984 (0x0F90)
    Current AD site of machine is London LocationServices 6/24/2014 4:01:24 PM 3984 (0x0F90)
    DHCP entry points already initialized. LocationServices 6/24/2014 4:01:24 PM 3984 (0x0F90)
    Begin checking Alternate Network Configuration LocationServices 6/24/2014 4:01:24 PM 3984 (0x0F90)
    Finished checking Alternate Network Configuration LocationServices 6/24/2014 4:01:24 PM 3984 (0x0F90)
    Sending message body '<ContentLocationRequest SchemaVersion="1.00">
    <AssignedSite SiteCode="MG1"/>
    <ClientPackage/>
    <ClientLocationInfo LocationType="SMSPACKAGE" DistributeOnDemand="0" UseProtected="0" AllowCaching="0" BranchDPFlags="0" AllowHTTP="1" AllowSMB="0" AllowMulticast="0" UseInternetDP="0">
    <ADSite Name="London"/>
    <Forest Name="xxxx"/>
    <Domain Name="xxxx.dom"/>
    <IPAddresses>
    <IPAddress SubnetAddress="172.18.112.0" Address="172.18.112.26"/>
    <IPAddress SubnetAddress="172.18.112.0" Address="172.18.112.27"/>
    </IPAddresses>
    </ClientLocationInfo>
    </ContentLocationRequest>
    ' ccmsetup 6/24/2014 4:01:24 PM 3984 (0x0F90)
    Sending message header '<Msg SchemaVersion="1.1"><ID>{C6E08DE7-E3F8-4AEF-971A-FE72D68A21BA}</ID><SourceHost>LONEXCHMB3-V</SourceHost><TargetAddress>mp:[http]MP_LocationManager</TargetAddress><ReplyTo>direct:LONEXCHMB3-V:LS_ReplyLocations</ReplyTo><Priority>3</Priority><Timeout>600</Timeout><ReqVersion>5931</ReqVersion><TargetHost>http://ADCSCCM.xxxx.dom</TargetHost><TargetEndpoint>MP_LocationManager</TargetEndpoint><ReplyMode>Sync</ReplyMode><Protocol>http</Protocol><SentTime>2014-06-24T15:01:24Z</SentTime><Body
    Type="ByteRange" Offset="0" Length="1212"/><Hooks><Hook3 Name="zlib-compress"/></Hooks><Payload Type="inline"/></Msg>' ccmsetup 6/24/2014 4:01:24 PM 3984 (0x0F90)
    CCM_POST 'http://ADCSCCM.xxxx.dom/ccm_system/request' ccmsetup 6/24/2014 4:01:24 PM 3984 (0x0F90)
    Content boundary is '--aAbBcCdDv1234567890VxXyYzZ' ccmsetup 6/24/2014 4:01:24 PM 3984 (0x0F90)
    Received header '<Msg SchemaVersion="1.1">
    <ID>{C8B36ACA-631C-4FAB-AB16-C84E10A0E558}</ID>
    <SourceID>GUID:2C64ED93-54ED-4F2D-A3BE-D3665D1F3A1A</SourceID>
    <SourceHost>ADCSCCM</SourceHost>
    <TargetAddress>direct:LONEXCHMB3-V:LS_ReplyLocations</TargetAddress>
    <ReplyTo>MP_LocationManager</ReplyTo>
    <CorrelationID>{00000000-0000-0000-0000-000000000000}</CorrelationID>
    <Priority>3</Priority>
    <Timeout>600</Timeout>
    <ReplyCapabilities><AllowRegistrationReset>direct:ADCSCCM:ClientRegistration</AllowRegistrationReset></ReplyCapabilities><TargetHost>LONEXCHMB3-V</TargetHost><TargetEndpoint>LS_ReplyLocations</TargetEndpoint><ReplyMode>Sync</ReplyMode><Protocol>http</Protocol><SentTime>2014-06-24T15:01:24Z</SentTime><Body
    Type="ByteRange" Offset="0" Length="3458"/><Hooks><Hook3 Name="zlib-compress"/><Hook Name="authenticate"><Property Name="Signature">3082018F06092A864886F70D010702A08201803082017C020101310B300906052B0E03021A0500300B06092A864886F70D0107013182015B30820157020101303430203110300E060355040313074144435343434D310C300A06035504031303534D53021074EBF19EB9460F934134D87A82C78424300906052B0E03021A0500300D06092A864886F70D01010105000482010080CC8ADDAD2A1FA5D7986202D7AD27B0C1125ACEE1E4E486D557A7482A309AF74CBC7CB4FC8001C9050E1D77443673290ADE0EFC1B140C805C60F48497DBD8C56B554962BC348C4FC4D315223BFF7200F23CC095D8854129D0852F02472A2F4570D6CF4C8902D39B87EA3BEF77A521881D3A07CC091FBFDB7D7204773BB18F333B9B106AC20E479E714609EC461D074F09B492339928FEE712496B2E8E0660342E7A7ADD575B7320C402E0009816622258D8B49466613734E8780297B32403D18DF6560F2ECB2FF7E820403EA7AC97BCFA2A53D432B37592FD64DA53FB5F03DB715E5326A55172DCF328DD80D110925B30AD2612991B923D92CD3076B26B824E</Property><Property
    Name="AuthSenderMachine">ADCSCCM;ADCSCCM.xxxx.dom;</Property><Property Name="MPSiteCode">MG1</Property></Hook></Hooks><Payload Type="inline"/></Msg>' ccmsetup 6/24/2014 4:01:24 PM 3984
    (0x0F90)
    Received reply body '<ContentLocationReply SchemaVersion="1.00"><ContentInfo PackageFlags="16777216"><ContentHashValues/></ContentInfo><Sites><Site><MPSite SiteCode="MG1" MasterSiteCode="MG1"
    SiteLocality="FALLBACK" IISPreferedPort="80" IISSSLPreferedPort="443"/><LocationRecords><LocationRecord><URL Name="AtlantaDataCenter"/><IPSubnets><IPSubnet Address="172.18.200.0"/><IPSubnet
    Address=""/></IPSubnets><Metric Value=""/><Version>7958</Version><Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities><ServerRemoteName>ADCSCCM.xxxx.dom</ServerRemoteName><DPType>SERVER</DPType><Windows
    Trust="1"/><Locality>FALLBACK</Locality></LocationRecord><LocationRecord><URL Name="RichmondAtlantaLink"/><IPSubnets><IPSubnet Address="172.16.0.0"/><IPSubnet Address=""/></IPSubnets><Metric
    Value=""/><Version>7958</Version><Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities><ServerRemoteName>RDCSCCMDP.xxxx.dom</ServerRemoteName><DPType>SERVER</DPType><Windows
    Trust="1"/><Locality>FALLBACK</Locality></LocationRecord></LocationRecords></Site></Sites><ClientPackage FullPackageID="MG100003" FullPackageVersion="6" FullPackageHash="03CFD97C8FB5F7E7E9F177FD6D30D6F25ED106E517E69B715695A0E81DB1D9AF"
    MinimumClientVersion="5.00.7958.1000" RandomizeMaxDays="1" ProgramEnabled="false" LastModifiedTime="30375547;806889088" SiteVersionMatch="true" SiteVersion="5.00.7958.1000" EnablePeerCache="true"/><RelatedContentIDs/></ContentLocationReply>'
    ccmsetup 6/24/2014 4:01:24 PM 3984 (0x0F90)
    Found remote location 'http://ADCSCCM.xxxx.dom/SMS_DP_SMSPKG$/MG100003' ccmsetup 6/24/2014 4:01:24 PM 3984 (0x0F90)
    Found remote location 'http://RDCSCCMDP.xxxx.dom/SMS_DP_SMSPKG$/MG100003' ccmsetup 6/24/2014 4:01:24 PM 3984 (0x0F90)
    Could not find local DP locations from all MPs. Will fallback to MP download. ccmsetup 6/24/2014 4:01:24 PM 3984 (0x0F90)
    GET 'http://ADCSCCM.xxxx.dom/CCM_Client/ccmsetup.cab' ccmsetup 6/24/2014 4:01:24 PM 3984 (0x0F90)
    C:\Windows\ccmsetup\ccmsetup.cab is Microsoft trusted. ccmsetup 6/24/2014 4:01:25 PM 3984 (0x0F90)
    Successfully extracted manifest file C:\Windows\ccmsetup\ccmsetup.xml from file C:\Windows\ccmsetup\ccmsetup.cab. ccmsetup 6/24/2014 4:01:25 PM 3984 (0x0F90)
    Loading manifest file: C:\Windows\ccmsetup\ccmsetup.xml ccmsetup 6/24/2014 4:01:25 PM 3984 (0x0F90)
    Successfully loaded ccmsetup manifest file. ccmsetup 6/24/2014 4:01:25 PM 3984 (0x0F90)
    Checking if manifest version '5.00.7958.1000' is newer than the ccmsetup version '5.0.7958.1000' ccmsetup 6/24/2014 4:01:25 PM 3984 (0x0F90)
    Running from temp downloaded folder or manifest is not newer than ccmsetup. ccmsetup 6/24/2014 4:01:25 PM 3984 (0x0F90)
    CcmGetOSVersion failed with 0x80070008 ccmsetup 6/24/2014 4:01:25 PM 3984 (0x0F90)
    A Fallback Status Point has not been specified. Message with STATEID='301' will not be sent. ccmsetup 6/24/2014 4:01:25 PM 3984 (0x0F90)
    Deleted file C:\Windows\ccmsetup\ccmsetup.xml ccmsetup 6/24/2014 4:01:25 PM 3984 (0x0F90)
    CcmSetup failed with error code 0x80070008 ccmsetup 6/24/2014 4:01:25 PM 3984 (0x0F90)

    Everything seems fine.  7GB of free space, 500 MB of free RAM, 5GB of page file free.  I'll reboot the server during our next maintenance window and see if that helps.  Was hoping I wouldn't have to reboot but will probably help.  Thanks
    again.

  • SCCM 2012 R2 install client error

    I have installed SCCM 2012 R2 on server 2008 R2. I tried to deploy the SCCM client to a pc. Below is the error i get from the log file of the PC
    <![LOG[==========[ ccmsetup started in process 2892 ]==========]LOG]!><time="12:21:29.817-120" date="04-16-2014" component="ccmsetup" context="" type="1" thread="1456" file="ccmsetup.cpp:9369">
    <![LOG[Running on platform X64]LOG]!><time="12:21:29.817-120" date="04-16-2014" component="ccmsetup" context="" type="1" thread="1456" file="util.cpp:1809">
    <![LOG[Launch from folder C:\Windows\ccmsetup\]LOG]!><time="12:21:29.817-120" date="04-16-2014" component="ccmsetup" context="" type="1" thread="1456" file="ccmsetup.cpp:717">
    <![LOG[CcmSetup version: 5.0.7884.1000]LOG]!><time="12:21:29.817-120" date="04-16-2014" component="ccmsetup" context="" type="1" thread="1456" file="ccmsetup.cpp:723">
    <![LOG[In ServiceMain]LOG]!><time="12:21:29.848-120" date="04-16-2014" component="ccmsetup" context="" type="0" thread="1476" file="ccmsetup.cpp:3355">
    <![LOG[Running on OS (6.1.7600). Service Pack (0.0). SuiteMask = 256. Product Type = 1]LOG]!><time="12:21:29.848-120" date="04-16-2014" component="ccmsetup" context="" type="1" thread="1476"
    file="ccmsetup.cpp:2688">
    <![LOG[Ccmsetup command line: "C:\Windows\ccmsetup\ccmsetup.exe" /runservice /config:MobileClient.tcf]LOG]!><time="12:21:29.848-120" date="04-16-2014" component="ccmsetup" context="" type="1"
    thread="1476" file="ccmsetup.cpp:3580">
    <![LOG[Command line parameters for ccmsetup have been specified.  No registry lookup for command line parameters is required.]LOG]!><time="12:21:29.848-120" date="04-16-2014" component="ccmsetup" context=""
    type="1" thread="1476" file="ccmsetup.cpp:3752">
    <![LOG[Command line: "C:\Windows\ccmsetup\ccmsetup.exe" /runservice /config:MobileClient.tcf]LOG]!><time="12:21:29.848-120" date="04-16-2014" component="ccmsetup" context="" type="1" thread="1476"
    file="ccmsetup.cpp:3753">
    <![LOG[SslState value: 224]LOG]!><time="12:21:29.848-120" date="04-16-2014" component="ccmsetup" context="" type="0" thread="1476" file="ccmsetup.cpp:4376">
    <![LOG[CCMHTTPPORT:    80]LOG]!><time="12:21:29.848-120" date="04-16-2014" component="ccmsetup" context="" type="1" thread="1476" file="ccmsetup.cpp:8549">
    <![LOG[CCMHTTPSPORT:    443]LOG]!><time="12:21:29.848-120" date="04-16-2014" component="ccmsetup" context="" type="1" thread="1476" file="ccmsetup.cpp:8564">
    <![LOG[CCMHTTPSSTATE:    224]LOG]!><time="12:21:29.848-120" date="04-16-2014" component="ccmsetup" context="" type="1" thread="1476" file="ccmsetup.cpp:8582">
    <![LOG[CCMHTTPSCERTNAME:    ]LOG]!><time="12:21:29.848-120" date="04-16-2014" component="ccmsetup" context="" type="1" thread="1476" file="ccmsetup.cpp:8600">
    <![LOG[FSP:    ]LOG]!><time="12:21:29.848-120" date="04-16-2014" component="ccmsetup" context="" type="1" thread="1476" file="ccmsetup.cpp:8652">
    <![LOG[CCMFIRSTCERT:    1]LOG]!><time="12:21:29.848-120" date="04-16-2014" component="ccmsetup" context="" type="1" thread="1476" file="ccmsetup.cpp:8710">
    <![LOG[Config file:      C:\Windows\ccmsetup\MobileClientUnicode.tcf]LOG]!><time="12:21:29.848-120" date="04-16-2014" component="ccmsetup" context="" type="1" thread="1476"
    file="ccmsetup.cpp:4490">
    <![LOG[Retry time:       10 minute(s)]LOG]!><time="12:21:29.848-120" date="04-16-2014" component="ccmsetup" context="" type="1" thread="1476" file="ccmsetup.cpp:4491">
    <![LOG[MSI log file:     C:\Windows\ccmsetup\Logs\client.msi.log]LOG]!><time="12:21:29.848-120" date="04-16-2014" component="ccmsetup" context="" type="1" thread="1476"
    file="ccmsetup.cpp:4492">
    <![LOG[MSI properties:    INSTALL="ALL" SMSSITECODE="CHO" CCMHTTPPORT="80" CCMHTTPSPORT="443" CCMHTTPSSTATE="224" CCMFIRSTCERT="1"]LOG]!><time="12:21:29.848-120" date="04-16-2014"
    component="ccmsetup" context="" type="1" thread="1476" file="ccmsetup.cpp:4493">
    <![LOG[Source List:]LOG]!><time="12:21:29.848-120" date="04-16-2014" component="ccmsetup" context="" type="1" thread="1476" file="ccmsetup.cpp:4501">
    <![LOG[                  \\TSCCM.testnet.ac.za\SMSClient]LOG]!><time="12:21:29.848-120" date="04-16-2014" component="ccmsetup" context=""
    type="1" thread="1476" file="ccmsetup.cpp:4508">
    <![LOG[                  \\TSCCM.TESTNET.AC.ZA\SMSClient]LOG]!><time="12:21:29.848-120" date="04-16-2014" component="ccmsetup" context=""
    type="1" thread="1476" file="ccmsetup.cpp:4517">
    <![LOG[MPs:]LOG]!><time="12:21:29.848-120" date="04-16-2014" component="ccmsetup" context="" type="1" thread="1476" file="ccmsetup.cpp:4520">
    <![LOG[                  TSCCM.testnet.ac.za]LOG]!><time="12:21:29.848-120" date="04-16-2014" component="ccmsetup" context=""
    type="1" thread="1476" file="ccmsetup.cpp:4535">
    <![LOG[No version of the client is currently detected.]LOG]!><time="12:21:29.848-120" date="04-16-2014" component="ccmsetup" context="" type="1" thread="1476" file="ccmsetup.cpp:2749">
    <![LOG[Updated security on object C:\Windows\ccmsetup\.]LOG]!><time="12:21:29.879-120" date="04-16-2014" component="ccmsetup" context="" type="0" thread="1476" file="ccmsetup.cpp:9213">
    <![LOG[A Fallback Status Point has not been specified.  Message with STATEID='100' will not be sent.]LOG]!><time="12:21:29.879-120" date="04-16-2014" component="ccmsetup" context="" type="1" thread="1476"
    file="ccmsetup.cpp:9697">
    <![LOG[Running as user "SYSTEM"]LOG]!><time="12:21:29.895-120" date="04-16-2014" component="ccmsetup" context="" type="1" thread="1476" file="ccmsetup.cpp:1975">
    <![LOG[Detected 118408 MB free disk space on system drive.]LOG]!><time="12:21:29.895-120" date="04-16-2014" component="ccmsetup" context="" type="1" thread="1476" file="util.cpp:600">
    <![LOG[Checking Write Filter Status.]LOG]!><time="12:21:29.895-120" date="04-16-2014" component="ccmsetup" context="" type="1" thread="1476" file="ccmsetup.cpp:2002">
    <![LOG[This is not a supported write filter device. We are not in a write filter maintenance mode.]LOG]!><time="12:21:29.895-120" date="04-16-2014" component="ccmsetup" context="" type="1" thread="1476"
    file="ccmsetup.cpp:2029">
    <![LOG[Performing AD query: '(&(ObjectCategory=mSSMSManagementPoint)(mSSMSDefaultMP=TRUE)(mSSMSSiteCode=CHO))']LOG]!><time="12:21:30.020-120" date="04-16-2014" component="ccmsetup" context="" type="0"
    thread="1476" file="lsad.cpp:656">
    <![LOG[OperationalXml '<ClientOperationalSettings><Version>5.00.7884.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>308202F0308201D8A003020102021050CBD84A06D38EA7447F44BD3128A932300D06092A864886F70D01010B05003016311430120603550403130B53697465205365727665723020170D3134303431313133313435375A180F32313134303331393133313435375A3016311430120603550403130B536974652053657276657230820122300D06092A864886F70D01010105000382010F003082010A02820101008D0F7A536C5FFE5F3C2A71E8701D51A07417C2BFC9C42FBB1303FFEE79F0BF5CEB28D516C7B93CC0BBB80001F500A2C9E534B66ADD1275E26202496FA76199170C6D0D7C5CA02046CD18949F2108BB581EBEF191353F19188559E080B905A21AD7F786C59633220B047561290EC38B23A1E22FDA3CDC1A59B0862C839138D832F1499120DB754DB6E612CA37ADB905EB70C83622B4CF2EDE4BBB75FC9A8BCAE062C74AF82406C1321119243482C596EFBF8D2F5745B5606965D01988E0FBC07986C039891342C5A0F2806704F41F41BD638C358026EE2B04C7C3B46464C2824285F3513170807885FD085F49DE30E9177E889EC817B425E70D5892C2BC4689E10203010001A3383036301E0603551D11041730158213545343434D2E746573746E65742E61632E7A6130140603551D25040D300B06092B060104018237650B300D06092A864886F70D01010B0500038201010036D9F1EFC1C9D2D8D394A48ABD516494F54674515FE30533E3165BF1895AE1C35C7291E484D3F714BF23E4CFFB9DE9DCEC4F5817FE5835F91D690CDF15FBF445AC74918CD7510DFF826E5021F40D60E2AB4C2062D011D1D9FEFF44C65A220F5556192DBA3B376F70D39A2FD1ED13D04568263CCA514FEE0043D9998B1C6D0052E949216E045DFBF59138ACA595C7F5B66D741CB3527C0F6072949C95B32D891771C4EEB13EF993BD331938AF3542CB27DAF6989ECDF3CD80B494E3A3EEE880DE6FD62B84AAE7B6EBB961F236FB1E3071E9622E4365BD195680913D371212692C6D51B3C5D4750B6D74A4F2A02BFFA5D2254EA6D91A0CFA6B5459044362A698CF</SiteSigningCert></SecurityConfiguration><RootSiteCode>CHO</RootSiteCode><CCM>
    <CommandLine>SMSSITECODE=CHO</CommandLine> </CCM><FSP> <FSPServer></FSPServer> </FSP><Capabilities SchemaVersion ="1.0"><Property Name="SSLState" Value="0" /></Capabilities><Domain
    Value="testnet.ac.za" /><Forest Value="testnet.ac.za" /></ClientOperationalSettings>']LOG]!><time="12:21:30.067-120" date="04-16-2014" component="ccmsetup" context="" type="0"
    thread="1476" file="lsadcache.cpp:236">
    <![LOG[Unable to open Registry key Software\Microsoft\CCM. Return Code [80070002]. Client HTTPS state is Unknown.]LOG]!><time="12:21:30.067-120" date="04-16-2014" component="ccmsetup" context="" type="1"
    thread="1476" file="ccmutillib.cpp:373">
    <![LOG[The MP name retrieved is 'TSCCM.testnet.ac.za' with version '7884' and capabilities '<Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities>']LOG]!><time="12:21:30.067-120"
    date="04-16-2014" component="ccmsetup" context="" type="1" thread="1476" file="lsadcache.cpp:334">
    <![LOG[MP 'TSCCM.testnet.ac.za' is compatible]LOG]!><time="12:21:30.067-120" date="04-16-2014" component="ccmsetup" context="" type="1" thread="1476" file="lsadcache.cpp:339">
    <![LOG[Retrieved 1 MP records from AD for site 'CHO']LOG]!><time="12:21:30.067-120" date="04-16-2014" component="ccmsetup" context="" type="0" thread="1476" file="lsadcache.cpp:287">
    <![LOG[Retrived site version '5.00.7884.1000' from AD for site 'CHO']LOG]!><time="12:21:30.067-120" date="04-16-2014" component="ccmsetup" context="" type="1" thread="1476" file="siteinfo.cpp:575">
    <![LOG[SiteCode:         CHO]LOG]!><time="12:21:30.067-120" date="04-16-2014" component="ccmsetup" context="" type="1" thread="1476" file="ccmsetup.cpp:2054">
    <![LOG[SiteVersion:      5.00.7884.1000]LOG]!><time="12:21:30.067-120" date="04-16-2014" component="ccmsetup" context="" type="1" thread="1476" file="ccmsetup.cpp:2055">
    <![LOG[Ccmsetup is being restarted due to an administrative action. Installation files will be reset and downloaded again.]LOG]!><time="12:21:30.067-120" date="04-16-2014" component="ccmsetup" context="" type="1"
    thread="1476" file="ccmsetup.cpp:2089">
    <![LOG[Only one MP TSCCM.testnet.ac.za is specified. Use it.]LOG]!><time="12:21:30.113-120" date="04-16-2014" component="ccmsetup" context="" type="1" thread="1476" file="ccmsetup.cpp:10014">
    <![LOG[Searching for DP locations from MP(s)...]LOG]!><time="12:21:30.113-120" date="04-16-2014" component="ccmsetup" context="" type="1" thread="1476" file="ccmsetup.cpp:10952">
    <![LOG[Current AD site of machine is Default-First-Site-Name]LOG]!><time="12:21:30.113-120" date="04-16-2014" component="LocationServices" context="" type="1" thread="1476" file="lsad.cpp:770">
    <![LOG[Local Machine is joined to an AD domain]LOG]!><time="12:21:30.129-120" date="04-16-2014" component="LocationServices" context="" type="0" thread="1476" file="lsad.cpp:714">
    <![LOG[Current AD forest name is testnet.ac.za, domain name is testnet.ac.za]LOG]!><time="12:21:30.129-120" date="04-16-2014" component="LocationServices" context="" type="1" thread="1476"
    file="lsad.cpp:842">
    <![LOG[DhcpGetOriginalSubnetMask entry point is supported.]LOG]!><time="12:21:30.129-120" date="04-16-2014" component="LocationServices" context="" type="0" thread="1476" file="ccmiputil.cpp:117">
    <![LOG[Begin checking Alternate Network Configuration]LOG]!><time="12:21:30.129-120" date="04-16-2014" component="LocationServices" context="" type="0" thread="1476" file="ccmiputil.cpp:1095">
    <![LOG[Finished checking Alternate Network Configuration]LOG]!><time="12:21:30.129-120" date="04-16-2014" component="LocationServices" context="" type="0" thread="1476" file="ccmiputil.cpp:1172">
    <![LOG[Adapter {7B324A4B-C8EF-4EF2-9862-97959D800C82} is DHCP enabled. Checking quarantine status.]LOG]!><time="12:21:30.129-120" date="04-16-2014" component="LocationServices" context="" type="0" thread="1476"
    file="ccmiputil.cpp:436">
    <![LOG[Sending message body '<ContentLocationRequest SchemaVersion="1.00">
      <AssignedSite SiteCode="CHO"/>
      <ClientPackage/>
      <ClientLocationInfo LocationType="SMSPACKAGE" DistributeOnDemand="0" UseProtected="0" AllowCaching="0" BranchDPFlags="0" AllowHTTP="1" AllowSMB="0" AllowMulticast="0"
    UseInternetDP="0">
        <ADSite Name="Default-First-Site-Name"/>
        <Forest Name="testnet.ac.za"/>
        <Domain Name="testnet.ac.za"/>
        <IPAddresses>
    <IPAddress SubnetAddress="192.168.4.0" Address="192.168.4.196"/>
        </IPAddresses>
      </ClientLocationInfo>
    </ContentLocationRequest>
    ']LOG]!><time="12:21:30.129-120" date="04-16-2014" component="ccmsetup" context="" type="0" thread="1476" file="siteinfo.cpp:96">
    <![LOG[Sending message header '<Msg SchemaVersion="1.1"><ID>{989E29EE-9AC7-4153-AE74-BD236430EEFD}</ID><SourceHost>SURVEILANCE</SourceHost><TargetAddress>mp:[http]MP_LocationManager</TargetAddress><ReplyTo>direct:SURVEILANCE:LS_ReplyLocations</ReplyTo><Priority>3</Priority><Timeout>600</Timeout><ReqVersion>5931</ReqVersion><TargetHost>TSCCM.testnet.ac.za</TargetHost><TargetEndpoint>MP_LocationManager</TargetEndpoint><ReplyMode>Sync</ReplyMode><Protocol>http</Protocol><SentTime>2014-04-16T10:21:30Z</SentTime><Body
    Type="ByteRange" Offset="0" Length="1132"/><Hooks><Hook3 Name="zlib-compress"/></Hooks><Payload Type="inline"/></Msg>']LOG]!><time="12:21:30.129-120" date="04-16-2014"
    component="ccmsetup" context="" type="0" thread="1476" file="siteinfo.cpp:177">
    <![LOG[CCM_POST 'HTTP://TSCCM.testnet.ac.za/ccm_system/request']LOG]!><time="12:21:30.129-120" date="04-16-2014" component="ccmsetup" context="" type="1" thread="1476" file="httphelper.cpp:807">
    <![LOG[Failed to receive ccm message response. Status code = 404]LOG]!><time="12:21:30.129-120" date="04-16-2014" component="ccmsetup" context="" type="2" thread="1476" file="httphelper.cpp:1694">
    <![LOG[GetDPLocations failed with error 0x80004005]LOG]!><time="12:21:30.129-120" date="04-16-2014" component="ccmsetup" context="" type="3" thread="1476" file="siteinfo.cpp:532">
    <![LOG[Failed to get DP locations as the expected version from MP 'TSCCM.testnet.ac.za'. Error 0x80004005]LOG]!><time="12:21:30.129-120" date="04-16-2014" component="ccmsetup" context="" type="2" thread="1476"
    file="ccmsetup.cpp:11195">
    <![LOG[A Fallback Status Point has not been specified.  Message with STATEID='101' will not be sent.]LOG]!><time="12:21:30.129-120" date="04-16-2014" component="ccmsetup" context="" type="1" thread="1476"
    file="ccmsetup.cpp:9697">
    <![LOG[Next retry in 10 minute(s)...]LOG]!><time="12:21:30.129-120" date="04-16-2014" component="ccmsetup" context="" type="0" thread="1476" file="ccmsetup.cpp:8767">
    <![LOG[Current AD forest name is testnet.ac.za, domain name is testnet.ac.za]LOG]!><time="12:31:30.258-120" date="04-16-2014" component="LocationServices" context="" type="1" thread="1476"
    file="lsad.cpp:842">
    <![LOG[Domain joined client is in Intranet]LOG]!><time="12:31:30.258-120" date="04-16-2014" component="LocationServices" context="" type="1" thread="1476" file="lsad.cpp:1018">
    <![LOG[Current AD site of machine is Default-First-Site-Name]LOG]!><time="12:31:30.258-120" date="04-16-2014" component="LocationServices" context="" type="1" thread="1476" file="lsad.cpp:770">
    <![LOG[DHCP entry points already initialized.]LOG]!><time="12:31:30.258-120" date="04-16-2014" component="LocationServices" context="" type="0" thread="1476" file="ccmiputil.cpp:75">
    <![LOG[Begin checking Alternate Network Configuration]LOG]!><time="12:31:30.258-120" date="04-16-2014" component="LocationServices" context="" type="0" thread="1476" file="ccmiputil.cpp:1095">
    <![LOG[Finished checking Alternate Network Configuration]LOG]!><time="12:31:30.258-120" date="04-16-2014" component="LocationServices" context="" type="0" thread="1476" file="ccmiputil.cpp:1172">
    <![LOG[Adapter {7B324A4B-C8EF-4EF2-9862-97959D800C82} is DHCP enabled. Checking quarantine status.]LOG]!><time="12:31:30.258-120" date="04-16-2014" component="LocationServices" context="" type="0" thread="1476"
    file="ccmiputil.cpp:436">
    <![LOG[Sending message body '<ContentLocationRequest SchemaVersion="1.00">
      <AssignedSite SiteCode="CHO"/>
      <ClientPackage/>
      <ClientLocationInfo LocationType="SMSPACKAGE" DistributeOnDemand="0" UseProtected="0" AllowCaching="0" BranchDPFlags="0" AllowHTTP="1" AllowSMB="0" AllowMulticast="0"
    UseInternetDP="0">
        <ADSite Name="Default-First-Site-Name"/>
        <Forest Name="testnet.ac.za"/>
        <Domain Name="testnet.ac.za"/>
        <IPAddresses>
    <IPAddress SubnetAddress="192.168.4.0" Address="192.168.4.196"/>
        </IPAddresses>
      </ClientLocationInfo>
    </ContentLocationRequest>
    ']LOG]!><time="12:31:30.258-120" date="04-16-2014" component="ccmsetup" context="" type="0" thread="1476" file="siteinfo.cpp:96">
    <![LOG[Sending message header '<Msg SchemaVersion="1.1"><ID>{E94533DE-45F4-43BC-94EA-F28627212DE4}</ID><SourceHost>SURVEILANCE</SourceHost><TargetAddress>mp:[http]MP_LocationManager</TargetAddress><ReplyTo>direct:SURVEILANCE:LS_ReplyLocations</ReplyTo><Priority>3</Priority><Timeout>600</Timeout><ReqVersion>5931</ReqVersion><TargetHost>TSCCM.testnet.ac.za</TargetHost><TargetEndpoint>MP_LocationManager</TargetEndpoint><ReplyMode>Sync</ReplyMode><Protocol>http</Protocol><SentTime>2014-04-16T10:31:30Z</SentTime><Body
    Type="ByteRange" Offset="0" Length="1132"/><Hooks><Hook3 Name="zlib-compress"/></Hooks><Payload Type="inline"/></Msg>']LOG]!><time="12:31:30.258-120" date="04-16-2014"
    component="ccmsetup" context="" type="0" thread="1476" file="siteinfo.cpp:177">
    <![LOG[CCM_POST 'HTTP://TSCCM.testnet.ac.za/ccm_system/request']LOG]!><time="12:31:30.258-120" date="04-16-2014" component="ccmsetup" context="" type="1" thread="1476" file="httphelper.cpp:807">
    <![LOG[Failed to receive ccm message response. Status code = 404]LOG]!><time="12:31:30.273-120" date="04-16-2014" component="ccmsetup" context="" type="2" thread="1476" file="httphelper.cpp:1694">
    <![LOG[GetDPLocations failed with error 0x80004005]LOG]!><time="12:31:30.273-120" date="04-16-2014" component="ccmsetup" context="" type="3" thread="1476" file="siteinfo.cpp:532">
    <![LOG[Failed to get DP locations as the expected version from MP 'TSCCM.testnet.ac.za'. Error 0x80004005]LOG]!><time="12:31:30.273-120" date="04-16-2014" component="ccmsetup" context="" type="2" thread="1476"
    file="ccmsetup.cpp:11195">
    <![LOG[Failed to find DP locations from MP 'TSCCM.testnet.ac.za' with error 0x80004005, status code 404. Check next MP.]LOG]!><time="12:31:30.273-120" date="04-16-2014" component="ccmsetup" context="" type="2"
    thread="1476" file="ccmsetup.cpp:11051">
    <![LOG[Only one MP TSCCM.testnet.ac.za is specified. Use it.]LOG]!><time="12:31:30.273-120" date="04-16-2014" component="ccmsetup" context="" type="1" thread="1476" file="ccmsetup.cpp:10014">
    <![LOG[Have already tried all MPs. Couldn't find DP locations.]LOG]!><time="12:31:30.273-120" date="04-16-2014" component="ccmsetup" context="" type="3" thread="1476" file="ccmsetup.cpp:11080">
    <![LOG[GET 'HTTP://TSCCM.testnet.ac.za/CCM_Client/ccmsetup.cab']LOG]!><time="12:31:30.273-120" date="04-16-2014" component="ccmsetup" context="" type="1" thread="1476" file="httphelper.cpp:807">
    <![LOG[Failed to successfully complete WinHttp request. (StatusCode at WinHttpQueryHeaders: 404)]LOG]!><time="12:31:30.273-120" date="04-16-2014" component="ccmsetup" context="" type="3" thread="1476"
    file="httphelper.cpp:1013">
    <![LOG[DownloadFileByWinHTTP failed with error 0x80004005]LOG]!><time="12:31:30.273-120" date="04-16-2014" component="ccmsetup" context="" type="3" thread="1476" file="httphelper.cpp:1081">
    <![LOG[CcmSetup failed with error code 0x80004005]LOG]!><time="12:31:30.273-120" date="04-16-2014" component="ccmsetup" context="" type="1" thread="1456" file="ccmsetup.cpp:10813">

    From the above log file: "Failed to successfully complete WinHttp request. (StatusCode at WinHttpQueryHeaders: 404)"
    404 = Not Found
    There are actually multiple 404's in there which leads me to believe your MP is not healthy. Have you reviewed it's health in the console (under the monitoring workspace).
    Jason | http://blog.configmgrftw.com

Maybe you are looking for

  • Premiere Pro CS4. Green video all of a sudden 'application not responding'?

    I was playing something in the timeline or whatever its called, and all of a sudden I get a green screen so I stop the video. I move to another part of the video to try playing there but I cant press play, there is only the square stop button in its

  • I give up. I still can't open iTunes.

    This is the FOURTH time I'm posting this.... people seem to read my quesiton, but no one has any answers for me. When trying to open iTunes, a dialog box opens up with the caption "iTunes Setup Assistant", and header line "Download Album Artwork" whi

  • Why is my imac running so slow after upgrading to osx 10.9.1?

    Ever since i upgraded to OSX 10.9.1 a couple of weeks ago, my mac runs slow, hangs up with the beach ball and generally has become a pain in the neck to work with.  I can't identify any one program specifically, it's pretty much everything.  I want M

  • Error 4280

    I'm trying to burn from a playlis and all I get is error 4280 can anyone help? presario 3000   Windows XP   cd/dvd teac dw-22e

  • Substring in script logic

    Hi, We have a customer dimension, where we can extract a lot of information. However the information depends on the sales organization. Since the client currently have 30 sales organization and we can deduct information like: billing currency, sold-t