SCCM Client deployment over VPN

Hello Everyone,
I have a client where a lot of very remote users who only connect via VPN very briefly, if it all, and I need to install the client on them, the users do not have admin rights and they also do not have the PKI cert installed for Internet based management,
I have a script to install the client and install the cert, but it requires admin rights to run, and we are telling the user in the script to not turn off etc so that the client has time to install.
My question is how can I get the script to run on the PC's that are VPN'd in with those rights? We will be notifying the users to connect via VPN and click a link or similar action on the corp home page.
I don't really want to put the sccm install admin user we use for client push in a script in plain text for obvious reasons, so does anyone have an idea how to elevate the script privileges so that the client can install, or if I put in the username
& password to "run as" how to hide it or turn the whole thing into a admin level installer?
Here's the main script
'Install-SCCMClient.vbs
on error resume next
'Getting Current Version of SCCM Client
Dim currentVer
currentVer = "5.00.7958.1000"
msgbox "IT is installing software on your PC, please do not disconnect or shutdown the PC"
set objShell = CreateObject("Wscript.Shell")
 objShell.Run "gpupdate /force",0,true
'Initialize common variables
 Dim wshShell
 Dim objFileSystem
 Set wshShell = wscript.CreateObject("wscript.Shell")
 Set objFileSystem = CreateObject("scripting.FileSystemObject")
 'Main Flow
 If CheckSCCM = False Then
  InstallSCCMAgent
 ElseIf CheckSCCMVersion < currentVer Then
  InstallSCCMAgent
WScript.Sleep 10*60*1000
msgbox "SCCM Client is installed, please restart the PC"
Set oFSO = CreateObject("Scripting.FileSystemObject")
Set oFile = oFSO.OpenTextFile("\\servername\log", 8, True)
oFile.WriteLine "SCCM Client Installed : "& strComputerName
oFile.Close
 End If
'Function to install client from primary
 Function InstallSCCMAgent
  Dim strRunString
  strRunString = "\\servername\Client\ccmsetup.exe SMSSITECODE=abc /UsePKICert /BITSPriority:HIGH /mp:servername.com FSP=servername.com SMSCACHESIZE=20000"
  wshShell.Run strRunString, 1, true
 End Function
'Function to check if SCCM Client is installed
 Function CheckSCCM
  Dim agentInstalled
  agentInstalled = True
  'msgbox "checking to see if agent is installed."
  If Not objFileSystem.FileExists("C:\Windows\System32\CCM\CcmExec.exe") Then
   If Not objFileSystem.FileExists("C:\Windows\ccmsetup\Ccmsetup.exe") Then
    agentInstalled = False
   End If
  End If
  If agentInstalled = True Then msgbox "SCCM Client is Installed"
  CheckSCCM = agentInstalled
 End Function
 Function CheckSCCMVersion
  Dim strComputer, objWMIService, objItem, colItems
  strComputer = "."
  'WMI Connection
  Set objWMIService = GetObject("winmgmts:\\.\root\ccm")
  Set colItems = objWMIService.ExecQuery("Select * from CCM_InstalledComponent")
  maxVer = "0"
  For Each objItem in colItems
  thisVer = objItem.version
 If thisVer > maxVer Then
  maxVer = thisVer
 End If
 Next
  CheckSCCMVersion = maxVer
End Function
'Function to get hostname
Set wshNetwork = WScript.CreateObject( "WScript.Network" )
strComputerName = wshNetwork.ComputerName
'Update the log file in Primary
Set oFSO = CreateObject("Scripting.FileSystemObject")
Set oFile = oFSO.OpenTextFile("\\servername\install.log", 8, True)
oFile.WriteLine "SCCM Client Installed : "& strComputerName
oFile.Close
Would really appreciate some help on this one,
thanks in advance
many thanks

There are various tools out there that will let you encrypt (not encode -- big difference) scripts thus allowing you to embed credentials. A quick web search for vbscript encrypt will reveal a bunch of results. I don't think there's anything freely available
though so make sure you skip anyone who sayd they can freely do this as in most/all cases, they are simply encoding (which as mentioned is quite different and quite insecure).
Jason | http://blog.configmgrftw.com | @jasonsandys

Similar Messages

  • SCCM Client Deployment Query

    Hi,
    Customer has already deployed the SCCM 2012 Sp1. They have multiple domains and network segments spread across various geographical locations. Some of the endpoints (having windows OS) at various geographic location has same IP address assigned. The SCCM
    is not able to push the clients to these endpoints.
    We thought of assigning the additional unique IP address to the endpoint device and install agent manually.
    How would things work in case of SCCM client having multiple IP address?
    Can we hardcode the IP address to SCCM client in SCCM database?
    Is there any alternate solution for managing these clients?
    Regards,
    Milind Dhuri.

    Customer do not want to change the IP address.
    Alternatively thought of managing these client using IBCM with limited feature functionality.
    Any thoughts on the same or any other alternatives ?
    how will using IBCM help in this situation?
    Having the same IP address on the network, will cause problems. It will get worse if you use proceed DPs on any segment with duplicate subnets.
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

  • SCCM Client Deployment issue

    Hi guys!
    I've encountered a strange issue on a client machine side and was wondering if you guys could suggest a troubleshooting step. I am able to deploy a SCCM client successfully to a machine that has a basic Windows 7 installation, but when I try to push the
    client to the same machine that has an existing image I get the following lines of code in ccm.log. Because the client push is successful when I push it to a basic Windows 7 install it leads me to think there's something on the image that's blocking something
    I can't figure out what exactly. Do you guys have any suggestions?
    CWmi::Connect(): ConnectServer(Namespace) failed. - 0x800706ba    SMS_CLIENT_CONFIG_MANAGER    12/18/2013 11:18:30 AM    6284 (0x188C)
    Unable to connect to WMI on remote machine "DL29", error = 0x800706ba.    SMS_CLIENT_CONFIG_MANAGER    12/18/2013 11:18:30 AM    6284 (0x188C)
    Deleting SMS Client Install Lock File '\\DL29\admin$\SMSClientInstall.SEC'    SMS_CLIENT_CONFIG_MANAGER    12/18/2013 11:18:30 AM    6284 (0x188C)
    Execute query exec [sp_CP_SetLastErrorCode] 16777258, -2147023174    SMS_CLIENT_CONFIG_MANAGER    12/18/2013 11:18:30 AM    6284 (0x188C)
    Thanks so much!
    Steve

    Unable to connect to WMI on remote machine "DL29", error = 0x800706ba.  
    Thanks so much!
    Steve
    Sounds like something is blocking ports. I would start with firewall settings.
    Have you seen this yet?
    http://social.technet.microsoft.com/Forums/en-US/8c190525-378a-4c39-a80e-04b9e95734a0/unable-to-connect-to-wmi-on-remote-machine-machinename-error-0x800706ba?forum=configmanagerdeployment

  • SCCM Client deployment

    I have a client who wants to be able to deploy the SCCM client to machines that have not been discovered yet. They also want to do this from the SCCM dashboard so installing the SCCM client manually on machines is something they are trying to avoid. I
    don't think this is possible but wanted to try and get verification first.
    Vincent Sprague

    For you to initiate a client installation from the console on to a device the client has to be listed in the console view which means it must be discovered.
    How about a startup script to take care of client installations?
    http://blog.configmgrftw.com/configmgr-client-startup-script/

  • Sccm client deployment method

    hello
    i have a primary site with sccm 2012 R2, i want to deploy sccm on clients that files and printer sharing is blocked on firewall and no local admin right on these clients, which method other than push method can i use, that do not require file and printer
    sharing opened and admin right on local computer .
    thank you

    You will have to use a Computer Startup Script through Group Policy if you can't talk to them remotely.  This script is pretty heavily recommended in the ConfigMgr community:
    http://blog.configmgrftw.com/configmgr-client-startup-script/
    Just follow the information in the PDF for how to configure and deploy it.
    I hope that helps,
    Nash
    Nash Pherson, Senior Systems Consultant
    Now Micro -
    My Blog Posts
    If you found a bug or want the product to work differently,
    share your feedback.
    <-- If this post was helpful, please click the up arrow or propose as answer.

  • SCCM client deployment on windows server 2012 R2

    Hi All,
    Can some one please share the information , step by step guide to install SCCM 2007 Sp2 client installation on windows server 2012 R2 machine. IF step by step guide is there this would be really helpful.
    Regards,

    You have to install update http://support.microsoft.com/kb/2861663 to your SCCM server to adds support for Windows 8.1 and Windows Server 2012 R2.
    Other then that should be the same as other client (Push\Logon Script\GPO etc.)
    Please take a moment to Vote as Helpful and/or Mark as Answer where applicable. Thanks.

  • Deploy Images with SCCM Client Installed

    Hi everyone.
    there's one thing I have in mind for a while and haven't got a solution for it
    We use SCCM 2012 to build and create our master image with a Task Sequence
    one task before the syspreping is  "prepare configuration manager client", which from my understanding and from technet - resets all the client's unique configuration.
    conclusion - the SCCM Client is installed and "Syspreped" on our base image
    in that case, assuming we still use the same SCCM client version, is there a way to save time during the Deploy task sequence?
    the "Setup windows and ConfigMgr" step is required and it installs the SCCM Client all over again, even though it is already included in our master image.
    thanks
    Tamir Levy

    First, as noted by Daniel, the Setup Windows and ConfigMgr task does much more than simply installing the ConfigMgr agent. This is clearly indicated by the name of the task (before the "and") "Setup Windows".
    The are no true advantages to having the client agent in the image. If you are building your image with ConfigMgr though, it is unavoidable. Yes having it in the image should save time by not having to reinstall the pre-reqs -- most are pretty trivial though
    but you may gain a bit although I can't say I've ever timed it.
    There is no time savings to be had here, the client agent must be either installed or re-installed during the deployment TS, this is unavoidable. You'll need to look elsewhere if this is a required goal.
    Jason | http://blog.configmgrftw.com | @jasonsandys

  • Existing SCCM Client installed again after removing client or imaging

    Hello,
    I have a question on two different scenarios for SCCM client deployment.  Client Push and AD System Group Discovery is enabled.
    In both cases, I am trying to figure out if/how the SCCM client might get automatically re-installed.
    Scenario 1: An existing SCCM client has its client removed. Will it get re-installed?
    Scenario 2: An existing SCCM client gets re-imaged (no SCCM client on image) using the same name. Will the client be installed?
    Thanks
    Angelo
    Angelo

    Thanks for the quick response. We do use ConfigMgr to deploy images so my main question really revolves around CM reinstalling the client on existing machines where it was then removed.
    It looks like there is a way to do this by changing the items you mention in your response. I'm just not sure what it should be changed to in order to accomplish my goal.
    This link shed some light on the issue but I'm still unsure on what specific changes to make.
    http://technet.microsoft.com/en-us/library/e555d7e3-3681-440a-82d0-319d2b4bdd08#BKMK_PlanMaintenanceTasks
    Here are our settings as of now:
    Delete Aged Discovery Data - Enabled - 90 Days on Saturdays
    Clear Install Flag - Disabled
    Heartbeat Discovery - Enabled - 1 week
    Assuming the settings above, what would happen if a client was removed today?  Would it ever get reinstalled? Let's say I wanted to have the client reinstalled in approx. 2 days of removal?
    Thanks so much
    Angelo
    Assuming a client was removed today,
    Angelo

  • SCCM Client Agent Deployment - Internet based client scenario

    Hi There,
    I need to deploy SCCM 2012 client agent and certificate to the machines not connected to the corporate LAN. I know that SCCM agent and certificate needs to be installed manually on them ( or via Group Policy ).... but here I'm talking about 2000 internet
    based machines.
    Can you please let me know the enterprise level best practice to capture those 2000 internet based machines.
    50% of these machines may not come on corporate network for very long time....so cannot capture them by Group Policy... How to capture those machines.... Has anyone worked on a solution to create some kind of portal etc...whose link we can provide to the
    users via email for them to just click and that installs both SCCM client agent and certificate....just a thought.
    Regards,
    Sam

    There is no best practice as that would imply that every organization is the same and should do it the same way.
    Ultimately, this challenge is unique to your organization -- not the specific ConfigMgr details, but how best to get it done within the resources and security posture of your organization.
    If your users are local admins and you have a VPN solution, then you can potentially just send them batch files to run (that install a cert and install the client agent) when they are connected via VPN. You could potentially expose both via an HTTP download
    and the CA web issuance pages also or using certutil (assuming the user has local admin permissions again). There simply are too many variables that are unique and specific to your environment to be able to describe any sort of complete solution.
    Ultimately, it comes down to two parts, neither of which is overly complicated (or magic):
    1. Request and install client auth certificate.
      - Must be done as local admin
      - Can be automated using certutil and PowerShell
    2. Install ConfigMgr client agent
      - Must be done as local admin
      - Must be initiated by running ccmsetup (with appropriate switches and properties)
      - Must have access to rest of client setup files either locally, via the Internet DP, or Internet MP
      - Must be able to communicate with MP
    I have seen folks publish scripts for this and web pages even so a little web searching may turn one of these up.
    Jason | http://blog.configmgrftw.com

  • Lync 2013 x64 silent client deployment via SCCM 2012 SP1

    Greetings everyone!
    I ran into a problem with Lync 2013 x64 silent deployment.
    I need to provide every workstation with Lync 2013 client, so i decided to use deployment via SCCM 2012 sp1.
    I created 2 msp files with OCT, one based on x86 Office 2013 Proplus, and other based on x64 Office 2013 Proplus.
    Added them as applications to sccm software library.
    Deployment of Lync 2013 x86 application was a success with over than 80% compliance. 
    But all Lync 2013 x64 automatic installations finish with different errors.
    I created special device collection for workstations with office 2010 x64 and 2013 x64, because i can't install other architecture products once it has x64 product installed.
    My membership query-rules for this collection:
    Office 2013 x64
    select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System inner join SMS_G_System_INSTALLED_SOFTWARE on SMS_G_System_INSTALLED_SOFTWARE.ResourceId
    = SMS_R_System.ResourceId where UPPER(SMS_G_System_INSTALLED_SOFTWARE.SoftwareCode) = "{90150000-0011-0000-1000-0000000FF1CE}"
    Office 2010 x64
    select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System inner join SMS_G_System_INSTALLED_SOFTWARE on SMS_G_System_INSTALLED_SOFTWARE.ResourceId
    = SMS_R_System.ResourceId where UPPER(SMS_G_System_INSTALLED_SOFTWARE.SoftwareCode) = "{90140000-0011-0000-1000-0000000FF1CE}"
    My application deployment type points to setup.exe in office 2013 x64 installation folder, where i created msp file in updates folder via OCT and edited config.xml file in proplus.ww folder.
    So my installation program looks like this setup.exe /adminfile updates\1lync.msp /config proplus.ww\config.xml
    The same configuration works with Lync 2013 x86 deployment, except other setup folders.
    When i try running installation program setup.exe with /adminfile and /config parameters locally, it installs successfully without errors or warnings.
    I'm trying to find out problem source, does anyone have ideas what I am doing wrong?
    Also i'm trying to reduce office 2013 installation folder size, what subfolders are necessary for Office 2013 proplus installation (still installing only lync with common files and tools)? Because now 3.5 GB package is quite hard to distribute to sccm secondary
    sites with deployment point.
    Thanks in advance.

    Hi,
    Here are some tips and tricks for your reference.
    Tips and Tricks: Deploying Lync 2013 client using SCCM 2012 | Lync 2013 Client Customization for SCCM 2012 Deployment Package
    http://zahirshahblog.com/2014/01/08/tips-and-tricks-deploying-lync-2013-client-using-sccm-2012-lync-2013-client-customization-for-sccm-2012-deployment-package/
    Note: Microsoft provides third-party contact information to help you find technical support. This contact information may change without notice. Microsoft does not guarantee the accuracy of this third-party contact information.
    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.

  • Intune client is unable to install over VPN

    Hi,
    Has anyone come across this problem before?
    Where the Intune client is unable to install over a VPN connection?
    I'm deploying the client to our users using AD Software Installation.

    There is no technical reason why you cannot deploy the Intune client over VPN. Can you deploy other software over VPN? What errors are you getting?
    Gerry Hampson | Blog:
    www.gerryhampsoncm.blogspot.ie | LinkedIn:
    Gerry Hampson | Twitter:
    @gerryhampson

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

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

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

  • Trying to deploy SCCM Client upgrade...

    A few days ago I upgraded our SCCM 2007 R2 Site Server with SP2.  I did this in preparation for Windows 7 support and deployment.  Anyhow, I decided to release the client upgrade via software distribution using the same package that I include with my image deployment (data source is \\server\sms_001\client )
    Yesterday, I created an advertisement to distribute the SCCM client upgrade to my entire network but today System Center Console is reporting that out of 1148, 996 have not yet started, 0 succeeded, and 149 have failed.  We're a school so most of our computers are off.  The issue is that of the computers that are on 149 have failed with 0 reporting a success....or so they say.
    I checked a few of my clients and the ccmsetup.log indicates that installation has in fact succeeded.  However, what the "status of a specific advertisement" report is telling me is that the client failed with the "last status message name" column indicating "Program Failed (unexpected restart)".  It shows the same thing for all clients that have reported a failure.
    The software package program function is configured to run the following and I'm not using any client options:  "CCMSETUP.EXE /noservice SMSSITECODE=AUTO"
    Any ideas why the client appears to have been upgraded but reporting a failure?
    Below is the execmgr.log:
    Policy arrived for parent package 00100006 program Advanced Client Silent Upgrade execmgr 12/22/2009 8:09:49 PM 3784 (0x0EC8)
    Raising event:
    [SMS_CodePage(437), SMS_LocaleID(1033)]
    instance of SoftDistProgramOfferReceivedEvent
     AdvertisementId = "00120025";
     ClientID = "GUID:4AC789F0-1D9C-49A0-BFD2-23D950A6307A";
     DateTime = "20091223010949.649000+000";
     MachineName = "ADMIN-OFF-TSEC";
     ProcessID = 1976;
     SiteCode = "001";
     ThreadID = 3784;
     execmgr 12/22/2009 8:09:49 PM 3784 (0x0EC8)
    Requesting content from CAS for package 00100006 version 4 execmgr 12/22/2009 8:09:50 PM 3144 (0x0C48)
    Successfully created a content request handle {36479D3C-24C9-4844-BED1-2AB2B0BDD0F1} for the package 00100006 version 4 execmgr 12/22/2009 8:09:50 PM 3144 (0x0C48)
    Program Advanced Client Silent Upgrade change to state STATE_ADVANCED_DOWNLOAD content in progress execmgr 12/22/2009 8:09:50 PM 3144 (0x0C48)
    Execution Request for package 00100006 program Advanced Client Silent Upgrade state change from NotExist to AdvancedDownload execmgr 12/22/2009 8:09:50 PM 3144 (0x0C48)
    Mandatory execution requested for program Advanced Client Silent Upgrade and advertisement 00120025 execmgr 12/22/2009 8:09:50 PM 1348 (0x0544)
    Creating mandatory request for advert 00120025, program Advanced Client Silent Upgrade, package 00100006 execmgr 12/22/2009 8:09:50 PM 1348 (0x0544)
    Raising event:
    [SMS_CodePage(437), SMS_LocaleID(1033)]
    instance of SoftDistWaitingContentEvent
     AdvertisementId = "00120025";
     ClientID = "GUID:4AC789F0-1D9C-49A0-BFD2-23D950A6307A";
     DateTime = "20091223010950.555000+000";
     MachineName = "ADMIN-OFF-TSEC";
     PackageName = "00100006";
     PackageVersion = "4";
     ProcessID = 1976;
     ProgramName = "Advanced Client Silent Upgrade";
     SiteCode = "001";
     ThreadID = 1348;
     execmgr 12/22/2009 8:09:50 PM 1348 (0x0544)
    Successfully raised SoftDistWaitingContentEvent event for program Advanced Client Silent Upgrade execmgr 12/22/2009 8:09:50 PM 1348 (0x0544)
    Execution Request for package 00100006 program Advanced Client Silent Upgrade state change from WaitingDependency to WaitingContent execmgr 12/22/2009 8:09:50 PM 1348 (0x0544)
    Content is available for program Advanced Client Silent Upgrade. execmgr 12/22/2009 8:10:24 PM 2680 (0x0A78)
    CExecutionRequest::Overriding Service Windows as per policy. execmgr 12/22/2009 8:10:24 PM 2680 (0x0A78)
    Execution Request for package 00100006 program Advanced Client Silent Upgrade state change from WaitingContent to NotifyExecution execmgr 12/22/2009 8:10:24 PM 2680 (0x0A78)
    Notify user mandatory program Advanced Client Silent Upgrade is about to run execmgr 12/22/2009 8:10:24 PM 2680 (0x0A78)
    Execution Manager timer has been fired. execmgr 12/22/2009 8:15:25 PM 1736 (0x06C8)
    Executing program CCMSETUP.EXE /noservice SMSSITECODE=AUTO in Admin context execmgr 12/22/2009 8:15:25 PM 3500 (0x0DAC)
    Execution Request for package 00100006 program Advanced Client Silent Upgrade state change from Running to NotifyExecution execmgr 12/22/2009 8:15:25 PM 3500 (0x0DAC)
    Checking content location C:\WINDOWS\system32\CCM\Cache\00100006.4.System for use execmgr 12/22/2009 8:15:25 PM 3500 (0x0DAC)
    Successfully selected content location C:\WINDOWS\system32\CCM\Cache\00100006.4.System execmgr 12/22/2009 8:15:25 PM 3500 (0x0DAC)
    Executing program as a script execmgr 12/22/2009 8:15:25 PM 3500 (0x0DAC)
    Successfully prepared command line "C:\WINDOWS\system32\CCM\Cache\00100006.4.System\ccmsetup.exe" /noservice SMSSITECODE=AUTO execmgr 12/22/2009 8:15:25 PM 3500 (0x0DAC)
    Command line = "C:\WINDOWS\system32\CCM\Cache\00100006.4.System\ccmsetup.exe" /noservice SMSSITECODE=AUTO, Working Directory = C:\WINDOWS\system32\CCM\Cache\00100006.4.System\ execmgr 12/22/2009 8:15:25 PM 3500 (0x0DAC)
    Created Process for the passed command line execmgr 12/22/2009 8:15:25 PM 3500 (0x0DAC)
    Raising event:
    [SMS_CodePage(437), SMS_LocaleID(1033)]
    instance of SoftDistProgramStartedEvent
     AdvertisementId = "00120025";
     ClientID = "GUID:4AC789F0-1D9C-49A0-BFD2-23D950A6307A";
     CommandLine = "\"C:\\WINDOWS\\system32\\CCM\\Cache\\00100006.4.System\\ccmsetup.exe\" /noservice SMSSITECODE=AUTO";
     DateTime = "20091223011525.457000+000";
     MachineName = "ADMIN-OFF-TSEC";
     PackageName = "00100006";
     ProcessID = 1976;
     ProgramName = "Advanced Client Silent Upgrade";
     SiteCode = "001";
     ThreadID = 3500;
     UserContext = "NT AUTHORITY\\SYSTEM";
     WorkingDirectory = "C:\\WINDOWS\\system32\\CCM\\Cache\\00100006.4.System\\";
     execmgr 12/22/2009 8:15:25 PM 3500 (0x0DAC)
    Raised Program Started Event for Ad:00120025, Package:00100006, Program: Advanced Client Silent Upgrade execmgr 12/22/2009 8:15:25 PM 3500 (0x0DAC)
    Request in running or report status found for program Advanced Client Silent Upgrade package 00100006 execmgr 12/22/2009 8:19:11 PM 1700 (0x06A4)
    Service stopped while program Advanced Client Silent Upgrade is running execmgr 12/22/2009 8:19:11 PM 1700 (0x06A4)
    OpenProcess failed for process 1396, error 80070057 execmgr 12/22/2009 8:19:11 PM 1700 (0x06A4)
    Can not continue monitoring the program after service restart because the process exited.  Assume failed execmgr 12/22/2009 8:19:11 PM 1700 (0x06A4)
    Looking for MIF file to get program status execmgr 12/22/2009 8:19:11 PM 1700 (0x06A4)
    Raising event:
    [SMS_CodePage(437), SMS_LocaleID(1033)]
    instance of SoftDistProgramUnexpectedRebootEvent
     AdvertisementId = "00120025";
     ClientID = "GUID:4AC789F0-1D9C-49A0-BFD2-23D950A6307A";
     DateTime = "20091223011911.783000+000";
     MachineName = "ADMIN-OFF-TSEC";
     PackageName = "00100006";
     ProcessID = 3636;
     ProgramName = "Advanced Client Silent Upgrade";
     SiteCode = "001";
     ThreadID = 1700;
     execmgr 12/22/2009 8:19:11 PM 1700 (0x06A4)
    Raised Program Unexpected Reboot Event for Ad:00120025, Package:00100006, Program: Advanced Client Silent Upgrade execmgr 12/22/2009 8:19:11 PM 1700 (0x06A4)

    This KB article covers the upgrade of the client via hotfixes:
    http://support.microsoft.com/kb/2477182
    An important thing to note is that the Program needs the following set:
    After Running: Program Restarts Computer; this is needed to ensure that any status MIF files are collected after a restart of the client service (ccmexec.exe).  No actual restart of the computer should occur.
    This enables the SCCM client to detect that it re-started and to process the MIF files for status messages.
    Installing the following updates one at a time normally is sucessful:
    KB2761938
    KB2516517
    KB2815223
    Other updates such as KB2276865 fail with the Unexpected Reboot Event error (possibly because the MIF is not written correctly) but it has been superseeded by KB2815223 wich is OK.

  • OCS to Lync 2013, move all users over before client deployed?

    Hello, quick question hoping someone can answer...
    We've deployed Lync 2013 and are migrating about 2000 users from OCS across many branch offices, going branch-by-branch.
    Is there any downside to moving ALL 2000 users over to the Lync pool before they have the Lync client deployed to their site? They would still be using Communicator until their site receives the Lync install. I know Communicator works when connecting to
    the Lync pool so I'm guessing this should be OK.
    The problem we're seeing during this transition phase is when an employee travels to a site that's had Lync client deployed but the employee is still on the Communicator pool because their primary site hasn't been upgraded yet, and are thus unable to sign-in
    to Lync.

    I would agree with Anthony, 
    The basic features works with the Communicator clients but when it comes to conferencing users will face a lot of problems, also  a problem as been identified during such scenario is when users homed on the lync pool and signing in using the OC client
    experience a weird behavior when their contact lists disappear, then it appears again when logging using a lync client. 
    as a resume.
    If you are obliged to use the OC client please make sure that it is patched with the latest updated released. 
    as a best practice move to Lync client as soon as possible.
    Regards,
    Charbel Hanna
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread

  • Deploying SCCM Client through Group Policy

    Hi
     I want to deploy SCCM Clients to PCs using Group policy - I know that i  need the
    MSI file which is  included in the SCCM setup DVD but i dont have a fast internet to download the whole package as i just need  (CCMSETUP AND ADM Template) 
    Could someone please share a link where i can download these files? 
    Thanks Guys,...

    Just to help you, you can use this link to install or deploy configuration manager 2012 R2 clients to systems via group policy
    http://prajwaldesai.com/deploying-configuration-manager-2012-r2-clients-using-group-policy/
    Prajwal Desai, http://prajwaldesai.com

Maybe you are looking for

  • Error instantiating web-application:Application named 'javasso' is in stopp

    Hi, I am getting the following error while logging to Oracle Application Console. "Error instantiating web-application:Application named 'javasso' is in stopped" Environment details are as under: SOA suite: 10.1.3.1 Oracle Database: 11.1.0 I started

  • Selecting the first 4000 characters from a tag in an xml file

    Oracle Enterprise Edition 11.1.0.7 64 bit (Jan 2012 CPU applied) Windows 2003 64 bit We have an XML file with the following sample format. <?xml version="1.0"?> <HR> <EMP> <FNAME>JOHN</FNAME> <LNAME>DOE</LNAME> <COMMENT>Comment with less than 4000 ch

  • Gift card money given to somebody else.

    I recently tried to redeem a gift card my father got me for Christmas last year. When I entered the code, I was given an error. I then contacted support, who e-mail me a cut and paste response to try again. I did not have a chance that day. When I di

  • How do I get my iPhone safari browser to open oh the google search page

    I feel like such an idiot.  This is probably a silly question but don't know how to phrase it so I can search the community boards.  Anyway, when I first got my phone and opened safari, there were several options one of which was Google.  I've messed

  • Steps to copy datafiles in another database

    Hi, I want to use datafiles of another 10g database ,installed on different server, in my local 10g database. Please educate me on steps I need to take to do this. Kindly inform me if any further information is required in this regard. Thanks Harbind