Silent Network Client Install

Does anyone know how to get a silent install of the Business One client to work?
If you use setup.exe /s /v /qn installshield starts but does not complete. I think this is because it can not login to SQL server. Is there a way of passing the Username and Password for SQL server to the setup program?

Robert,
The forum that you have posted your question in is for questions related to the SAP Business One SDK.  Your question is with respect to the installation of the SAP Business One application.  You may get a quicker response by posting your question on the SAP Business One Discussion Forum at:
http://cpsn-channel.sap.com/businessoneforum
or posting and SAP Support Message.
Eddy

Similar Messages

  • For Your Consideration: Ultimate Lync 2010 client install with SCCM 2007

    While the subject of my post may be very presumptuous, I submit the following for your consideration to answer the often-asked question about how to deploy Lync 2010 client with SCCM.
    Background:
    I cannot understand why Microsoft made the Lync install so darned confusing, complex, and convoluted.
    After our Lync 2010 FE server was up and running and all users migrated off our OCS server to the Lync environment, I spent about a month and a half trying to figure out how to:
    1.  Uninstall the OCS 2007 R2 client
    2.  Install all prerequisites for the Lync client
    3.  Install Lync on all user workstations silently.
    While researching this, the simple answer I kept seeing given to this question was, "just use the .exe with the right switches according to the TechNet article here: http://technet.microsoft.com/en-us/library/gg425733.aspx".  Well, my response is, I
    tried that and while the program installed itself correctly pushed through SCCM, because I was doing it using an administrative account (i.e. the SYSTEM account) due to our users not having admin rights, when the install was done, Lync would automatically
    start up, but in the SYSTEM context so that the user couldn't see it was running, they go to run it and it won't run for them.  I was unable to find any switch or option to prevent the automatic launch.  I suppose the simple solution to that would
    be to have the user reboot, but that's unnecessarily disruptive and was contrary to the desire to make this a silent install.
    The next simplest answer I saw was, "extract the MSI and use that with the right switches".  Problem with that is that the MSI by itself doesn't remove the OCS client or install the prerequisites, and also either requires a registry change to even allow
    the MSI to be used or a hacked MSI that bypasses the registry key check.  I tried to put a package together to uninstall OCS, install the prereqs, and use a hacked MSI, but I never could get the MSI hacked properly.  The other problem I ran into
    was detecting if the OCS client was running in a predictable way so I could terminate it, properly uninstall it, and then do the rest of the installations.  It was this problem that ultimately led me to the solution that I'm about to detail and that has
    worked marvellously for us.
    Solution:
    As I said before, when I first looked at this problem, I started by building a typical software deployment package (Computer Management -> Software Distribution -> Packages) and then created the programs to do the install.  My first attempt was
    just with the .exe file provided as-is by Microsoft using the switches they document in the link above for IT-Managed Installation of Lync, and...well, the end result wasn't quite as desirable as hoped.  So, my next attempt was to extract all the prerequisite
    files and the Lync install MSI (both for x86 and x64), attempt to hack it to get around the "UseMSIForLyncInstallation" registry key, and make the command-lines to terminate OCS and uninstall it.
    In the past when I had an install to do with SCCM that also required uninstalling an older version of a given application, I typically used the program-chaining technique.  That's where you have, for example, 3 or more programs that run in a package
    in a sequence and you have Program 3 be set to run after Program 2 does and then set Program 2 to run after Program 1 so you get the desired sequence of Programs 1-2-3 running in that order.  So, I created programs to 1) kill Communicator.exe 2) uninstall
    Communicator 2007 R2 by doing an "msiexec /uninstall {GUID}" 3) install Silverlight 4) install Visual C++ x86 5) optionally install Visual C++ x64, and then 6) install the Lync x86 or x64 client.  That final step was always the point of failure because
    I couldn't get the hacked MSI for the Lync Client install to work.  I also realized that if Communicator wasn't running when the deployment started, that step would fail and cause the whole process to bail out with an error.  That's one of the downsides
    of program-chaining, if one step fails, SCCM completely bails on the deployment.  This is what also led me to the key to my solution:  TASK SEQUENCES.
    I'm not sure how many people out there look in the "Operating System Deployment" area of SCCM 2007 where Task Sequences normally live, but I also wonder how many people realize that Task Sequences can be used for more than just Operating System deployments. 
    One of the biggest advantages of a task sequence is you can set a step to ignore an error condition, such as if you try to terminate a process that isn't running.  Another advantage is that task sequences have some very good built-in conditionals that
    you can apply to steps, for example, having the sequence skip a step if a certain application (or specific version of an application) is not installed on the machine.  Both of those advantages factor highly into my solution.
    OK, for those who already think this is "TL;DR", here's the step-by-step of how to do this:
    First, you need to extract all the files from the LyncSetup.exe for your needed architectures.  We have a mix of Windows XP and Windows 7 64-bit, so my solution here will take both possibilities into account.  To extract the files, just start up
    the .exe like you're going to install it, but then when the first dialog comes up, navigate to "%programfiles%\OCSetup" and copy everything there to a new location.  The main files you need are: Silverlight.exe, vcredist.exe (the x64 LyncSetup.exe includes
    both x86 and x64 Visual C++ runtimes, you need them both, just rename them to differentiate), and Lync.msi (this also comes in an x86 and x64 flavor, so if you have a mix of architectures in your environment, get both and either put them into their own directories
    or rename them to reflect the architecture).
    For my setup, I extracted the files for the x86 and x64 clients and just dumped them each into directories named after the architectures.
    Next, move these files into a directory to your SCCM file server, whatever it might be that you deploy from, in our case, it was just another volume on our central site server.  Go to the SCCM console into Computer Management -> Software Distribution
    -> Packages and then create a new package, call it something meaningful, and then point to the directory on your SCCM file server for the source files.
    Now you need to create 3 to 5 programs inside the package:
    1.  Name: Silverlight
       Command Line: x86\Silverlight.exe /q     (remember, inside my main Lync install folder on my distribution point, I have an x86 directory for the files from the x86 installer and an x64 folder for the files from the x64 installer. 
    The fact is the Silverlight installer is the same in both, so you only need one of them.)
       On the Environment tab:  Program can run whether or not a user is logged in, runs with administrative rights, Runs with UNC name
       On the Advanced tab:  Suppress program notifications
       All other options leave default.
    2.  Name:  Visual C++ x86
        Command Line:  x86\vcredist_x86.exe /q
       On the Requirements tab: Click the radio button next to "This program can run only on specified client platforms:" and then check off the desired x86 clients.
       Environment and Advanced tabs:  same as Silverlight
       (If you have only x64 clients in your environment, change all x86 references to x64.  If you have a mixed environment, create another program identical to this one, replacing references to x86 with x64.)
    3.  Name:  Lync x86
        Command Line:  msiexec /qn /i x86\Lync.msi OCSETUPDIR="C:\Program Files\Microsoft Lync"  (The OCSETUPDIR fixes the issue with the Lync client wanting to "reinstall" itself every time it starts up)
        Requirements, Environment, and Advanced tabs:  Same as with Visual C++ and Silverlight
        (Same deal as above if you have all x64 clients or a mix, either change this program to reflect or make a second program if necessary)
    Now you need to make the Task Sequence.  Go to Computer Management -> Operating System Deployment -> Task Sequences.  Under the Actions pane, click New -> Task Sequence.  In the Create a New Task Sequence dialog, choose "create a
    new custom task sequence", Next, enter a meaningful name for the task sequence like "Install Microsoft Lync", Next, Next, Close.
    The task sequence will have up to 12 steps in it.  I'll break the steps down into 3 phases, the prereqs phase, uninstall OCS phase, and then Lync install phase.
    Prereqs Phase:
    These are the easiest of the steps to do.  Highlight the task sequence and then in the Actions pane, click Edit.
    1.  Click Add -> General -> Install Software.  Name: "Install Microsoft Silverlight".  Select "Install a single application", browse to the Lync package created earlier and then select the Silverlight program.
    2.  Add -> General -> Install Software.  Name: "Install Microsoft Visual C++ 2008 x86".  Install Single Application, browse to the Lync package, select the Visual C++ x86 package.
    As before, if you're an all-x64 environment, replace the x86 references with x64.  If you have a mixed environment, repeat step 2, replacing x86 with x64.
    3.  Add -> General -> Run Command Line.  Name: "Enable Lync Installation".  This step gets around the UseMSIForLyncInstallation registry requirement.  The Lync client MSI simply looks for the presence of this key when it runs, so
    we'll inject it into the registry now and it doesn't require a reboot or anything.  It just has to be there before the client MSI starts.
    Command Line: reg add "hklm\Software\Policies\Microsoft\Communicator" /v UseMSIForLyncInstallation /t REG_DWORD /d 1 /f
    Uninstall OCS Phase:
    This part consists of up to 6 Run Command Line steps.  (Add -> General -> Run Command Line)
    4.  Name: "Terminate Communicator".  Command Line: "taskkill /f /im communicator.exe".  On the Options page, check the box next to "Continue on error".  This will terminate the Communicator process if it's running, and if it's not, it'll
    ignore the error.
    5.  Name: "Terminate Outlook".  Command Line: "taskkill /f /im OUTLOOK.exe".  Check the "Continue on error" on the Options page here too.  Communicator 2007 hooks into Outlook, so if you don't kill Outlook, it might prompt for a reboot
    because components are in use.
    (NOTE:  If necessary, you could also add another step that terminates Internet Explorer because Communicator does hook into IE and without killing IE, it might require a restart after uninstalling Communicator in the next steps.  I didn't run into
    this in my environment, though.  Just repeat step 5, but replace OUTLOOK.EXE with IEXPLORE.EXE)
    6.  Name: "Uninstall Microsoft Office Communicator 2007".  Command Line: "msiexec.exe /qn /uninstall {E5BA0430-919F-46DD-B656-0796F8A5ADFF} /norestart" On the Options page:  Add Condition ->  Installed Software -> Browse to the
    Office Communicator 2007 non-R2 MSI -> select "Match this specific product (Product Code and Upgrade Code)".
    7.  Name:  "Uninstall Microsoft Office Communicator 2007 R2".  Command Line:  "msiexec.exe /qn /uninstall {0D1CBBB9-F4A8-45B6-95E7-202BA61D7AF4} /norestart".  On the Options page:  Add Condition -> Installed Software ->
    Browse to the Office Communicator 2007 R2 MSI -> select "Match any version of this product (Upgrade Code Only)".
    SIDEBAR
    OK, I need to stop here and explain steps 6 and 7 in more detail because it was a gotcha that bit me after I'd already started deploying Lync with this task sequence.  I found out after I'd been deploying for a while that a tech in one of our remote
    offices was reinstalling machines and putting the Communicator 2007 non-R2 client on instead of the R2 client, and my task sequence was expecting R2, mostly because I thought we didn't have any non-R2 clients out there.  So, at first I just had our Help
    Desk people do those installs manually, but later on decided to add support for this possibility into my task sequence.  Now, when you normally uninstall something with msiexec, you would use the Product Code GUID in the command, as you see in steps 6
    and 7.  All applications have a Product Code that's unique to a specific version of an application, but applications also have an Upgrade Code GUID that is unique for an application but common across versions.  This is part of how Windows knows that
    Application X version 1.2 is an upgrade to Application X version 1.1, i.e. Application X would have a common Upgrade Code, but the Product Code would differ between versions 1.1 and 1.2.
    The complication comes in that Communicator 2007 and Communicator 2007 R2 have a common Upgrade Code, but different Product Codes and the "MSIEXEC /uninstall" command uses the Product Code, not the Upgrade Code.  This means that if I didn't have step
    6 to catch the non-R2 clients, step 7 would be fine for the R2 clients, but fail on non-R2 clients because the Product Code in the MSIEXEC command would be wrong.  Luckily, we only had one version of the non-R2 client to deal with versus 4 or 5 versions
    of the R2 client.  So, I put the command to remove Communicator 2007 non-R2 first and checked for that specific product and version on the machine.  If it was present, it uninstalled it and then skipped over the R2 step.  If non-R2 was not present,
    it skipped that step and instead uninstalled any version of the R2 client.  It's important that steps 6 and 7 are in the order they are because if you swap them, then you'd have the same outcome as if step 6 wasn't there.  What if neither is on the
    machine?  Well the collection this was targeted to included only machines with any version of Communicator 2007 installed, so this was not a problem.  It was assumed that the machines had some version of Communicator on them.
    8.  Name:  "Uninstall Conferencing Add-In for Outlook".  Command Line:  "msiexec.exe /qn /uninstall {730000A1-6206-4597-966F-953827FC40F7} /norestart".  Check the "Continue on error" on the Options Page and then Add Condition ->
    Installed Software -> Browse to the MSI for this optional component and set it to match any version of the product.  If you don't use this in your environment, you can omit this step.
    9.  Name:  "Uninstall Live Meeting 2007".  Command Line:  "msiexec.exe /qn /uninstall {69CEBEF8-52AA-4436-A3C9-684AF57B0307} /norestart".  Check the "Continue on error" on the Options Page and then Add Condition -> Installed Software
    -> Browse to the MSI for this optional component and set it to match any version of the product.  If you don't use this in your environment, you can omit this step.
    Install Lync phase:
    Now, finally the main event, and it's pretty simple:
    10.  Click Add -> General -> Install Software.  Name: "Install Microsoft Lync 2010 x86".  Select "Install a single application", browse to the Lync package created earlier and then select the "Lync x86" program.  As before, if you
    only have x64 in your environment, replace the x86 with x64, or if you have a mixed environment, copy this step, replacing x86 references with x64.
    And the task sequence is done!  The final thing you need to do now is highlight the task, click Advertise in the Actions pane, and deploy it to a collection like you would with any other software distribution advertisement.  Go get a beer!
    Some final notes to keep in mind:
    1.  You can't make a task sequence totally silent...easily.  Users will get balloon notifications that an application is available to install.  The notifications cannot be suppressed through the GUI.  I've found scripts that supposedly
    hack the advertisement to make it be silent, but neither of them worked for me.  It was OK, though because in the end we wanted users, especially laptop users, to be able to pick a convenient time to do the upgrade.  The task sequence will appear
    in the "Add/Remove Programs" or "Programs and Features" Control Panel.  You can still do mandatory assignments to force the install to happen, you just can't make it totally silent.  On the plus side, the user shouldn't have to reboot at any point
    during or after the install!
    2.  In the advertisement setup, you can optionally show the task sequence progress.  I've configured the individual installs in this process to be silent, however, I did show the user the task sequence progress.  This means instead of seeing
    5 or 6 Installer windows pop up and go away, the user will have a single progress bar with the name of the step that is executing.
    3.  One step that I didn't consider when I actually did this was starting the Lync client as the user when the install was complete.  The user either had to start the client manually or just let it start on its own at the next logon.  However,
    while I was writing this, I realized that I could possibly start the client after installing by making another Program in the Lync Package with a command line that was along the lines of "%programfiles%\Microsoft Lync\communicator.exe" and then in the Environment
    tab, set it to "Run with user's rights" "only when a user is logged on".
    4.  My first revision of this task sequence has the Prereqs phase happening after the OCS uninstall phase, but I kept running into problems where the Silverlight installer would throw some bizarre error that it couldn't open a window or something wacky
    and it would fail.  Problem was, I couldn't re-run the task sequence because now it would fail because OCS had been uninstalled, so that's why the Prereqs happen first.  It ran much more reliably this way.
    5.  For some reason that baffles me, when I'd check the logs on the Site Server to monitor the deployment, I'd frequently see situations where the task sequence would start on a given machine, complete successfully, almost immediately start again, and
    then fail.  I'm not sure what is causing that, but I suspect either users are going to Add/Remove Programs and double-clicking the Add button to start the install instead of just single-clicking it, or the notification that they have software to install
    doesn't go away immediately or Lync doesn't start up right after the install, so they think the first time it didn't take and try it a second time.
    I hope this helps some of you SCCM and Lync admins out there!

    On Step 8 I found multiple product codes for the Conferencing Add-In for Outlook.  Here's a list of the ones I found in the machines on my network:
    {987CAEDE-EB67-4D5A-B0C0-AE0640A17B5F}
    {2BB9B2F5-79E7-4220-B903-22E849100547}
    {13BEAC7C-69C1-4A9E-89A3-D5F311DE2B69}
    {C5586971-E3A9-432A-93B7-D1D0EF076764}
    I'm sure there's others one, just be mindful that this add-in will have numerous product codes.

  • 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

  • Cisco VPN client install fails with Error 1722 on Windows 7

    Hi,
    I am having issues with laptops upgraded from Vista to Windows 7.
    Prior to the upgrade they are running Cisco VPN Client 5.0.05.0290.  These laptops also have Juniper Network Connect 6.5 and Citrix web client installed.  The windows upgrade advisor made no recommendations regarding uninstalling / reinstalling these apps.
    I have done an inplace upgade to Windows 7 (Windows Vista Enterprise 32bit to Windows 7 Enterprise 32 bit) and after the install the Cisco client is not working.  Uninstalled the client (the uninstall was successful) then reinstalled and the installation fails at Installing Cisco Systems Virtual Adapter - error 1722 there was a problem with the windows installer package.
    I have followed the steps for a manual uninstall of the Cisco client and then tried the install again - still not successful.  Interestingly (or not) the Juniper Network Connect also fails with the error The Network Connect Virtual adapter driver is not installed properly.  This also fails to reinstall after being removed.
    I tried removing the VPN clients on another laptop and then running the upgrade but the same errors occured when reinstalling the VPN Client.  I have tried the Winfix and DNE patch from Citrix but these fail saying there is a corruption in the application.
    On another laptop where only the Cisco VPN client was installed a reinstall was required after the upgrade, but it did install successfully.
    On a clean image these applications all install fine, however I have a large number of laptops do upgrade and don't want to do a fresh install and settings migration on all of them.
    What files / registry entrys are involved with the DNE adapter so I can manually clear it all out before reinstalling?
    Anything else I can do to troubleshoot this issue?
    Cheers,
    James

    You should be able to install the 64 bit version of the Cisco VPN software
    Latest version is vpnclient-winx64-msi-5.0.07.0440-k9.exe
    You should download and run MCPR.exe first, to clean out any traces of McAfee products that conflict with Cisco VPN.
    http://download.mcafee.com/products/licensed/cust_support_patches/MCPR.exe
    If there is a problem with vbscript registration on the system - there is a fixit tool from Microsoft for that:
    MicrosoftFixit50842.msi
    (Using Shrew VPN is a possible workaround.)

  • Running in 64 bit mode with the 32 bit Oracle client installed

    I have seen many postings on this issue but none of the suggested solutions have helped me.
    I am running visual studio 2010 professional with SP1 on windows 7 64 bit machine. When I try to run a web service locally and call it with SoapUI, I get the following error message during OracleConnection.Open().
    Attempt to load Oracle client libraries threw BadImageFormatException. This problem will occur when running in 64 bit mode with the 32 bit Oracle client components installed.
    I have tried setting up the build configuration and the project settings to target 32 bit but that has not helped. I have also tried removing the reference to System.Data.OracleClient that shows being under Program Files (x86) and add a new reference to the dll under GAC_64. That too did not work.
    I only have the 64 bit client installed on my machine.
    Any help will be appreciated.
    Thank you

    1. Visual Studio any version is 32 bit ONLY irrespective of hardware or OS bits.  So to DEVELOP with Oracle Client you MUST install 32 bit Oracle ODAC components. Task manager will show devenv.exe *32 (to confirm 32 bit Visual Studio application).
    2. You can run your web application inside IIS/IIS Express in your PC which independently can be either 32bit or 64bit.  If it is 64 bit, you MUST also install 64 bit Oracle ODAC components which means you'll have to install both 32bit and 64bit in your 64 bit Win7 running on 64bit hardware.
    3. In Visual Studio if you compile with "AnyCPU" as target, the resultant binaries (Web/NonWeb) can be both 32bit or 64bit.  So if target PC is "AnyCPU" or "x64", you MUST install Oracle ODAC 64 bit in the target OS if that target OS is 64bit.  You don't have to install 32bit ODAC in the target PC.
    4. One more catch to above scenario is the target OS could be 64bit simulated OS on a 32bit hardware. In such case you MUST install both 32bit and 64bit ODAC components.
    So while you ask your network team to download ODP.NET/ODAC Components make sure you ask them to download both 32bit and 64bit. Total nearly 600MB.
    Hope this helps many people out there.

  • After migration from sccm 2007, there are many systems with no client installed

    Hi Everyone,
    We have migrated our environment from SCCM 2007 to SCCM 2012 , And Manual client push installation has been done by HeadQuarter SCCM admins on site code of our region.
    But as i see , in all systems collection based on OU, there are approx 50% systems with no client installed.
    There may be some stale systems in AD.
    Is there any way so that i can list out all Stale or old computers which are not in use anymore records of systems from Active directory and so that i move them to OU for which system discovery is not enabled.
    Also, it will very useful if i get more information on lastLogonTimeStamp and such more properties which specifies system as stale or OFF the network for some period..

    You could also remove the objects without a client and adjust the settings in the
    Options tab of the Active Directory System Discovery Properties. By tweaking those options you can make sure that you're not discovering those old objects in the first place.
    My Blog: http://www.petervanderwoude.nl/
    Follow me on twitter: pvanderwoude

  • Social Networking Client

    Hi guys, i'm getting a message from the nokia store that nokia social v1.5 is not available for the nokia e6 belle. has anyone been able to update to that new version??

    stephen17033 wrote:
    I re-installed belle and also have lost the network client.can not download it from anywhere which is a shame because I thought it was good.
    Try here
    Here  

  • ODM client not bundled with 11g client install?

    All,
    Our 10g Oracle Client install includes the Oracle Directory Manager.
    We just installed the Administration version of the 11g client and I don't see ODM there.
    Can someone verify that ODM is not bundled with the 11g client?
    If it is bundled, how do I run it? The 11g Installer did not give me a menu item for it.
    Thanks,
    John

    Ok... despite the overwhelming response on this forum I contacted Apple support to found the solution.
    All mac's need internet access to send and receive the Apple Push Notifications. Even if the server is on the same network....
    For those behind a firewall / proxy and not quite keen on letting clients have full access; all apple servers are on the 17.0.0.0/8 range.
    For thosel looking to restrict even more (http://support.apple.com/kb/HT5302)
    2195, 2196
    TCP
    Used by Profile Manager to send push notifications
    5223
    TCP
    Used to maintain a persistent connection to APNs and receive push notifications
    80/443
    TCP
    Provides access to the web interface for Profile Manager admin
    1640
    TCP
    Enrollment access to the Certificate Authority
    Kind regards,
    Domien

  • Client Install Fails - Unable to get Win32_OperatingSystem object

    I have a PC that won't install the SCCM client via Client Push.  In the CCM.Log file on the site server, it connects to the IPC$ and admin$ shares using my client installation account, but then it comes back with this error:
    ---> Unable to get Win32_OperatingSystem object from WMI on remote machine "PCNAME", error = 0x80080005.
    I know that error means that access was denied to WMI, and I verified that when I run wbemtest manually (using the same client installation account), I can connect to the root\cimv2 object on that PC but when I try to enumerate the instances of the Win32_OperatingSystem object, I get the same error.
    I also tried using Computer Management applet (remotely - I have no local access to this PC) to look at the WMI Control properties.  Again, I get the same access denied error so I can't check/change the security permissions that way.
    I have verified that my client installation account is in the local Administrators group of the PC.  I've already tried rebuilding the WMI repository - that worked but it didn't fix the access issue.  I know I can install the client manually but I'm guessing I'd still have a problem with inventories, etc. that are dependent on access to that WMI object.  Any suggestions about how to go about fixing the WMI access issue?
    Thanks so much, --Jo

    Finally getting back to this issue after vacaton... sigh.
    I got a little further.  I took client push out of the mix and ran ccmsetup.exe locally on the PC.  This time the client installation ran.  However, I'm still getting a similar error from the client itself and the client is not talking to the site.  After the client was installed, only about 10 of the log files showed up in system32\ccm\logs. 
    ccmexec.log shows this error: 
    Endpoint'PolicyAgent_PolicyEvaluator' return 0x80070057 from event notification
    PolicyAgentProvider.log has these lines repeating:
    Failed to create actual config class for 'CCM_RootCACertificates' 
    Failed to update namespace 'Machine' (80041002) 
    Successfully updated namespace 'DefaultMachine' 
    Successfully updated namespace 'DefaultUser' 
    Failed to create actual config class for 'CCM_MulticastConfig' 
    Failed to update namespace 'Machine' (80041002) 
    PolicyEvaluator.log has this error:
    Received notification that Local policy has changed. 
    Failed to trigger Machine settings update (80070057)
    SrcUpdateManager has these errors:
    Instance of CCM_SourceUpdateClientConfig doesn't exist in WMI
    Failed to get instance of CCM_SourceUpdateHistory, error 80041002
    ClientIDManagerStartup.log has these errors:
    GetSystemEnclosureInfo failed (0x80080005)
    ComputeHardwareID failed (0x80080005).
    RegTask: Failed to create registration request body. Error: 0x80080005
    The rest of the logs that exist (LocationServices, StatusAgent, ClientLocation, RemCtrl, and setuppolicyevaluator) appear to be OK. 
    These seem to all be WMI-related errors/issues, but I can't find any specific information on any SCCM/SMS websites/forums that address these particular errors in these particular log files.  I've tried rebuilding the repository (several times), I've done the regsvr stuff as discussed above, etc. 
    I ran WMIDIAG next.  It ran for a little less than two hours - not sure if that's normal or not, but the log file continued to update the entire time.  Now I have this log file and I'm not sure what to do with the issues I found.  I'm looking at the WMI REPORT: BEGIN section...  I see instructions that make sense for most of the errors.  However, the section of log file below shows the area that is most likely causing issues for SCCM because it is the same error I get on the client install.  I have no idea how to fix this stuff - any help would be appreciated:
    31997 14:20:05 (1) !! ERROR: WMI ENUMERATION operation errors reported: .......................................... 33 ERROR(S)!
    31998 14:20:05 (0) ** - ROOT/CIMV2, InstancesOfAsync, CIM_USBDevice, 0x80080005 - .
    31999 14:20:05 (0) ** - ROOT/CIMV2, InstancesOfAsync, CIM_USBHub, 0x80080005 - .
    32000 14:20:05 (0) ** - ROOT/CIMV2/SMS, InstancesOfAsync, SMS_Class_Template, 0x80041011 - (WBEM_E_PROVIDER_NOT_FOUND) Provider referenced in the schema does not have a corresponding registration.
    32001 14:20:05 (0) ** - Root/Default, InstancesOf, SystemRestore, 0x80080005 - Server execution failed.
    32002 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_Process, 0x80080005 - Server execution failed.
    32003 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_OperatingSystem, 0x80080005 - Server execution failed.
    32004 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_ComputerSystem, 0x80080005 - Server execution failed.
    32005 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_Service, 0x80041013 - (WBEM_E_PROVIDER_LOAD_FAILURE) COM cannot locate a provider referenced in the schema.
    32006 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_Bios, 0x80080005 - Server execution failed.
    32007 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfRawData_Tcpip_IP, 0x80080005 - Server execution failed.
    32008 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfRawData_Tcpip_TCP, 0x80080005 - Server execution failed.
    32009 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfRawData_Tcpip_UDP, 0x80080005 - Server execution failed.
    32010 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfRawData_Tcpip_ICMP, 0x80080005 - Server execution failed.
    32011 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfRawData_PerfOS_Cache, 0x80080005 - Server execution failed.
    32012 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfRawData_PerfOS_Memory, 0x80041013 - (WBEM_E_PROVIDER_LOAD_FAILURE) COM cannot locate a provider referenced in the schema.
    32013 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfRawData_PerfOS_Objects, 0x80080005 - Server execution failed.
    32014 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfRawData_PerfOS_PagingFile, 0x80080005 - Server execution failed.
    32015 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfRawData_PerfOS_Processor, 0x80080005 - Server execution failed.
    32016 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfRawData_PerfOS_System, 0x80080005 - Server execution failed.
    32017 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfRawData_PerfProc_Process, 0x80080005 - Server execution failed.
    32018 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfRawData_PerfProc_Thread, 0x80080005 - Server execution failed.
    32019 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfFormattedData_Tcpip_IP, 0x80080005 - Server execution failed.
    32020 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfFormattedData_Tcpip_TCP, 0x80080005 - Server execution failed.
    32021 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfFormattedData_Tcpip_UDP, 0x80080005 - Server execution failed.
    32022 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfFormattedData_Tcpip_ICMP, 0x80041013 - (WBEM_E_PROVIDER_LOAD_FAILURE) COM cannot locate a provider referenced in the schema.
    32023 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfFormattedData_PerfOS_Cache, 0x80080005 - Server execution failed.
    32024 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfFormattedData_PerfOS_Memory, 0x80080005 - Server execution failed.
    32025 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfFormattedData_PerfOS_Objects, 0x80080005 - Server execution failed.
    32026 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfFormattedData_PerfOS_PagingFile, 0x80080005 - Server execution failed.
    32027 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfFormattedData_PerfOS_Processor, 0x80080005 - Server execution failed.
    32028 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfFormattedData_PerfOS_System, 0x80080005 - Server execution failed.
    32029 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfFormattedData_PerfProc_Process, 0x80080005 - Server execution failed.
    32030 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfFormattedData_PerfProc_Thread, 0x80080005 - Server execution failed.
    32031 14:20:05 (0) **
    32032 14:20:05 (1) !! ERROR: WMI EXECQUERY operation errors reported: ............................................ 17 ERROR(S)!
    32033 14:20:05 (0) ** - Root/Default, SELECT * FROM SystemRestore, 0x80080005 - Server execution failed.
    32034 14:20:05 (0) ** - Root/CIMv2, SELECT * FROM Win32_LogicalDisk WHERE FreeSpace > 10000000 AND DriveType = 3, 0x80080005 - Server execution failed.
    32035 14:20:05 (0) ** - Root/CIMv2, SELECT * FROM Win32_PageFileUsage, 0x80041013 - (WBEM_E_PROVIDER_LOAD_FAILURE) COM cannot locate a provider referenced in the schema.
    32036 14:20:05 (0) ** - Root/CIMv2, SELECT * FROM Win32_BIOS WHERE Version IS NOT NULL, 0x80080005 - Server execution failed.
    32037 14:20:05 (0) ** - Root/CIMv2, SELECT * FROM Win32_NetworkAdapter WHERE AdapterType IS NOT NULL AND AdapterType != "Wide Area Network (WAN)" AND Description != "Packet Scheduler Miniport", 0x80041013 - (WBEM_E_PROVIDER_LOAD_FAILURE) COM cannot locate a provider referenced in the schema.
    32038 14:20:05 (0) ** - Root/CIMv2, SELECT * FROM Win32_Processor WHERE Name IS NOT NULL, 0x80080005 - Server execution failed.
    32039 14:20:05 (0) ** - Root/CIMv2, SELECT * FROM Win32_DiskDrive, 0x80041013 - (WBEM_E_PROVIDER_LOAD_FAILURE) COM cannot locate a provider referenced in the schema.
    32040 14:20:05 (0) ** - Root/CIMv2, SELECT * FROM Win32_ComputerSystem, 0x80080005 - Server execution failed.
    32041 14:20:05 (0) ** - Root/CIMv2, SELECT * FROM Win32_DiskPartition, 0x80041013 - (WBEM_E_PROVIDER_LOAD_FAILURE) COM cannot locate a provider referenced in the schema.
    32042 14:20:05 (0) ** - Root/CIMv2, SELECT * FROM Win32_LogicalDisk WHERE Description != "Network Connection", 0x80080005 - Server execution failed.
    32043 14:20:05 (0) ** - Root/CIMv2, SELECT * FROM Win32_SoundDevice, 0x80041013 - (WBEM_E_PROVIDER_LOAD_FAILURE) COM cannot locate a provider referenced in the schema.
    32044 14:20:05 (0) ** - Root/CIMv2, SELECT * FROM Win32_VideoController, 0x80080005 - Server execution failed.
    32045 14:20:05 (0) ** - Root/CIMv2, SELECT * FROM Win32_USBController, 0x80041013 - (WBEM_E_PROVIDER_LOAD_FAILURE) COM cannot locate a provider referenced in the schema.
    32046 14:20:05 (0) ** - Root/CIMv2, SELECT * FROM Win32_DesktopMonitor, 0x80080005 - Server execution failed.
    32047 14:20:05 (0) ** - Root/CIMv2, SELECT * FROM Win32_PointingDevice WHERE Status = "OK", 0x80041013 - (WBEM_E_PROVIDER_LOAD_FAILURE) COM cannot locate a provider referenced in the schema.
    32048 14:20:05 (0) ** - Root/CIMv2, SELECT * FROM Win32_Keyboard, 0x80080005 - Server execution failed.
    32049 14:20:05 (0) ** - Root/CIMv2, SELECT * FROM Win32_SystemDriver WHERE StartMode != "Disabled", 0x80041013 - (WBEM_E_PROVIDER_LOAD_FAILURE) COM cannot locate a provider referenced in the schema.
    32050 14:20:05 (0) **
    32051 14:20:05 (0) ** WMI PUT operations: ........................................................................ OK.
    32052 14:20:05 (0) ** WMI DELETE operations: ..................................................................... OK.
    32053 14:20:05 (0) ** WMI GET VALUE operations: .................................................................. OK.
    32054 14:20:05 (0) ** WMI static instances retrieved: ............................................................ 1541.
    32055 14:20:05 (0) ** WMI dynamic instances retrieved: ........................................................... 0.
    32056 14:20:05 (0) ** WMI instances request cancellations (to limit performance impact): ......................... 0.
    32057 14:20:05 (0) **
    32058 14:20:05 (0) ** 38 error(s) 0x80080005 - (WBEM_UNKNOWN) This error code is external to WMI.
    32059 14:20:05 (0) **
    32060 14:20:05 (0) ** 1 error(s) 0x80041011 - (WBEM_E_PROVIDER_NOT_FOUND) Provider referenced in the schema does not have a corresponding registration
    32061 14:20:05 (0) ** => This error is typically due to the following major reasons:
    32062 14:20:05 (0) **    - The application queried by the WMI provider is not installed, not available or not running
    32063 14:20:05 (0) **      at the time of the request was made. This error can also be generated because
    32064 14:20:05 (0) **      the application supporting the providers has been uninstalled.
    32065 14:20:05 (0) **    - The WMI provider binary files are not accessible (e.g. access denied ACL).
    32066 14:20:05 (0) **    - A WMI provider registration problem at the CIM level (MOFCOMP.EXE) or at the COM level (REGSVR32.EXE).
    32067 14:20:05 (0) **      You must re-register the WMI provider by recompiling its associated MOF file with MOFCOMP.EXE
    32068 14:20:05 (0) **    Note: - If the WMI provider DLL CIM and COM registrations are correct, this error can
    32069 14:20:05 (0) **            be returned because the provider has a dependency on another DLL that cannot be
    32070 14:20:05 (0) **            loaded (missing or bad DLL)
    32071 14:20:05 (0) **          - Dependencies can be found with the DEPENDS.EXE tool coming with the
    32072 14:20:05 (0) **            Windows XP and Windows 2003 Support Tools. The command line is as follows:
    32073 14:20:05 (0) **            e.g. DEPENDS.EXE <PATH><Provider.DLL>
    32074 14:20:05 (0) ** => If the software has been de-installed intentionally, then this information must be
    32075 14:20:05 (0) **    removed from the WMI repository. You can use the 'WMIC.EXE' command to remove the provider
    32076 14:20:05 (0) **    registration data and its set of associated classes.
    32077 14:20:05 (0) ** => To correct this situation, you can:
    32078 14:20:05 (0) **    - Install or start the application supporting these providers.
    32079 14:20:05 (0) **    - Register the providers in CIM (MOFCOMP) or DCOM (REGSVR32).
    32080 14:20:05 (0) **    Note: In this case the provider should also be listed in the 'missing WMI
    32081 14:20:05 (0) **          provider DCOM registrations' or in the 'missing WMI provider files' section.
    32082 14:20:05 (2) !! WARNING: Re-registering with REGSVR32.EXE all DLL from 'C:\WINDOWS\SYSTEM32\WBEM\'
    32083 14:20:05 (0) **          may not solve the problem as the DLL supporting the WMI class(es)
    32084 14:20:05 (0) **          can be located in a different folder.
    32085 14:20:05 (0) **          You must refer to the class name to determine the software delivering the related DLL.
    32086 14:20:05 (0) **
    Thanks, --Jo

  • Network Client Authentication

    Hi all
    I am trying to get Network Client Username. All client users have Network Username.
    I am would like to read the Username based on their Windows Network login. Using the username, want to validate with Database.
    Could you please let me know how to get Network Client username?
    Thanks in advance.
    Karthik

    Creating a package is relatively easy, so I think you should just try it to see how far you'll get. sssd doesn't seem to difficult to install, so creating a PKGBUILD should not be to hard. If you encounter any problems, post them here so we can help you out

  • SCCM 2012 SP1 CU3 - Client Install on SiteServer (PrimarySite)

    We have an issue with SCCM 2012 Client deployment on our primary site all other clients are installing correctly the error is attached.
    I have tried various ways to install client push even tried the SP1 Client using ccmsetup /source and this also fails at the same point.
    I have done self service google and discovered this
    http://www.mail-archive.com/[email protected]/msg03811.html
    Anyone any ideas????

    80041002=
    Not found
    Source: Windows Management (WMI)
    Also, 1603 is a MSI exit code meaning fatal error occurred.
    Have you verified you are running the SP1 sccm client and not RTM on the machine is question?
    Justin Chalfant | My Blog |
    LinkedIn | Please mark as helpful/answer if this resolved your post
    Thanks, we have checked the error codes.
    We have tested the client install onto the primary server in three different sites, on different networks/labs/environments with the same result.
    Yes we have verified we are running SP1 CU3 and that the client files are the correct versions.
    To eliminate the probable cause of CU3 updates being at fault, we have obtained the Client folder from the SP1 ISO (the later released updated SP1 ISO), with the exact same error.

  • SCCM 2012 Client Install Failing ONLY on 8.1 Machines - Advice?

    Good morning,
    I've got a rather interesting situation.  We have a SCCM 2012 site configured for https, the site server is acting as the MP and DP, and we are installing the client via the SCCM 2012 Client GPO.  Our cert is an InCommon cert.  We have 4000+
    Windows 7 machines that are able to install the client.  We tested on a Window 8 machine and the client install works as well.  Whenever a Windows 8.1 machine tries to install it fails.  We have checked the boundaries (we can't specify IP ranges
    since we don't manage the whole network).  I can manually browse to the source files on the MP/DP.  The switches we use when installing via the GPO are /usepkicert /mp:[redacted] CCMHTTPSSTATE=63 SMSSITECODE=[redacted] SMSCACHESIZE=12288.  However,
    it always fails with:
    <![LOG[GetDPLocations failed with error 0x80004005]LOG]!><time="09:33:26.329+300" date="03-13-2015" component="ccmsetup" context="" type="3" thread="12944" file="siteinfo.cpp:532">
    <![LOG[Failed to get DP locations as the expected version from MP 'https://[redacted]'. Error 0x80004005]LOG]!><time="09:33:26.329+300" date="03-13-2015" component="ccmsetup" context="" type="2"
    thread="12944" file="ccmsetup.cpp:11261">
    <![LOG[Failed to find DP locations from MP 'https://[redacted]' with error 0x80004005, status code 403. Check next MP.]LOG]!><time="09:33:26.329+300" date="03-13-2015" component="ccmsetup" context="" type="2"
    thread="12944" file="ccmsetup.cpp:11117">
    <![LOG[Only one MP https://[redacted] is specified. Use it.]LOG]!><time="09:33:26.330+300" date="03-13-2015" component="ccmsetup" context="" type="1" thread="12944" file="ccmsetup.cpp:10080">
    <![LOG[Have already tried all MPs. Couldn't find DP locations.]LOG]!><time="09:33:26.330+300" date="03-13-2015" component="ccmsetup" context="" type="3" thread="12944" file="ccmsetup.cpp:11146">
    <![LOG[MapNLMCostDataToCCMCost() returning Cost 0x1]LOG]!><time="09:33:26.332+300" date="03-13-2015" component="ccmsetup" context="" type="1" thread="12944" file="ccmutillib.cpp:5479">
    <![LOG[GET 'https://[redacted]/CCM_Client/ccmsetup.cab']LOG]!><time="09:33:26.333+300" date="03-13-2015" component="ccmsetup" context="" type="1" thread="12944" file="httphelper.cpp:807">
    <![LOG[Failed to successfully complete WinHttp request. (StatusCode at WinHttpQueryHeaders: 403)]LOG]!><time="09:33:26.366+300" date="03-13-2015" component="ccmsetup" context="" type="3" thread="12944"
    file="httphelper.cpp:1013">
    <![LOG[DownloadFileByWinHTTP failed with error 0x80004005]LOG]!><time="09:33:26.366+300" date="03-13-2015" component="ccmsetup" context="" type="3" thread="12944" file="httphelper.cpp:1081">
    <![LOG[A Fallback Status Point has not been specified.  Message with STATEID='308' will not be sent.]LOG]!><time="09:33:26.367+300" date="03-13-2015" component="ccmsetup" context="" type="1"
    thread="12944" file="ccmsetup.cpp:9763">
    <![LOG['Configuration Manager Client Retry Task' is scheduled to run at 03/13/2015 02:33:26 PM (local) 03/13/2015 07:33:26 PM (UTC) time with arguments ' "/usepkicert" "/mp:[redacted]" "CCMHTTPSSTATE=63" "SMSSITECODE=AHC"
    "SMSCACHESIZE=12288" /RetryWinTask:1'.]LOG]!><time="09:33:26.369+300" date="03-13-2015" component="ccmsetup" context="" type="1" thread="10100" file="wintask.cpp:315">
    <![LOG[CcmSetup failed with error code 0x80004005]LOG]!><time="09:33:26.409+300" date="03-13-2015" component="ccmsetup" context="" type="1" thread="10100" file="ccmsetup.cpp:10879">
    Anyone have any idea why this is happening only on 8.1 machines?  I can't think of where else to check.  Thanks for any help.

    Okay, so I installed via the following:  ccmsetup.exe /usepkicert /source:C:\Client CCMHTTPSSTATE=63 SMSSITECODE=AHC SMSCACHESIZE=12288 and the client installed.  But you're right, the CCMMessaging.log is full of https errors.  I know it's
    something with the cert and I've even requested new ones from the CA.  However, why what is it about 8.1 that is causing the issues?  Like I said, we have 4000 machines using the same client authentication cert and they work.  I've cut and paste
    some of the log entries.  One thing to note is the \\[redacted]\sms_ahc\client\ccmsetup.exe in the beginning was using the internet FQDN.  Everything else is using the intranet location.  Does that provide any insight as to what is going
    on?
    \\[redacted]\sms_ahc\client\ccmsetup.exe /usepkicert /source:C:\Client CCMHTTPSSTATE=63 SMSSITECODE=AHC SMSCACHESIZE=12288
    <![LOG[Successfully sent security settings refresh message.]LOG]!><time="12:43:12.834+300" date="03-16-2015" component="CcmMessaging" context="" type="1" thread="5452" file="ccmhttperror.cpp:369">
    <![LOG[Successfully sent location services HTTPS failure message.]LOG]!><time="12:43:12.837+300" date="03-16-2015" component="CcmMessaging" context="" type="1" thread="5452" file="ccmhttperror.cpp:396">
    <![LOG[Post to https://[redacted]/ccm_system_windowsauth/request failed with 0x87d00231.]LOG]!><time="12:43:12.837+300" date="03-16-2015" component="CcmMessaging" context="" type="2" thread="5452"
    file="messagequeueproc_outgoing.cpp:442">
    <![LOG[[CCMHTTP] ERROR: URL=https://[redacted]/ccm_system_windowsauth/request, Port=443, Options=63, Code=0, Text=CCM_E_BAD_HTTP_STATUS_CODE]LOG]!><time="12:45:12.880+300" date="03-16-2015" component="CcmMessaging"
    context="" type="1" thread="5452" file="ccmhttperror.cpp:297">
    <![LOG[Raising event:
    instance of CCM_CcmHttp_Status
    DateTime = "20150316174512.883000+000";
    HostName = "[redacted]";
    HRESULT = "0x87d0027e";
    ProcessID = 8572;
    StatusCode = 403;
    ThreadID = 5452;
    ]LOG]!><time="12:45:12.883+300" date="03-16-2015" component="CcmMessaging" context="" type="1" thread="5452" file="event.cpp:715">
    <![LOG[Successfully sent security settings refresh message.]LOG]!><time="12:45:12.889+300" date="03-16-2015" component="CcmMessaging" context="" type="1" thread="5452" file="ccmhttperror.cpp:369">
    <![LOG[Successfully sent location services HTTPS failure message.]LOG]!><time="12:45:12.892+300" date="03-16-2015" component="CcmMessaging" context="" type="1" thread="5452" file="ccmhttperror.cpp:396">
    <![LOG[Post to https://[redacted]/ccm_system_windowsauth/request failed with 0x87d00231.]LOG]!><time="12:45:12.892+300" date="03-16-2015" component="CcmMessaging" context="" type="2" thread="5452"
    file="messagequeueproc_outgoing.cpp:442">

  • Rights of the Client installed App

    Hi,
    i try to investigate which rights does an app has on the client side installed.
    e.g. i install as the local admin ms word on the client machine. then i login as a network client on the client machine and run ms word. now, the question which rights has ms word. the local admin rights and the network user rights??
    rgds
    Bob

    Generally, the application has the rights of the user who launched it.
    Therefore, if admin user Joe installs an app, then regular user Bob runs it, the app runs under Bob's privileges.
    There are exceptions to this, of course - an app installed by an admin user could run under a specific user account (e.g. this is how the services such as the web server and mail server work).

  • Minimum Client Install and Path to TNSNames.ora

    1) What files are required for a minimum client install.
    2) What is the route/path a program should take to find the tnsnames.ora (Environment variable, registry?) - i.e. how does one locate it?
    Thanks

    1) Go to http://otn.oracle.com, look for the Downloads link, select and download Instant Client, unzip the file anywhere and follow the 'install' instructions.
    2) The TNSNAMES.ORA will be in each ORACLE_HOME/network/admin directory
    In addition, you could manually create a central one and use either the environment variable or registry entry TNS_ADMIN to locate that.
    I generally use the Windows Explorer search capability to look for files.
    You may want to review the Installation manual and/or the Administration manual for Windows. They do give this information and a lot more information relevant to your OS. These could be found at http://tahiti.oracle.com

  • Client install via WSUS fails

    I am having problems with clients installing the SCCM 2012 client via SUP.  It fails the install with error code 0x80004005
    Site is setup as following:
    Server 1(SCCM): Primary Site Server with MP, DP, SUP roles
    Server 2(SCDB): SQL Server
    WSUS is installated on Server 1 and I have a small group of clients setup pointing their WSUS client to this server and SCCM Client package is published correctly.  Clients see the published install but fail to install.
    AD has been extended and Site is published to AD with SMS-Site-SHA (my site name) and SMS-MP-SHA-SCCM.DOMAIN.COM
    Site boundary and boundary group have been configured and content location has been set
    Looking at the CCMSETUP.LOG on this client
    <![LOG[==========[ ccmsetup started in process 8176 ]==========]LOG]!><time="09:10:28.421-480" date="06-01-2012" component="ccmsetup" context="" type="1" thread="2784" file="ccmsetup.cpp:8115">
    <![LOG[CcmSetup version: 5.0.7711.0000]LOG]!><time="09:10:28.422-480" date="06-01-2012" component="ccmsetup" context="" type="1" thread="2784" file="ccmsetup.cpp:761">
    <![LOG[Running on OS (6.1.7601). Service Pack (1.0). SuiteMask = 16. Product Type = 3]LOG]!><time="09:10:28.422-480" date="06-01-2012" component="ccmsetup" context="" type="1" thread="2784" file="ccmsetup.cpp:894">
    <![LOG[Ccmsetup command line: "C:\Windows\SoftwareDistribution\Download\Install\ccmsetup.exe" ]LOG]!><time="09:10:28.422-480" date="06-01-2012" component="ccmsetup" context="" type="1" thread="2784" file="ccmsetup.cpp:3030">
    <![LOG[DhcpGetOriginalSubnetMask entry point is supported.]LOG]!><time="09:10:28.423-480" date="06-01-2012" component="ccmsetup" context="" type="0" thread="2784" file="ccmiputil.cpp:117">
    <![LOG[Begin checking Alternate Network Configuration]LOG]!><time="09:10:28.423-480" date="06-01-2012" component="ccmsetup" context="" type="1" thread="2784" file="ccmiputil.cpp:1069">
    <![LOG[Finished checking Alternate Network Configuration]LOG]!><time="09:10:28.440-480" date="06-01-2012" component="ccmsetup" context="" type="1" thread="2784" file="ccmiputil.cpp:1146">
    <![LOG[Current AD site of machine is Default-First-Site-Name]LOG]!><time="09:10:28.446-480" date="06-01-2012" component="ccmsetup" context="" type="1" thread="2784" file="lsad.cpp:601">
    <![LOG[Attempting to query AD for assigned site code]LOG]!><time="09:10:28.446-480" date="06-01-2012" component="ccmsetup" context="" type="0" thread="2784" file="lsad.cpp:1610">
    <![LOG[Executing query (&(ObjectCategory=MSSMSRoamingBoundaryRange)(|(&(MSSMSRangedIPLow<=2886729839)(MSSMSRangedIPHigh>=2886729839))))]LOG]!><time="09:10:28.561-480" date="06-01-2012" component="ccmsetup" context="" type="0" thread="2784" file="lsad.cpp:1645">
    <![LOG[Executing query (&(ObjectCategory=mSSMSSite)(|(mSSMSRoamingBoundaries=172.16.0.0)(mSSMSRoamingBoundaries=Default-First-Site-Name)))]LOG]!><time="09:10:28.563-480" date="06-01-2012" component="ccmsetup" context="" type="0" thread="2784" file="lsad.cpp:1706">
    <![LOG[LSIsSiteCompatible : Verifying Site Compatibility for <STH>]LOG]!><time="09:10:28.740-480" date="06-01-2012" component="ccmsetup" context="" type="1" thread="2784" file="lsad.cpp:5103">
    <![LOG[Local Machine is joined to an AD domain]LOG]!><time="09:10:28.740-480" date="06-01-2012" component="ccmsetup" context="" type="0" thread="2784" file="lsad.cpp:556">
    <![LOG[MP search filter is '(&(ObjectCategory=mSSMSManagementPoint)(mSSMSSiteCode=STH))']LOG]!><time="09:10:28.740-480" date="06-01-2012" component="ccmsetup" context="" type="0" thread="2784" file="lsad.cpp:4886">
    <![LOG[Attempting to connect to AD]LOG]!><time="09:10:28.740-480" date="06-01-2012" component="ccmsetup" context="" type="0" thread="2784" file="lsad.cpp:4889">
    <![LOG[LSGetSiteVersionFromAD : Attempting to query AD for MPs for site 'STH']LOG]!><time="09:10:28.741-480" date="06-01-2012" component="ccmsetup" context="" type="0" thread="2784" file="lsad.cpp:4925">
    <![LOG[LSGetSiteVersionFromAD : Successfully retrieved version '4.00.6487.0000' for site 'STH']LOG]!><time="09:10:28.745-480" date="06-01-2012" component="ccmsetup" context="" type="1" thread="2784" file="lsad.cpp:4996">
    <![LOG[LSIsSiteCompatible : Site Version = '4.00.6487.0000' Site Capabilities = <Capabilities SchemaVersion="1.0">
    </Capabilities>]LOG]!><time="09:10:28.745-480" date="06-01-2012" component="ccmsetup" context="" type="0" thread="2784" file="lsad.cpp:5161">
    <![LOG[LSIsSiteVersionCompatible : Site Version '4.00.6487.0000' is not compatible.]LOG]!><time="09:10:28.745-480" date="06-01-2012" component="ccmsetup" context="" type="1" thread="2784" file="lsad.cpp:5064">
    <![LOG[LSIsSiteCompatible : Site <STH> Version '4.00.6487.0000' is not compatible.]LOG]!><time="09:10:28.745-480" date="06-01-2012" component="ccmsetup" context="" type="1" thread="2784" file="lsad.cpp:5167">
    <![LOG[LSIsSiteCompatible : Verifying Site Compatibility for <SHA>]LOG]!><time="09:10:28.745-480" date="06-01-2012" component="ccmsetup" context="" type="1" thread="2784" file="lsad.cpp:5103">
    <![LOG[Local Machine is joined to an AD domain]LOG]!><time="09:10:28.745-480" date="06-01-2012" component="ccmsetup" context="" type="0" thread="2784" file="lsad.cpp:556">
    <![LOG[MP search filter is '(&(ObjectCategory=mSSMSManagementPoint)(mSSMSSiteCode=SHA))']LOG]!><time="09:10:28.745-480" date="06-01-2012" component="ccmsetup" context="" type="0" thread="2784" file="lsad.cpp:4886">
    <![LOG[Attempting to connect to AD]LOG]!><time="09:10:28.745-480" date="06-01-2012" component="ccmsetup" context="" type="0" thread="2784" file="lsad.cpp:4889">
    <![LOG[LSGetSiteVersionFromAD : Attempting to query AD for MPs for site 'SHA']LOG]!><time="09:10:28.746-480" date="06-01-2012" component="ccmsetup" context="" type="0" thread="2784" file="lsad.cpp:4925">
    <![LOG[LSGetSiteVersionFromAD : Successfully retrieved version '5.00.7711.0000' for site 'SHA']LOG]!><time="09:10:28.747-480" date="06-01-2012" component="ccmsetup" context="" type="1" thread="2784" file="lsad.cpp:4996">
    <![LOG[LSIsSiteCompatible : Site Version = '5.00.7711.0000' Site Capabilities = <Capabilities SchemaVersion="1.0"><Property Name="SSL" Version="1"/><Property Name="SSLState" Value="63"/></Capabilities>]LOG]!><time="09:10:28.747-480" date="06-01-2012" component="ccmsetup" context="" type="0" thread="2784" file="lsad.cpp:5161">
    <![LOG[LSIsSiteVersionCompatible : Site Version '5.00.7711.0000' is compatible.]LOG]!><time="09:10:28.747-480" date="06-01-2012" component="ccmsetup" context="" type="1" thread="2784" file="lsad.cpp:5069">
    <![LOG[LSIsSiteCompatible : Site <SHA> Version '5.00.7711.0000' is compatible.]LOG]!><time="09:10:28.747-480" date="06-01-2012" component="ccmsetup" context="" type="1" thread="2784" file="lsad.cpp:5172">
    <![LOG[This client might be within the boundaries of more than one site - AD SiteCode search matched 2 entries]LOG]!><time="09:10:28.747-480" date="06-01-2012" component="ccmsetup" context="" type="2" thread="2784" file="lsad.cpp:1770">
    <![LOG[The client will be assigned to the first valid site]LOG]!><time="09:10:28.747-480" date="06-01-2012" component="ccmsetup" context="" type="1" thread="2784" file="lsad.cpp:1771">
    <![LOG[LSGetAssignedSiteFromAD : Trying to Assign to the Site <SHA>]LOG]!><time="09:10:28.748-480" date="06-01-2012" component="ccmsetup" context="" type="1" thread="2784" file="lsad.cpp:1777">
    <![LOG[Got site code 'SHA' from AD.]LOG]!><time="09:10:28.748-480" date="06-01-2012" component="ccmsetup" context="" type="1" thread="2784" file="ccmsetup.cpp:365">
    <![LOG[Retrieving client operational settings from AD.]LOG]!><time="09:10:28.748-480" date="06-01-2012" component="ccmsetup" context="" type="1" thread="2784" file="lsad.cpp:4785">
    <![LOG[ClientOperationalSettings search filter is '(&(ObjectCategory=mSSMSManagementPoint)(mSSMSDefaultMP=TRUE)(mSSMSSiteCode=SHA))']LOG]!><time="09:10:28.753-480" date="06-01-2012" component="ccmsetup" context="" type="0" thread="2784" file="lsad.cpp:4296">
    <![LOG[FromAD: MSI properties = SMSSITECODE=SHA]LOG]!><time="09:10:28.754-480" date="06-01-2012" component="ccmsetup" context="" type="0" thread="2784" file="ccmsetup.cpp:387">
    <![LOG[MP search filter is '(&(ObjectCategory=mSSMSManagementPoint)(mSSMSDefaultMP=TRUE)(mSSMSSiteCode=SHA))']LOG]!><time="09:10:28.754-480" date="06-01-2012" component="ccmsetup" context="" type="0" thread="2784" file="lsad.cpp:2463">
    <![LOG[HTTP is selected for Client. The current state is 0.]LOG]!><time="09:10:28.758-480" date="06-01-2012" component="ccmsetup" context="" type="1" thread="2784" file="ccmutillib.cpp:370">
    <![LOG[The MP name retrieved is 'SCCM.domain.com' with version '7711' and capabilities '<Capabilities SchemaVersion="1.0"><Property Name="SSL" Version="1"/><Property Name="SSLState" Value="63"/></Capabilities>']LOG]!><time="09:10:28.758-480" date="06-01-2012" component="ccmsetup" context="" type="1" thread="2784" file="lsad.cpp:2583">
    <![LOG[MP 'SCCM.domain.com' is not compatible]LOG]!><time="09:10:28.758-480" date="06-01-2012" component="ccmsetup" context="" type="1" thread="2784" file="lsad.cpp:2596">
    <![LOG[SslState value: 255]LOG]!><time="09:10:28.759-480" date="06-01-2012" component="ccmsetup" context="" type="0" thread="2784" file="ccmsetup.cpp:3646">
    <![LOG[Ccmsetup was run without any user parameters specified. Running without registering ccmsetup as a service.]LOG]!><time="09:10:28.759-480" date="06-01-2012" component="ccmsetup" context="" type="1" thread="2784" file="ccmsetup.cpp:3698">
    <![LOG[Detected sitecode 'SHA' from AD.]LOG]!><time="09:10:28.759-480" date="06-01-2012" component="ccmsetup" context="" type="1" thread="2784" file="ccmsetup.cpp:3708">
    <![LOG[CCMHTTPPORT: 80]LOG]!><time="09:10:28.759-480" date="06-01-2012" component="ccmsetup" context="" type="1" thread="2784" file="ccmsetup.cpp:7336">
    <![LOG[CCMHTTPSPORT: 443]LOG]!><time="09:10:28.759-480" date="06-01-2012" component="ccmsetup" context="" type="1" thread="2784" file="ccmsetup.cpp:7351">
    <![LOG[CCMHTTPSSTATE: 255]LOG]!><time="09:10:28.759-480" date="06-01-2012" component="ccmsetup" context="" type="1" thread="2784" file="ccmsetup.cpp:7369">
    <![LOG[CCMHTTPSCERTNAME: ]LOG]!><time="09:10:28.759-480" date="06-01-2012" component="ccmsetup" context="" type="1" thread="2784" file="ccmsetup.cpp:7387">
    <![LOG[FSP: ]LOG]!><time="09:10:28.759-480" date="06-01-2012" component="ccmsetup" context="" type="1" thread="2784" file="ccmsetup.cpp:7439">
    <![LOG[CCMCERTISSUERS: CN=CASERVER-CA; DC=domain; DC=com]LOG]!><time="09:10:28.759-480" date="06-01-2012" component="ccmsetup" context="" type="1" thread="2784" file="ccmsetup.cpp:7465">
    <![LOG[CCMFIRSTCERT: 1]LOG]!><time="09:10:28.759-480" date="06-01-2012" component="ccmsetup" context="" type="1" thread="2784" file="ccmsetup.cpp:7497">
    <![LOG[CCMCERTID: SMS;9BB1588C22A57CF5E9CDF539B3E364584FF060C0]LOG]!><time="09:10:28.763-480" date="06-01-2012" component="ccmsetup" context="" type="0" thread="2784" file="ccmsetup.cpp:7518">
    <![LOG[No MP or source location has been explicitly specified. Trying to discover a valid content location...]LOG]!><time="09:10:28.763-480" date="06-01-2012" component="ccmsetup" context="" type="1" thread="2784" file="ccmsetup.cpp:3907">
    <![LOG[Looking for MPs from AD...]LOG]!><time="09:10:28.763-480" date="06-01-2012" component="ccmsetup" context="" type="1" thread="2784" file="ccmsetup.cpp:3916">
    <![LOG[Retrieving client operational settings from AD.]LOG]!><time="09:10:28.763-480" date="06-01-2012" component="ccmsetup" context="" type="1" thread="2784" file="lsad.cpp:4785">
    <![LOG[ClientOperationalSettings search filter is '(&(ObjectCategory=mSSMSManagementPoint)(mSSMSDefaultMP=TRUE)(mSSMSSiteCode=SHA))']LOG]!><time="09:10:28.767-480" date="06-01-2012" component="ccmsetup" context="" type="0" thread="2784" file="lsad.cpp:4296">
    <![LOG[FromAD: MSI properties = SMSSITECODE=SHA]LOG]!><time="09:10:28.769-480" date="06-01-2012" component="ccmsetup" context="" type="0" thread="2784" file="ccmsetup.cpp:387">
    <![LOG[MP search filter is '(&(ObjectCategory=mSSMSManagementPoint)(mSSMSDefaultMP=TRUE)(mSSMSSiteCode=SHA))']LOG]!><time="09:10:28.769-480" date="06-01-2012" component="ccmsetup" context="" type="0" thread="2784" file="lsad.cpp:2463">
    <![LOG[The MP name retrieved is 'SCCM.domain.com' with version '7711' and capabilities '<Capabilities SchemaVersion="1.0"><Property Name="SSL" Version="1"/><Property Name="SSLState" Value="63"/></Capabilities>']LOG]!><time="09:10:28.774-480" date="06-01-2012" component="ccmsetup" context="" type="1" thread="2784" file="lsad.cpp:2583">
    <![LOG[MP 'SCCM.domain.com' is not compatible]LOG]!><time="09:10:28.774-480" date="06-01-2012" component="ccmsetup" context="" type="1" thread="2784" file="lsad.cpp:2596">
    <![LOG[Current directory 'C:\Windows\SoftwareDistribution\Download\Install' is not a valid source location.]LOG]!><time="09:10:28.774-480" date="06-01-2012" component="ccmsetup" context="" type="1" thread="2784" file="ccmsetup.cpp:3975">
    <![LOG[No valid source or MP locations could be identified to download content from. Ccmsetup.exe cannot continue.]LOG]!><time="09:10:28.774-480" date="06-01-2012" component="ccmsetup" context="" type="3" thread="2784" file="ccmsetup.cpp:3985">
    <![LOG[Invalid ccmsetup command line: ]LOG]!><time="09:10:28.774-480" date="06-01-2012" component="ccmsetup" context="" type="3" thread="2784" file="ccmsetup.cpp:3789">
    <![LOG[A Fallback Status Point has not been specified. Message with STATEID='100' will not be sent.]LOG]!><time="09:10:28.775-480" date="06-01-2012" component="ccmsetup" context="" type="1" thread="2784" file="ccmsetup.cpp:8443">
    <![LOG[A Fallback Status Point has not been specified. Message with STATEID='307' will not be sent.]LOG]!><time="09:10:28.775-480" date="06-01-2012" component="ccmsetup" context="" type="1" thread="2784" file="ccmsetup.cpp:8443">
    <![LOG[CcmSetup failed with error code 0x80004005]LOG]!><time="09:10:28.775-480" date="06-01-2012" component="ccmsetup" context="" type="1" thread="2784" file="ccmsetup.cpp:9454">
    A Manual installation of the client works (i.e. with all the content from the Client folder) and then discovery.
    Any assistance would be appreciated.
    Pete

    Just updating on the progress.  So I re-installed SCCM with HTTPS and made sure the following were done:
    SCCM server has https cert for IIS with Server Authentication (1.3.6.1.5.5.7.3.1) and Client Authentication (1.3.6.1.5.5.7.3.2)
    SCCM server has cert for DP exported and installed in DP installation
    SCCM client has Client auth cert
    The installation gets further now but fails with the following now in the logs:
    <![LOG[==========[ ccmsetup started in process 5524 ]==========]LOG]!><time="10:09:33.302-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="ccmsetup.cpp:8115">
    <![LOG[CcmSetup version: 5.0.7711.0000]LOG]!><time="10:09:33.303-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="ccmsetup.cpp:761">
    <![LOG[Running on OS (6.1.7601). Service Pack (1.0). SuiteMask = 256. Product Type = 1]LOG]!><time="10:09:33.303-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="ccmsetup.cpp:894">
    <![LOG[Ccmsetup command line: "C:\Windows\SoftwareDistribution\Download\Install\ccmsetup.exe" ]LOG]!><time="10:09:33.303-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="ccmsetup.cpp:3030">
    <![LOG[DhcpGetOriginalSubnetMask entry point is supported.]LOG]!><time="10:09:33.303-480" date="06-06-2012" component="ccmsetup" context="" type="0" thread="6400" file="ccmiputil.cpp:117">
    <![LOG[Begin checking Alternate Network Configuration]LOG]!><time="10:09:33.303-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="ccmiputil.cpp:1069">
    <![LOG[Finished checking Alternate Network Configuration]LOG]!><time="10:09:33.315-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="ccmiputil.cpp:1146">
    <![LOG[Adapter {9A8E465C-FA71-4478-80B6-5F0E881AA647} is DHCP enabled. Checking quarantine status.]LOG]!><time="10:09:33.316-480" date="06-06-2012" component="ccmsetup" context="" type="0" thread="6400" file="ccmiputil.cpp:416">
    <![LOG[Current AD site of machine is Default-First-Site-Name]LOG]!><time="10:09:33.319-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="lsad.cpp:601">
    <![LOG[Attempting to query AD for assigned site code]LOG]!><time="10:09:33.319-480" date="06-06-2012" component="ccmsetup" context="" type="0" thread="6400" file="lsad.cpp:1610">
    <![LOG[Executing query (&(ObjectCategory=MSSMSRoamingBoundaryRange)(|(&(MSSMSRangedIPLow<=2886755343)(MSSMSRangedIPHigh>=2886755343))))]LOG]!><time="10:09:33.331-480" date="06-06-2012" component="ccmsetup" context="" type="0" thread="6400" file="lsad.cpp:1645">
    <![LOG[Executing query (&(ObjectCategory=mSSMSSite)(|(mSSMSRoamingBoundaries=172.16.0.0)(mSSMSRoamingBoundaries=Default-First-Site-Name)(mSSMSSiteCode=SHA)))]LOG]!><time="10:09:33.498-480" date="06-06-2012" component="ccmsetup" context="" type="0" thread="6400" file="lsad.cpp:1706">
    <![LOG[LSIsSiteCompatible : Verifying Site Compatibility for <STH>]LOG]!><time="10:09:33.499-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="lsad.cpp:5103">
    <![LOG[Local Machine is joined to an AD domain]LOG]!><time="10:09:33.499-480" date="06-06-2012" component="ccmsetup" context="" type="0" thread="6400" file="lsad.cpp:556">
    <![LOG[MP search filter is '(&(ObjectCategory=mSSMSManagementPoint)(mSSMSSiteCode=STH))']LOG]!><time="10:09:33.499-480" date="06-06-2012" component="ccmsetup" context="" type="0" thread="6400" file="lsad.cpp:4886">
    <![LOG[Attempting to connect to AD]LOG]!><time="10:09:33.499-480" date="06-06-2012" component="ccmsetup" context="" type="0" thread="6400" file="lsad.cpp:4889">
    <![LOG[LSGetSiteVersionFromAD : Attempting to query AD for MPs for site 'STH']LOG]!><time="10:09:33.500-480" date="06-06-2012" component="ccmsetup" context="" type="0" thread="6400" file="lsad.cpp:4925">
    <![LOG[LSGetSiteVersionFromAD : Successfully retrieved version '4.00.6487.0000' for site 'STH']LOG]!><time="10:09:33.502-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="lsad.cpp:4996">
    <![LOG[LSIsSiteCompatible : Site Version = '4.00.6487.0000' Site Capabilities = <Capabilities SchemaVersion="1.0">
    </Capabilities>]LOG]!><time="10:09:33.502-480" date="06-06-2012" component="ccmsetup" context="" type="0" thread="6400" file="lsad.cpp:5161">
    <![LOG[LSIsSiteVersionCompatible : Site Version '4.00.6487.0000' is not compatible.]LOG]!><time="10:09:33.502-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="lsad.cpp:5064">
    <![LOG[LSIsSiteCompatible : Site <STH> Version '4.00.6487.0000' is not compatible.]LOG]!><time="10:09:33.502-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="lsad.cpp:5167">
    <![LOG[LSIsSiteCompatible : Verifying Site Compatibility for <SHA>]LOG]!><time="10:09:33.502-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="lsad.cpp:5103">
    <![LOG[Local Machine is joined to an AD domain]LOG]!><time="10:09:33.502-480" date="06-06-2012" component="ccmsetup" context="" type="0" thread="6400" file="lsad.cpp:556">
    <![LOG[MP search filter is '(&(ObjectCategory=mSSMSManagementPoint)(mSSMSSiteCode=SHA))']LOG]!><time="10:09:33.502-480" date="06-06-2012" component="ccmsetup" context="" type="0" thread="6400" file="lsad.cpp:4886">
    <![LOG[Attempting to connect to AD]LOG]!><time="10:09:33.503-480" date="06-06-2012" component="ccmsetup" context="" type="0" thread="6400" file="lsad.cpp:4889">
    <![LOG[LSGetSiteVersionFromAD : Attempting to query AD for MPs for site 'SHA']LOG]!><time="10:09:33.503-480" date="06-06-2012" component="ccmsetup" context="" type="0" thread="6400" file="lsad.cpp:4925">
    <![LOG[LSGetSiteVersionFromAD : Successfully retrieved version '5.00.7711.0000' for site 'SHA']LOG]!><time="10:09:33.504-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="lsad.cpp:4996">
    <![LOG[LSIsSiteCompatible : Site Version = '5.00.7711.0000' Site Capabilities = <Capabilities SchemaVersion="1.0"><Property Name="SSL" Version="1"/><Property Name="SSLState" Value="31"/></Capabilities>]LOG]!><time="10:09:33.504-480" date="06-06-2012" component="ccmsetup" context="" type="0" thread="6400" file="lsad.cpp:5161">
    <![LOG[LSIsSiteVersionCompatible : Site Version '5.00.7711.0000' is compatible.]LOG]!><time="10:09:33.504-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="lsad.cpp:5069">
    <![LOG[LSIsSiteCompatible : Site <SHA> Version '5.00.7711.0000' is compatible.]LOG]!><time="10:09:33.504-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="lsad.cpp:5172">
    <![LOG[This client might be within the boundaries of more than one site - AD SiteCode search matched 2 entries]LOG]!><time="10:09:33.504-480" date="06-06-2012" component="ccmsetup" context="" type="2" thread="6400" file="lsad.cpp:1770">
    <![LOG[The client will be assigned to the first valid site]LOG]!><time="10:09:33.504-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="lsad.cpp:1771">
    <![LOG[LSGetAssignedSiteFromAD : Trying to Assign to the Site <SHA>]LOG]!><time="10:09:33.504-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="lsad.cpp:1777">
    <![LOG[Got site code 'SHA' from AD.]LOG]!><time="10:09:33.505-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="ccmsetup.cpp:365">
    <![LOG[Retrieving client operational settings from AD.]LOG]!><time="10:09:33.505-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="lsad.cpp:4785">
    <![LOG[ClientOperationalSettings search filter is '(&(ObjectCategory=mSSMSManagementPoint)(mSSMSDefaultMP=TRUE)(mSSMSSiteCode=SHA))']LOG]!><time="10:09:33.508-480" date="06-06-2012" component="ccmsetup" context="" type="0" thread="6400" file="lsad.cpp:4296">
    <![LOG[FromAD: MSI properties = SMSSITECODE=SHA]LOG]!><time="10:09:33.509-480" date="06-06-2012" component="ccmsetup" context="" type="0" thread="6400" file="ccmsetup.cpp:387">
    <![LOG[MP search filter is '(&(ObjectCategory=mSSMSManagementPoint)(mSSMSDefaultMP=TRUE)(mSSMSSiteCode=SHA))']LOG]!><time="10:09:33.509-480" date="06-06-2012" component="ccmsetup" context="" type="0" thread="6400" file="lsad.cpp:2463">
    <![LOG[Unable to open Registry key Software\Microsoft\CCM. Return Code [80070002]. Client HTTPS state is Unknown.]LOG]!><time="10:09:33.513-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="ccmutillib.cpp:330">
    <![LOG[The MP name retrieved is 'sccm.domain.com' with version '7711' and capabilities '<Capabilities SchemaVersion="1.0"><Property Name="SSL" Version="1"/><Property Name="SSLState" Value="31"/></Capabilities>']LOG]!><time="10:09:33.514-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="lsad.cpp:2583">
    <![LOG[MP 'sccm.domain.com' is compatible]LOG]!><time="10:09:33.514-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="lsad.cpp:2589">
    <![LOG[Found MP https://sccm.domain.com from AD]LOG]!><time="10:09:33.514-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="ccmsetup.cpp:5412">
    <![LOG[SslState value: 255]LOG]!><time="10:09:33.514-480" date="06-06-2012" component="ccmsetup" context="" type="0" thread="6400" file="ccmsetup.cpp:3646">
    <![LOG[Ccmsetup was run without any user parameters specified. Running without registering ccmsetup as a service.]LOG]!><time="10:09:33.514-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="ccmsetup.cpp:3698">
    <![LOG[Detected sitecode 'SHA' from AD.]LOG]!><time="10:09:33.514-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="ccmsetup.cpp:3708">
    <![LOG[CCMHTTPPORT: 80]LOG]!><time="10:09:33.514-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="ccmsetup.cpp:7336">
    <![LOG[CCMHTTPSPORT: 443]LOG]!><time="10:09:33.514-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="ccmsetup.cpp:7351">
    <![LOG[CCMHTTPSSTATE: 255]LOG]!><time="10:09:33.514-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="ccmsetup.cpp:7369">
    <![LOG[CCMHTTPSCERTNAME: ]LOG]!><time="10:09:33.514-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="ccmsetup.cpp:7387">
    <![LOG[FSP: ]LOG]!><time="10:09:33.514-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="ccmsetup.cpp:7439">
    <![LOG[CCMCERTISSUERS: CN=organisation-CERTSVR-CA; DC=domain; DC=com]LOG]!><time="10:09:33.514-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="ccmsetup.cpp:7465">
    <![LOG[CCMFIRSTCERT: 1]LOG]!><time="10:09:33.514-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="ccmsetup.cpp:7497">
    <![LOG[Config file: ]LOG]!><time="10:09:33.515-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="ccmsetup.cpp:3735">
    <![LOG[Retry time: 10 minute(s)]LOG]!><time="10:09:33.515-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="ccmsetup.cpp:3736">
    <![LOG[MSI log file: C:\Windows\ccmsetup\client.msi.log]LOG]!><time="10:09:33.515-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="ccmsetup.cpp:3737">
    <![LOG[MSI properties: SMSSITECODE=SHA CCMHTTPPORT="80" CCMHTTPSPORT="443" CCMHTTPSSTATE="255" CCMCERTISSUERS="CN=organisation-CERTSVR-CA; DC=domain; DC=com" CCMFIRSTCERT="1"]LOG]!><time="10:09:33.515-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="ccmsetup.cpp:3738">
    <![LOG[Source List:]LOG]!><time="10:09:33.515-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="ccmsetup.cpp:3746">
    <![LOG[MPs:]LOG]!><time="10:09:33.515-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="ccmsetup.cpp:3765">
    <![LOG[ https://sccm.domain.com]LOG]!><time="10:09:33.515-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="ccmsetup.cpp:3780">
    <![LOG[No version of the client is currently detected.]LOG]!><time="10:09:33.516-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="ccmsetup.cpp:958">
    <![LOG[Updated security on object C:\Windows\ccmsetup\.]LOG]!><time="10:09:33.518-480" date="06-06-2012" component="ccmsetup" context="" type="0" thread="6400" file="ccmsetup.cpp:7971">
    <![LOG[A Fallback Status Point has not been specified. Message with STATEID='100' will not be sent.]LOG]!><time="10:09:33.519-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="ccmsetup.cpp:8443">
    <![LOG[Downloading file C:\Windows\SoftwareDistribution\Download\Install\ccmsetup.exe]LOG]!><time="10:09:34.519-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="ccmsetup.cpp:4900">
    <![LOG[Downloading C:\Windows\SoftwareDistribution\Download\Install\ccmsetup.exe to C:\Windows\ccmsetup\ccmsetup.exe]LOG]!><time="10:09:34.519-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="ccmsetup.cpp:4984">
    <![LOG[File download 24% complete (262144 of 1052528 bytes).]LOG]!><time="10:09:34.546-480" date="06-06-2012" component="ccmsetup" context="" type="0" thread="6400" file="ccmsetup.cpp:7899">
    <![LOG[File download 49% complete (524288 of 1052528 bytes).]LOG]!><time="10:09:34.546-480" date="06-06-2012" component="ccmsetup" context="" type="0" thread="6400" file="ccmsetup.cpp:7899">
    <![LOG[File download 74% complete (786432 of 1052528 bytes).]LOG]!><time="10:09:34.546-480" date="06-06-2012" component="ccmsetup" context="" type="0" thread="6400" file="ccmsetup.cpp:7899">
    <![LOG[File download 99% complete (1048576 of 1052528 bytes).]LOG]!><time="10:09:34.546-480" date="06-06-2012" component="ccmsetup" context="" type="0" thread="6400" file="ccmsetup.cpp:7899">
    <![LOG[File download 100% complete (1052528 of 1052528 bytes).]LOG]!><time="10:09:34.546-480" date="06-06-2012" component="ccmsetup" context="" type="0" thread="6400" file="ccmsetup.cpp:7899">
    <![LOG[Download complete.]LOG]!><time="10:09:34.606-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="ccmsetup.cpp:5082">
    <![LOG[Running as user "SYSTEM"]LOG]!><time="10:09:34.677-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="ccmsetup.cpp:1974">
    <![LOG[Detected 16746 MB free disk space on system drive.]LOG]!><time="10:09:34.678-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="util.cpp:621">
    <![LOG[Only one MP https://sccm.domain.com is specified. Use it.]LOG]!><time="10:09:34.678-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="ccmsetup.cpp:8763">
    <![LOG[Searching for DP locations from MP(s)...]LOG]!><time="10:09:34.678-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="ccmsetup.cpp:9527">
    <![LOG[Current AD site of machine is Default-First-Site-Name]LOG]!><time="10:09:34.678-480" date="06-06-2012" component="LocationServices" context="" type="1" thread="6400" file="lsad.cpp:601">
    <![LOG[Local Machine is joined to an AD domain]LOG]!><time="10:09:34.678-480" date="06-06-2012" component="LocationServices" context="" type="0" thread="6400" file="lsad.cpp:556">
    <![LOG[Current AD forest name is domain.com, domain name is domain.com]LOG]!><time="10:09:34.680-480" date="06-06-2012" component="LocationServices" context="" type="1" thread="6400" file="lsad.cpp:668">
    <![LOG[DHCP entry points already initialized.]LOG]!><time="10:09:34.680-480" date="06-06-2012" component="LocationServices" context="" type="0" thread="6400" file="ccmiputil.cpp:75">
    <![LOG[Begin checking Alternate Network Configuration]LOG]!><time="10:09:34.680-480" date="06-06-2012" component="LocationServices" context="" type="1" thread="6400" file="ccmiputil.cpp:1069">
    <![LOG[Finished checking Alternate Network Configuration]LOG]!><time="10:09:34.682-480" date="06-06-2012" component="LocationServices" context="" type="1" thread="6400" file="ccmiputil.cpp:1146">
    <![LOG[Adapter {9A8E465C-FA71-4478-80B6-5F0E881AA647} is DHCP enabled. Checking quarantine status.]LOG]!><time="10:09:34.683-480" date="06-06-2012" component="LocationServices" context="" type="0" thread="6400" file="ccmiputil.cpp:416">
    <![LOG[Sending message body '<ContentLocationRequest SchemaVersion="1.00">
    <AssignedSite SiteCode="SHA"/>
    <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="domain.com"/>
    <Domain Name="domain.com"/>
    <IPAddresses>
    <IPAddress SubnetAddress="172.16.0.0" Address="172.16.100.15"/>
    </IPAddresses>
    </ClientLocationInfo>
    </ContentLocationRequest>
    ']LOG]!><time="10:09:34.687-480" date="06-06-2012" component="ccmsetup" context="" type="0" thread="6400" file="util.cpp:2205">
    <![LOG[Sending message header '<Msg SchemaVersion="1.1"><ID>{4E8AC1BE-52E4-412E-9F7A-CB12588F6D84}</ID><SourceHost>D2-TSG02-PG</SourceHost><TargetAddress>mp:[http]MP_LocationManager</TargetAddress><ReplyTo>direct:D2-TSG02-PG:LS_ReplyLocations</ReplyTo><Priority>3</Priority><Timeout>600</Timeout><ReqVersion>5931</ReqVersion><TargetHost>https://sccm.domain.com</TargetHost><TargetEndpoint>MP_LocationManager</TargetEndpoint><ReplyMode>Sync</ReplyMode><Protocol>http</Protocol><SentTime>2012-06-06T02:09:34Z</SentTime><Body Type="ByteRange" Offset="0" Length="1150"/><Hooks><Hook3 Name="zlib-compress"/></Hooks><Payload Type="inline"/></Msg>']LOG]!><time="10:09:34.687-480" date="06-06-2012" component="ccmsetup" context="" type="0" thread="6400" file="util.cpp:2286">
    <![LOG[Client is not allowed to use PKI issued certificate thus it can not talk to HTTPS server.]LOG]!><time="10:09:34.688-480" date="06-06-2012" component="ccmsetup" context="" type="3" thread="6400" file="httphelper.cpp:795">
    <![LOG[GetHttpRequestObjects failed for verb: 'CCM_POST', url: 'https://sccm.domain.com/ccm_system/request']LOG]!><time="10:09:34.688-480" date="06-06-2012" component="ccmsetup" context="" type="3" thread="6400" file="httphelper.cpp:942">
    <![LOG[GetDPLocations failed with error 0x80004005]LOG]!><time="10:09:34.688-480" date="06-06-2012" component="ccmsetup" context="" type="3" thread="6400" file="util.cpp:2487">
    <![LOG[Failed to get DP locations as the expected version from MP 'https://sccm.domain.com'. Error 0x80004005]LOG]!><time="10:09:34.688-480" date="06-06-2012" component="ccmsetup" context="" type="2" thread="6400" file="ccmsetup.cpp:9542">
    <![LOG[Next retry in 10 minute(s)...]LOG]!><time="10:09:34.688-480" date="06-06-2012" component="ccmsetup" context="" type="0" thread="6400" file="ccmsetup.cpp:7554">
    <![LOG[Current AD site of machine is Default-First-Site-Name]LOG]!><time="10:19:34.797-480" date="06-06-2012" component="LocationServices" context="" type="1" thread="6400" file="lsad.cpp:601">
    <![LOG[Local Machine is joined to an AD domain]LOG]!><time="10:19:34.798-480" date="06-06-2012" component="LocationServices" context="" type="0" thread="6400" file="lsad.cpp:556">
    <![LOG[Current AD forest name is domain.com, domain name is domain.com]LOG]!><time="10:19:34.798-480" date="06-06-2012" component="LocationServices" context="" type="1" thread="6400" file="lsad.cpp:668">
    <![LOG[DHCP entry points already initialized.]LOG]!><time="10:19:34.798-480" date="06-06-2012" component="LocationServices" context="" type="0" thread="6400" file="ccmiputil.cpp:75">
    <![LOG[Begin checking Alternate Network Configuration]LOG]!><time="10:19:34.798-480" date="06-06-2012" component="LocationServices" context="" type="1" thread="6400" file="ccmiputil.cpp:1069">
    <![LOG[Finished checking Alternate Network Configuration]LOG]!><time="10:19:34.803-480" date="06-06-2012" component="LocationServices" context="" type="1" thread="6400" file="ccmiputil.cpp:1146">
    <![LOG[Adapter {9A8E465C-FA71-4478-80B6-5F0E881AA647} is DHCP enabled. Checking quarantine status.]LOG]!><time="10:19:34.805-480" date="06-06-2012" component="LocationServices" context="" type="0" thread="6400" file="ccmiputil.cpp:416">
    <![LOG[Sending message body '<ContentLocationRequest SchemaVersion="1.00">
    <AssignedSite SiteCode="SHA"/>
    <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="domain.com"/>
    <Domain Name="domain.com"/>
    <IPAddresses>
    <IPAddress SubnetAddress="172.16.0.0" Address="172.16.100.15"/>
    </IPAddresses>
    </ClientLocationInfo>
    </ContentLocationRequest>
    ']LOG]!><time="10:19:34.809-480" date="06-06-2012" component="ccmsetup" context="" type="0" thread="6400" file="util.cpp:2205">
    <![LOG[Sending message header '<Msg SchemaVersion="1.1"><ID>{4BBBF7DF-C36A-46BD-B574-0F70CE280F07}</ID><SourceHost>D2-TSG02-PG</SourceHost><TargetAddress>mp:[http]MP_LocationManager</TargetAddress><ReplyTo>direct:D2-TSG02-PG:LS_ReplyLocations</ReplyTo><Priority>3</Priority><Timeout>600</Timeout><ReqVersion>5931</ReqVersion><TargetHost>https://sccm.domain.com</TargetHost><TargetEndpoint>MP_LocationManager</TargetEndpoint><ReplyMode>Sync</ReplyMode><Protocol>http</Protocol><SentTime>2012-06-06T02:19:34Z</SentTime><Body Type="ByteRange" Offset="0" Length="1150"/><Hooks><Hook3 Name="zlib-compress"/></Hooks><Payload Type="inline"/></Msg>']LOG]!><time="10:19:34.809-480" date="06-06-2012" component="ccmsetup" context="" type="0" thread="6400" file="util.cpp:2286">
    <![LOG[Client is not allowed to use PKI issued certificate thus it can not talk to HTTPS server.]LOG]!><time="10:19:34.809-480" date="06-06-2012" component="ccmsetup" context="" type="3" thread="6400" file="httphelper.cpp:795">
    <![LOG[GetHttpRequestObjects failed for verb: 'CCM_POST', url: 'https://sccm.domain.com/ccm_system/request']LOG]!><time="10:19:34.809-480" date="06-06-2012" component="ccmsetup" context="" type="3" thread="6400" file="httphelper.cpp:942">
    <![LOG[GetDPLocations failed with error 0x80004005]LOG]!><time="10:19:34.809-480" date="06-06-2012" component="ccmsetup" context="" type="3" thread="6400" file="util.cpp:2487">
    <![LOG[Failed to find DP locations with error 0x80004005, status code 200. Check next MP.]LOG]!><time="10:19:34.809-480" date="06-06-2012" component="ccmsetup" context="" type="2" thread="6400" file="ccmsetup.cpp:9642">
    <![LOG[Only one MP https://sccm.domain.com is specified. Use it.]LOG]!><time="10:19:34.809-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="ccmsetup.cpp:8763">
    <![LOG[Have already tried all MPs. Couldn't find DP locations.]LOG]!><time="10:19:34.809-480" date="06-06-2012" component="ccmsetup" context="" type="3" thread="6400" file="ccmsetup.cpp:9647">
    <![LOG[Client is not allowed to use PKI issued certificate thus it can not talk to HTTPS server.]LOG]!><time="10:19:34.809-480" date="06-06-2012" component="ccmsetup" context="" type="3" thread="6400" file="httphelper.cpp:795">
    <![LOG[GetHttpRequestObjects failed for verb: 'GET', url: 'https://sccm.domain.com/CCM_Client/ccmsetup.cab']LOG]!><time="10:19:34.810-480" date="06-06-2012" component="ccmsetup" context="" type="3" thread="6400" file="httphelper.cpp:942">
    <![LOG[DownloadFileByWinHTTP failed with error 0x80004005]LOG]!><time="10:19:34.810-480" date="06-06-2012" component="ccmsetup" context="" type="3" thread="6400" file="httphelper.cpp:1076">
    <![LOG[A Fallback Status Point has not been specified. Message with STATEID='308' will not be sent.]LOG]!><time="10:19:34.810-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="ccmsetup.cpp:8443">
    <![LOG[CcmSetup failed with error code 0x80004005]LOG]!><time="10:19:34.810-480" date="06-06-2012" component="ccmsetup" context="" type="1" thread="6400" file="ccmsetup.cpp:9454">
    I have seen
    http://social.technet.microsoft.com/Forums/ta/configmanagerdeployment/thread/b8c5d3ef-c753-4fa6-b1a6-d5975ea4a115 and dont think this is a neccessary setup and should be able to get it done without the GPO ADM template
    I might just revert to HTTP as it is not essential in our business case yet and I can implement HTTPS later when and if required
    Pete

Maybe you are looking for