Progress indicator for installing missing SCCM 2012 R2 updates

Hi Everyone!  I've put together a simple powershell script to install missing SCCM updates and it works well but doesn't output anything to the console when its running.
How could I include a write-progress indicator during the While loop is running?
I'm thinking I could insert Write-Progress for the While (($CMInstallPendingUpdates.Count -ne 0) but I'm just not too familiar with the syntax required.  -Thanks!
# Get the number of missing updates
[System.Management.ManagementObject[]] $CMMissingUpdates = @(GWMI -ComputerName $server -query "SELECT * FROM CCM_SoftwareUpdate WHERE ComplianceState = '0'" -namespace "ROOT\ccm\ClientSDK") #End Get update count.
$result.UpdateCountBefore = "The number of missing updates is $($CMMissingUpdates.count)"
#Install missing updates.
If ($CMMissingUpdates.count) {
$result.UpdateCountBefore = "The number of missing updates is $($CMMissingUpdates.count)"
$CMInstallMissingUpdates = (GWMI -ComputerName $server -Namespace "root\ccm\clientsdk" -Class "CCM_SoftwareUpdatesManager" -List).InstallUpdates($CMMissingUpdates)
Do {
Start-Sleep -Seconds 15
[array]$CMInstallPendingUpdates = @(GWMI -ComputerName $server -query "SELECT * FROM CCM_SoftwareUpdate WHERE EvaluationState = 6 or EvaluationState = 7" -namespace "ROOT\ccm\ClientSDK")
#Not 100% sure $result.UpdateCountBefore is needed below.
$result.UpdateCountBefore = "The number of pending updates for installation is: $($CMInstallPendingUpdates.count)"
} While (($CMInstallPendingUpdates.count -ne 0) -and ((New-TimeSpan -Start $StartTime -End $(Get-Date)) -lt "00:45:00"))
} ELSE {
$result.UpdateCountAfter = "There are no missing updates."}

# Get the number of missing updates
[System.Management.ManagementObject[]] $CMMissingUpdates = @(GWMI -ComputerName $server -query "SELECT * FROM CCM_SoftwareUpdate WHERE ComplianceState = '0'" -namespace "ROOT\ccm\ClientSDK") #End Get update count.
$result.UpdateCountBefore = "The number of missing updates is $($CMMissingUpdates.count)"
#Install missing updates.
If ($CMMissingUpdates.count) {
$result.UpdateCountBefore = "The number of missing updates is $($CMMissingUpdates.count)"
$CMInstallMissingUpdates = (GWMI -ComputerName $server -Namespace "root\ccm\clientsdk" -Class "CCM_SoftwareUpdatesManager" -List).InstallUpdates($CMMissingUpdates)
$Increment = 100 / $CMInstallMissingUpdate.Count $Percent = 0 Do {
Start-Sleep -Seconds 15
[array]$CMInstallPendingUpdates = @(GWMI -ComputerName $server -query "SELECT * FROM CCM_SoftwareUpdate WHERE EvaluationState = 6 or EvaluationState = 7" -namespace "ROOT\ccm\ClientSDK")
#Not 100% sure $result.UpdateCountBefore is needed below.
$result.UpdateCountBefore = "The number of pending updates for installation is: $($CMInstallPendingUpdates.count)"       Write-Progress -Activity "Installing updates" -PercentComplete $Percent -Status "Working ..."
$Percent = $Percent + $Increment
} While (($CMInstallPendingUpdates.count -ne 0) -and ((New-TimeSpan -Start $StartTime -End $(Get-Date)) -lt "00:45:00")) Write-Progress -Activity "Updates installed" -Status "Done" -Completed} ELSE {
$result.UpdateCountAfter = "There are no missing updates."}

Similar Messages

  • Write-Progress in PowerShell script for installing Missing Updates

    Hi, I had a previous question here
    https://social.technet.microsoft.com/Forums/windowsserver/en-US/88931488-3b2c-4c08-9ad3-6651ba9bbcef/action?threadDisplayName=progress-indicator-for-installing-missing-sccm-2012-r2-updates
    But that method is not working as expected.  The progress bar displays then continues to increment past 100 throwing an error each time.
    I'm thinking I could use a foreach loop for the missing updates but I'm just lost when it comes to Powershell syntax.
    For example:
    # Get the number of missing updates
    [System.Management.ManagementObject[]] $CMMissingUpdates = @(GWMI -ComputerName $server -query "SELECT * FROM CCM_SoftwareUpdate WHERE ComplianceState = '0'" -namespace "ROOT\ccm\ClientSDK") #End Get update count.
    $result.UpdateCountBefore = "The number of missing updates is $($CMMissingUpdates.count)"
    #Install missing updates.
    #Begin example code, not tested.
    Foreach ($update in $CMMissingUpdates)
    $i++
    If ($CMMissingUpdates.count) {
    $CMInstallMissingUpdates = (GWMI -ComputerName $server -Namespace "root\ccm\clientsdk" -Class "CCM_SoftwareUpdatesManager" -List).InstallUpdates($CMMissingUpdates)
    Do {
    Start-Sleep -Seconds 15
    [array]$CMInstallPendingUpdates = @(GWMI -ComputerName $server -query "SELECT * FROM CCM_SoftwareUpdate WHERE EvaluationState = 6 or EvaluationState = 7" -namespace "ROOT\ccm\ClientSDK")
    #end my example code.
    #The code below is working to install updates but Write-Progress isn't.
    If ($CMMissingUpdates.count) {
    #$result.UpdateCountBefore = "The number of missing updates is $($CMMissingUpdates.count)"
    $CMInstallMissingUpdates = (GWMI -ComputerName $server -Namespace "root\ccm\clientsdk" -Class "CCM_SoftwareUpdatesManager" -List).InstallUpdates($CMMissingUpdates)
    #Set the missing updates to variable for progress indicator.
    $updates = $CMMissingUpdates.Count
    $Increment = 100 / $updates
    $Percent = 0
    Do {
    Start-Sleep -Seconds 15
    [array]$CMInstallPendingUpdates = @(GWMI -ComputerName $server -query "SELECT * FROM CCM_SoftwareUpdate WHERE EvaluationState = 6 or EvaluationState = 7" -namespace "ROOT\ccm\ClientSDK")
    #Not 100% sure $result.UpdateCountBefore is needed below.
    $result.UpdateCountBefore = "The number of pending updates for installation is: $($CMInstallPendingUpdates.count)"
    Write-Progress -Activity "Updates are installing..." -PercentComplete $Percent -Status "Working..."
    $Percent = $Percent + $Increment
    } While (($CMInstallPendingUpdates.count -ne 0) -and ((New-TimeSpan -Start $StartTime -End $(Get-Date)) -lt "00:45:00"))
    Write-Progress -Activity "Updates Installed" -Status "Done" -Completed
    } ELSE {
    $result.UpdateCountAfter = "There are no missing updates."}
    $result

    The increment should be 100  / (max number of items)
    That will not exceed 100 through (max number of items ) iterations in a loop
    Mathematically that can be written as 
    100 / (Max Number of items) * (max number of items ) iterations in a loop
    = 100 * ( (Max Number of Item) / (Number Iterations in a loop) )
    = 100 * 1 = 100
    The (max number of items) and (Number of Iterations in a loop ) need to be based on the same number.
    In the script, it is not based on the same number.
    The maximum number of items is $CMMissingUpdates.Count
    The number of iterations in the loop  is based on the condition 
    ($CMInstallPendingUpdates.count -ne 0)
    Which causes the iterations of the loop to exceed $CMMissingUpdates.Count
    Assuming the $CMInstallPendingUpdates.count is going down (is decremented) through the loop, then
    $Increment = 100 /
    $CMInstallPendingUpdates.count

  • SCCM 2012 SP1 update to R2

    Hi!
    SCCM 2012 SP1 update to R2.
    I use SQL 2008R2 SP2 (10.50.4000.0), this version is Ok for SCCm 2012 R2 update?
    cenubit

    Yes it is.
    See supported configurations
    http://technet.microsoft.com/en-us/library/gg682077.aspx#BKMK_SupConfigSQLDBconfig
    Also, see procedure to upgrade from SP1 to R2
    http://www.gerryhampsoncm.blogspot.ie/2013/10/in-place-upgrade-sccm-2012-sp1-to-r2.html
    Also, note that CU1 for R2 has also been released. You should apply this afterwards.
    http://support.microsoft.com/kb/2938441/en-us
    Gerry Hampson | Blog:
    www.gerryhampsoncm.blogspot.ie | LinkedIn:
    Gerry Hampson | Twitter:
    @gerryhampson

  • SCCM 2012 software update point not sync with Microsoft Updat,

    Hi 
    Recently my SCCM 2012 software update is not syncing with microsoft update, am getting below error.  can any one suggest/help me how to resolve this issue.
    WebException: The remote server returned an error: (500) Internal Server Error.
    at System.Net.HttpWebRequest.GetRequestStream(TransportContext& context)
       at System.Net.HttpWebRequest.GetRequestStream()
       at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters)
       at Microsoft.UpdateServices.ServerSyncWebServices.ServerSync.ServerSyncProxy.GetAuthConfig()
       at Microsoft.UpdateServices.ServerSync.ServerSyncLib.InternetGetServerAuthConfig(ServerSyncProxy proxy, WebServiceCommunicationHelper webServiceHelper)
       at Microsoft.UpdateServices.ServerSync.ServerSyncLib.Authenticate(AuthorizationManager authorizationManager, Boolean checkExpiration, ServerSyncProxy proxy, Cookie cookie, WebServiceCommunicationHelper webServiceHelper)
       at Microsoft.UpdateServices.ServerSync.CatalogSyncAgentCore.SyncConfigUpdatesFromUSS()
       at Microsoft.UpdateServices.ServerSync.CatalogSyncAgentCore.ExecuteSyncProtocol(Boolean allowRedirect)

    am just trying to tracert catalog.update.microsoft.com
    from my wsus server but it is failed, would that be the reason/
    Regards,
    Madhan

  • Issue getting WDS to Install for PXE in SCCM 2012 SP1 Primary Site

    Hi All
    I'm trying to get PXE boot working from our SCCM 2012 box but it never actually gets to the point of installing WDS when I check the box for PXE booting. I don't have  SMSPXE.log since it never gets to that point and the distmgr.log  never reaches
    that point either. I've tried
    uncheck pxe boot option - restart - re-check
    uncheck pxe-boot - restart - install wds - leave it unconfigured - reboot - check pxe boot
    uncheck pxe-boot - uninstall the vcredist 2008 packages - rebooting - install vcredist - check pxe boot option
    the above with installing wds unconfigured
    Below is the relevant portions of the distmgr.log file after I enable the pxe boot option no matter what manner of software is installed. We are running it on a VM in a Hyper-V 2012 enviornment in Windows 2008 SP2 x64. This issue is similar to this link
    WDS PXE Secondary Site Issues but mine is on the Primary Site.
    ConfigureDP SMS_DISTRIBUTION_MANAGER 3/28/2013 11:48:09 AM 4008 (0x0FA8)
    DP registry settings have been successfully updated on TUSC2012.TALISKERUTAH.LOCAL SMS_DISTRIBUTION_MANAGER 3/28/2013 11:48:10 AM 4008 (0x0FA8)
    STATMSG: ID=9500 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=TUSC2012.TALISKERUTAH.LOCAL SITE=001 PID=2728 TID=4008 GMTDATE=Thu Mar 28 17:48:10.083 2013 ISTR0="["Display=\\TUSC2012.TALISKERUTAH.LOCAL\"]MSWNET:["SMS_SITE=001"]\\TUSC2012.TALISKERUTAH.LOCAL\" ISTR1="" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=1 AID0=404 AVAL0="["Display=\\TUSC2012.TALISKERUTAH.LOCAL\"]MSWNET:["SMS_SITE=001"]\\TUSC2012.TALISKERUTAH.LOCAL\" SMS_DISTRIBUTION_MANAGER 3/28/2013 11:48:10 AM 4008 (0x0FA8)
    STATMSG: ID=9503 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=TUSC2012.TALISKERUTAH.LOCAL SITE=001 PID=2728 TID=4008 GMTDATE=Thu Mar 28 17:48:10.084 2013 ISTR0="["Display=\\TUSC2012.TALISKERUTAH.LOCAL\"]MSWNET:["SMS_SITE=001"]\\TUSC2012.TALISKERUTAH.LOCAL\" ISTR1="" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=1 AID0=404 AVAL0="["Display=\\TUSC2012.TALISKERUTAH.LOCAL\"]MSWNET:["SMS_SITE=001"]\\TUSC2012.TALISKERUTAH.LOCAL\" SMS_DISTRIBUTION_MANAGER 3/28/2013 11:48:10 AM 4008 (0x0FA8)
    ConfigurePXE SMS_DISTRIBUTION_MANAGER 3/28/2013 11:48:10 AM 4008 (0x0FA8)
    CcmInstallPXE SMS_DISTRIBUTION_MANAGER 3/28/2013 11:48:10 AM 4008 (0x0FA8)
    RegQueryValueExW failed for Software\Microsoft\SMS\DP, PxeInstalled SMS_DISTRIBUTION_MANAGER 3/28/2013 11:48:10 AM 4008 (0x0FA8)
    RegReadDWord failed; 0x80070002 SMS_DISTRIBUTION_MANAGER 3/28/2013 11:48:10 AM 4008 (0x0FA8)
    Running: C:\Program Files\Microsoft Configuration Manager\bin\x64\vcredist_x64.exe /q /l C:\Program Files\Microsoft Configuration Manager\bin\x64\vcredist.log SMS_DISTRIBUTION_MANAGER 3/28/2013 11:48:10 AM 4008 (0x0FA8)
    Waiting for the completion of: C:\Program Files\Microsoft Configuration Manager\bin\x64\vcredist_x64.exe /q /l C:\Program Files\Microsoft Configuration Manager\bin\x64\vcredist.log SMS_DISTRIBUTION_MANAGER 3/28/2013 11:48:10 AM 4008 (0x0FA8)
    Run completed for: C:\Program Files\Microsoft Configuration Manager\bin\x64\vcredist_x64.exe /q /l C:\Program Files\Microsoft Configuration Manager\bin\x64\vcredist.log SMS_DISTRIBUTION_MANAGER 3/28/2013 11:48:14 AM 4008 (0x0FA8)
    Created the DP mutex key for WDS. SMS_DISTRIBUTION_MANAGER 3/28/2013 11:48:14 AM 4008 (0x0FA8)
    Finding Wimgapi.Dll SMS_DISTRIBUTION_MANAGER 3/28/2013 11:48:14 AM 4008 (0x0FA8)
    MsiEnumRelatedProducts failed SMS_DISTRIBUTION_MANAGER 3/28/2013 11:48:14 AM 4008 (0x0FA8)
    FindProduct failed; 0x80070103 SMS_DISTRIBUTION_MANAGER 3/28/2013 11:48:14 AM 4008 (0x0FA8)
    MsiEnumRelatedProducts failed SMS_DISTRIBUTION_MANAGER 3/28/2013 11:48:14 AM 4008 (0x0FA8)
    FindProduct failed; 0x80070103 SMS_DISTRIBUTION_MANAGER 3/28/2013 11:48:14 AM 4008 (0x0FA8)
    GetFileAttributesW failed for SMS_DISTRIBUTION_MANAGER 3/28/2013 11:48:14 AM 4008 (0x0FA8)
    FindWimgapiDll failed; 0x80070002 SMS_DISTRIBUTION_MANAGER 3/28/2013 11:48:14 AM 4008 (0x0FA8)
    Running: msiexec.exe /quiet /i c:\program files\microsoft configuration manager\wim\wimgapi.msi /log c:\program files\microsoft configuration manager\wim\wimgapi.log SMS_DISTRIBUTION_MANAGER 3/28/2013 11:48:14 AM 4008 (0x0FA8)
    Waiting for the completion of: msiexec.exe /quiet /i c:\program files\microsoft configuration manager\wim\wimgapi.msi /log c:\program files\microsoft configuration manager\wim\wimgapi.log SMS_DISTRIBUTION_MANAGER 3/28/2013 11:48:14 AM 4008 (0x0FA8)
    Sleep 30 minutes... SMS_DISTRIBUTION_MANAGER 3/28/2013 11:48:29 AM 4668 (0x123C)
    Created policy provider trigger for ID 16777217 SMS_DISTRIBUTION_MANAGER 3/28/2013 11:48:29 AM 4656 (0x1230)
    Sleep 30 minutes... SMS_DISTRIBUTION_MANAGER 3/28/2013 11:48:34 AM 4668 (0x123C)
    Sleep 30 minutes... SMS_DISTRIBUTION_MANAGER 3/28/2013 11:48:39 AM 4668 (0x123C)

    HI again, sorry for the late reply.
    By saying that WDS don't get configured, I mean that when i enabled the PXE functionality, the WDS role got installed but the folder remote install wasn't created.
    I ahve now actually gone back to an earlier snapshot from before I started play with the PXE settings of the VM and now nothing happens when activating PXE on the distribution point, but not even the smspxe.log is created.
    The Account used is a local admin and the distribution point is located on the primary site server.
    EDIT: in the events log, it states the following:SMS_SITE_COMPONENT_MANAGER on computer XXX.XXXX.XXX reported: SIte comoponent Manger failed to to install on this site system.
    On error (source: MsiInstaller) below:
    Product Application Web Service -- Internal Error 25001. 80070490
    I havent mentioned it earlier, but the Server OS is Server 2012.
    I hope this might help you help me :)
     

  • Adobe Flash appears to be installing with SCCM 2012 deployment, but ActiveX is missing

    I have found that even though SCCM 2012 deployment has installed flash, I later find that Active X is missing and that it is missing a registry key ?
    HKLM:\Software\Microsoft\Macromed\FlashPlayerActiveX
    Anybody have this problem?

    Yes, look at http://forums.adobe.com/thread/1447047

  • SCCM 2012 R2 - Updates not installing

    Hi all,
    I have a SCCM 2012 R2 setup at a customer which has problems with distributing updates to the Windows 7 computers in the environment. The update group (with updates that are 100% sure required) is deployed to some test computers but the updates don't get
    installed. It is also configured to be able to install the updates without looking at any maintenance windows.  I see in the reporting that the updates are required, so in my opinion they should get installed.
    I've checked the registry and the Windows Updates registry keys are pointing towards the right server (my SCCM primary site server). I've created a new software update group with fewer updates, same problem. 
    What I find in the UpdatesDeployment.log on one of the test machines is rather strange:
    Assignment {8209BD9C-A86C-460B-99B3-CD6364F8BD1B} has total CI = 2
    UpdatesDeploymentAgent 29/09/2014 15:21:05
    1244 (0x04DC)
    Assignment ({8209BD9C-A86C-460B-99B3-CD6364F8BD1B}) reconnected to the existing job ({779CA9E2-ABB8-43E1-B8AE-F4A94BA8C761}) successfully.
    UpdatesDeploymentAgent 29/09/2014 15:21:05
    1244 (0x04DC)
    Assignment {c076f100-c2f7-43f9-a3f9-51fd33872b94} has total CI = 216
    UpdatesDeploymentAgent 29/09/2014 15:21:05
    1244 (0x04DC)
    Assignment ({c076f100-c2f7-43f9-a3f9-51fd33872b94}) reconnected to the existing job ({A9758363-1871-4BD9-86D9-1BE0D82531AE}) successfully.
    UpdatesDeploymentAgent 29/09/2014 15:21:05
    1244 (0x04DC)
    OnPolicyModify for assignment ({8209BD9C-A86C-460B-99B3-CD6364F8BD1B})...
    UpdatesDeploymentAgent 29/09/2014 15:23:18
    2740 (0x0AB4)
    Work in progress for assignment {8209BD9C-A86C-460B-99B3-CD6364F8BD1B}, forced trigger (TriggerEnforce) will be attempted when done
    UpdatesDeploymentAgent 29/09/2014 15:23:18
    2740 (0x0AB4)
    EnumerateUpdates for action (UpdateActionInstall) - Total actionable updates = 0
    UpdatesDeploymentAgent 29/09/2014 15:30:32
    4532 (0x11B4)
    EnumerateUpdates for action (UpdateActionInstall) - Total actionable updates = 0
    UpdatesDeploymentAgent 29/09/2014 15:30:32
    4000 (0x0FA0)
    Message received: '<?xml version='1.0' ?><SoftwareUpdatesMessage MessageType='EvaluateAssignments'><UseCachedResults>False</UseCachedResults></SoftwareUpdatesMessage>'
    UpdatesDeploymentAgent 29/09/2014 15:46:47
    4836 (0x12E4)
    Removing scan history to force non cached results
    UpdatesDeploymentAgent 29/09/2014 15:46:47
    4836 (0x12E4)
    Assignment({8209BD9C-A86C-460B-99B3-CD6364F8BD1B}) already in progress state (AssignmentStateDetecting). No need to evaluate
    UpdatesDeploymentAgent 29/09/2014 15:46:47
    4836 (0x12E4)
    Assignment({c076f100-c2f7-43f9-a3f9-51fd33872b94}) already in progress state (AssignmentStateDetecting). No need to evaluate
    UpdatesDeploymentAgent 29/09/2014 15:46:47
    4836 (0x12E4)
    Evaluation initiated for (0) assignments. UpdatesDeploymentAgent
    29/09/2014 15:46:47 4836 (0x12E4)
    Message received: '<?xml version='1.0' ?><SoftwareUpdatesMessage MessageType='EvaluateAssignments'><UseCachedResults>True</UseCachedResults></SoftwareUpdatesMessage>'
    UpdatesDeploymentAgent 29/09/2014 17:06:31
    6032 (0x1790)
    Assignment({8209BD9C-A86C-460B-99B3-CD6364F8BD1B}) already in progress state (AssignmentStateDetecting). No need to evaluate
    UpdatesDeploymentAgent 29/09/2014 17:06:31
    6032 (0x1790)
    Assignment({c076f100-c2f7-43f9-a3f9-51fd33872b94}) already in progress state (AssignmentStateDetecting). No need to evaluate
    UpdatesDeploymentAgent 29/09/2014 17:06:31
    6032 (0x1790)
    Evaluation initiated for (0) assignments. UpdatesDeploymentAgent
    29/09/2014 17:06:31 6032 (0x1790)
    CUpdateAssignmentsManager received a SERVICEWINDOWEVENT START Event
    UpdatesDeploymentAgent 29/09/2014 22:00:00
    3240 (0x0CA8)
    Suspend activity in presentation mode is selected
    UpdatesDeploymentAgent 29/09/2014 22:00:00
    3240 (0x0CA8)
    At least one user has elected to suspend non-business hours activity when in presentation mode. Checking for presentation mode.
    UpdatesDeploymentAgent 29/09/2014 22:00:00
    3240 (0x0CA8)
    Proceeding to non-business hours activites as presentation mode is off.
    UpdatesDeploymentAgent 29/09/2014 22:00:00
    3240 (0x0CA8)
    Auto install during non-business hours is disabled or never set, selecting only scheduled updates.
    UpdatesDeploymentAgent 29/09/2014 22:00:00
    3240 (0x0CA8)
    A user-defined service window(non-business hours) is available. We will attempt to install any scheduled updates.
    UpdatesDeploymentAgent 29/09/2014 22:00:00
    3240 (0x0CA8)
    Attempting to install 0 updates UpdatesDeploymentAgent
    29/09/2014 22:00:00 3240 (0x0CA8)
    No actionable updates for install task. No attempt required.
    UpdatesDeploymentAgent 29/09/2014 22:00:00
    3240 (0x0CA8)
    Updates could not be installed at this time. Waiting for the next maintenance window.
    UpdatesDeploymentAgent 29/09/2014 22:00:00
    3240 (0x0CA8)
    CUpdateAssignmentsManager received a SERVICEWINDOWEVENT END Event
    UpdatesDeploymentAgent 30/09/2014 5:00:00
    3132 (0x0C3C)
    No current service window available to run updates assignment with time required = 1
    UpdatesDeploymentAgent 30/09/2014 5:00:00
    3132 (0x0C3C)
    Attempting to cancel any job started at non-business hours.
    UpdatesDeploymentAgent 30/09/2014 5:00:00
    3132 (0x0C3C)
    There are several updates found in the assignment (2 in the first, 216 in the second). Some of them are required but still the log says: No actionable updates. 
    The SERVICEWINDOWEVENT events originate from the business hours set in the client settings I suppose?
    But I don't get why the log sais "No current service window available to run updates assignment with time required = 1"
    Any advice?
    Kind regards,
    Bert

    Hi,
    What's the status in Software Center on clients?
    Please check ScanAgent.log, WUAHandler.log, UpdatesHandler.log and Windowsupdate.log on the client to see if there is any helpful information.
    Best Regards,
    Joyce
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • SCCM 2012 Software Updates not installing (bothh Windows patches & 3rd party updates)

    Using SCCM 2012 R2, I am having a problem getting Windows updates to install.  Applications published to people work, and basic software installations published to machines for a straight install work.  However, both Windows patches and Adobe patches
    fail to install on clients. I have imported the Adobe catalog into SCUP, and publish through WSUS. I can see the Adobe patches and Windows patches in SCCM, and can publish them. However, in deployment status out of 4 machines in my test group the Windows patches
    installed on 1 and the other 3 are still in Unknown status with category of "Client check passed/Active". However, none of them are installing the patch - they don't even seem to try.  All of those are Windows 7 PCs, incidentally. On Adobe patches,
    one PC fails and the other 3 machines still sit in Unknown status.  Certificates are distributed,
    Any ideas what might cause the deployment to not push some targets, even when it's past the deadline?
    Thanks,
    Andy Maslin

    An unknown status means that the clients are not reporting back to ConfigMgr correctly. This is often due to the WUA not pointing at the correct WSUS instance. You can verify this by examining the WUAHandler.log on one of those clients and it will clearly
    indicate an issue with this which in turn is often due to a group policy overriding the ConfigMgr behavior.
    Jason | http://blog.configmgrftw.com

  • 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

  • Error while Creating Prestage Content File for Application in SCCM 2012

    Hi All,
    I am using SCCM 2012 SP1 on Win 2K8 SP R2 box. Database is SQL 2008 R2 SP1 CU6. I have trying to create Prestaged content for Applications for extracting pkgx files on DP's. I am getting the below error message for random applications(not for all applications
    but for random applications).
    Content that will be included into the prestaged content file (1):
    Citrix Receiver 13.3.0.55
    Export all dependencies: 'Yes'
    Selected distribution points: 'MPSERVER.GS.WORLD.PRESS.COM'
    Prestaged content file: 'G:\pkgxfiles\Application\Citrix Receiver 13.3.0.55.pkgx'
     Error: Distribution is currently in progress for selected packages: HM0000D9. Please wait and try again
    But if I see this application is successfully distributed to 2 of the distributions points long ago. If I reupdate the Distribution point and then again try to create prestaged content for this application then pkgx file for that application is getting
    created.
    Why this is happening and how can I resolve this?
    Thanks & Regards Uttam

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

  • Live meeting v806362.215 won't install with sccm 2012

    I'm trying to install Live Meeting 2007 client v806362.215 under SCCM 2012 application model using the .MSI.  "I get a message that says the installer was interrupted before Microsoft Office Live Meeting 2007 could be installed.  You need
    to restart the installer to try again." (see attached)
    researching the message indicates that there was an issue with the elevated permissions (system account) that the install was trying to use.
    Any help would be appreciated.

    appenforce.log
    +++ Starting Install enforcement for App DT "Microsoft Office Live Meeting 2007 - Windows Installer (*.msi file)" ApplicationDeliveryType - ScopeId_A835AB42-7EC7-4BDA-9149-4E1E591EDDE9/DeploymentType_01627331-bd97-4dc5-8605-9bfe3dafc7da, Revision - 20, ContentPath
    - C:\windows\ccmcache\77, Execution Context - System AppEnforce 3/18/2014 2:16:54 PM 6312 (0x18A8)
        A user is logged on to the system. AppEnforce 3/18/2014 2:16:54 PM 6312 (0x18A8)
        Performing detection of app deployment type Microsoft Office Live Meeting 2007 - Windows Installer (*.msi file)(ScopeId_A835AB42-7EC7-4BDA-9149-4E1E591EDDE9/DeploymentType_01627331-bd97-4dc5-8605-9bfe3dafc7da, revision 20) for system. AppEnforce 3/18/2014
    2:16:54 PM 6312 (0x18A8)
    +++ Application not discovered. [AppDT Id: ScopeId_A835AB42-7EC7-4BDA-9149-4E1E591EDDE9/DeploymentType_01627331-bd97-4dc5-8605-9bfe3dafc7da, Revision: 20] AppEnforce 3/18/2014 2:16:54 PM 6312 (0x18A8)
        App enforcement environment:
     Context: Machine
     Command line: msiexec /i "lmconsole.msi" /l*v c:\users\public\install.log
     Allow user interaction: Yes
     UI mode: 1
     User token: null
     Session Id: 1
     Content path: C:\windows\ccmcache\77
     Working directory:  AppEnforce 3/18/2014 2:16:54 PM 6312 (0x18A8)
        Prepared working directory: C:\windows\ccmcache\77 AppEnforce 3/18/2014 2:16:54 PM 6312 (0x18A8)
    Found executable file msiexec with complete path C:\windows\system32\msiexec.exe AppEnforce 3/18/2014 2:16:54 PM 6312 (0x18A8)
        Prepared command line: "C:\windows\system32\msiexec.exe" /i "lmconsole.msi" /l*v c:\users\public\install.log AppEnforce 3/18/2014 2:16:54 PM 6312 (0x18A8)
    Valid MSI Package path = C:\windows\ccmcache\77\lmconsole.msi AppEnforce 3/18/2014 2:16:54 PM 6312 (0x18A8)
        Advertising MSI package [C:\windows\ccmcache\77\lmconsole.msi] to the system. AppEnforce 3/18/2014 2:16:54 PM 6312 (0x18A8)
        Post install behavior is BasedOnExitCode AppEnforce 3/18/2014 2:16:55 PM 6312 (0x18A8)
        Waiting for process 6284 to finish.  Timeout = 120 minutes. AppEnforce 3/18/2014 2:16:55 PM 6312 (0x18A8)
        Process 6284 terminated with exitcode: 1603 AppEnforce 3/18/2014 2:16:59 PM 6312 (0x18A8)
        Looking for exit code 1603 in exit codes table... AppEnforce 3/18/2014 2:16:59 PM 6312 (0x18A8)
        Unmatched exit code (1603) is considered an execution failure. AppEnforce 3/18/2014 2:16:59 PM 6312 (0x18A8)
    ++++++ App enforcement completed (5 seconds) for App DT "Microsoft Office Live Meeting 2007 - Windows Installer (*.msi file)" [ScopeId_A835AB42-7EC7-4BDA-9149-4E1E591EDDE9/DeploymentType_01627331-bd97-4dc5-8605-9bfe3dafc7da], Revision: 20, User SID: ] ++++++ AppEnforce 3/18/2014
    2:16:59 PM 6312 (0x18A8)

  • Installing new SCCM 2012 infrastructure over an existing SCCM 2012 Infrastructure

    Greetings,
    I currently have a standalone SCCM 2012 environment running in production.  This implementation isn't in a hierarchy and doesn't support Macs (non-PKI/HTTPS infrastructure), but is managing 1500 PC clients beautifully.
    However, we have some sites out-of-state that need to be in their own Primary Site, as well as Macs across both sites need managing as well.  
    I have made a new environment entirely on 2012 infrastructure (2012 SCCM, 2012 Server, and 2012 SQL).  This includes a CAS at the top, a PRI for my current site, and SQL for both (all on different hardware, new names, etc.).  I've installed a PKI
    infrastructure, and it's currently working fine managing the three servers it contains.
    I need to start migrating all of the clients and services to the 'new' SCCM implementation, but pushing the SCCM client installs to over the old SCCM doesn't seem to change any settings.  Nor does changing site settings in the control panel of a client.
    Anyone know how to configure new site settings without re-installing the SCCM clients on the 'old' infrastructure?
    Thanks~

    Have you ever used group policy for site assignment? This caught me out when upgrading to a new site code. If it has ever been used, it brands the registry and no amount of tinkering in the configuration manager console or client installation methods could
    fix it.
    To fix our site, I removed the offending GPO settings and set the 'GPRequestedSiteAssignmentCode', 'GPSiteAssignmentRetryDuration(Hours)' and 'GPSiteAssignmentRetryInterval(Min)' items under 'HKLM\Software\Microsoft\SMS\Mobile Client' to delete via GPP.
    Details and symptoms I found at http://blog.coretech.dk/heh/new-agents-will-not-re-assign-to-configmgr-2012-site/.
    Jilhad,
    Looks like most of the machines I was testing were indeed installed via GP before I was able to install via the console.  
    Deleting those registry keys allowed me to push the install over the old environment using 'Install Client' from the 'Devices' console, specifying to re-install client.
    Now, I just have to figure out a script to remove those keys via SCCM
    ***Most of you were wondering why I was installing a CAS environment, it's really because this site doesn't conform all that well to our policies, and they will ultimately be administering their own environment.  It seemed to me that it would be easier
    for me to delegate control/permissions/data using a hierarchy.  It was a tough decision, ***
    Thank you all for your help!

  • Shockwave 12.0.0.112 MSI errors when installing via SCCM 2012

    I am experiencing the same type of issue i have entered a bug report for Flash Player.
    Upon pushing the vendor provided MSI via SCCM 2012, the uninstall of the older version 11.6.8.638 which is pushed enterprise wide, is removed from the machine, but the installation of the new 12.0.0.112 is not actually installing.  The log file that was on the machine from the command line we use shows this error:
    MSI (s) (A8:FC) [08:02:03:374]: Product: Adobe Shockwave Player 11.5 -- Error 2753.The File 'swhelper_1159620.exe' is not marked for installation.
    Anyone else seeing this happening or getting the same issue when installing Shockwave 12.0.0.112 with the vendor provided MSI for distribution?

    JVENGLEY wrote:
    MSI (s) (A8:FC) [08:02:03:374]: Product: Adobe Shockwave Player 11.5 -- Error 2753.The File 'swhelper_1159620.exe' is not marked for installation.
    Anyone else seeing this happening or getting the same issue when installing Shockwave 12.0.0.112 with the vendor provided MSI for distribution?
    I didn't have any installation issue on Windows XP 32 bit and Windows 7 64 bit.
    You didn't say anything about your OS, btw.
    And that swhelper_1159620.exe is a legacy (it's not related to the previous v11.6 or the current v12 installations).
    For future, to get rid of installation issues, use the UNinstaller first of all:
    http://www.adobe.com/shockwave/download/alternates/#sp
    cheers

  • SCCM 2012 Software Update Management for Windows Servers and how to automatic set SCOM maintenance mode?

    Hi,
    We planning to go one level higher to automat and have more dynamic Software Update Management for Windows Servers. We have SCCM 2012 R2, SCOM 2012 R2 and SCO 2012 R2.
    Our plan is to pur server in an AD-Group to get Update Schedule, from the servers will be importet to an Collection for Automatic Update and reboot. If I understand Everything right SCOM can't read AD-Group and put then in an Schedule maintenance mode. SCOM
    can read reg value as exempel.
    IS there any smar way to make the SCOM Maintenance Mode Schedule dynamic?
    I found this
    http://www.scom2k7.com/scom-2012-maintenance-mode-scheduler/?
    /SaiTech

    You could use Orchestrator to put the servers from a specific collection, or AD group, in maintenance mode in SCOM. For an example see:
    http://www.systemcentercentral.com/orchestrator-how-to-scom-maintenance-mode-for-windows-computers-in-an-sccm-collection/
    My Blog: http://www.petervanderwoude.nl/
    Follow me on twitter: pvanderwoude

  • SCCM 2012 SP1 Update to CU5 not showing version 1600 for clients updated !

    Recently upgraded SCCM 2012 SP1 and its showing a version of 5.0.7804.1600 as it should be. Pushed out the CU 5 client manager update to few machines and they are also showing .1600 as the version, however in SCCM 2012 manager itself it is not updating the
    status of those machines from say .1000 or .1400 to .1600. Why is this happening and any solution for it ? I have also updated the CM on the server hosting the SCCM and is current to .1600 version.

    Because the client agent version is returned from clients via heartbeat discovery which only occurs by default every 7 days. Thus, you need to be patient. Note that I generally recommend reducing the heartbeat cycle to at least once a day partly for
    this reason.
    Jason | http://blog.configmgrftw.com | @jasonsandys

Maybe you are looking for