Client Failover Options ?
I'd like to get some ideas on what people are doing for SCCM Client failover in large organizations (10k+ clients). In SCOM, for instance, there's the option of setting up a failover management server for clients. I realize no equivalent functionality
exists in SCCM, so how are folks handling the failure of MP's while still being able to provide SUP, OSD, SD, etc., to clients? Examples welcome
Thanks in advance,
June 29th, 2010 6:25pm
The client reassignment can be handled with the right click tools fromthe central site or as you said with a vb script like this:
'replace with your Site Code
sSiteCode = "EnterNewSiteCode"
sMachine = "."
set oCCMNamespace = GetObject("winmgmts://" & sMachine & "/root/ccm")
Set oInstance = oCCMNamespace.Get("SMS_Client")
set oParams = oInstance.Methods_("SetAssignedSite").inParameters.SpawnInstance_()
oParams.sSiteCode = sSiteCode
oCCMNamespace.ExecMethod "SMS_Client", "SetAssignedSite", oParams
Kent Agerlund | http://scug.dk/members/Agerlund/default.aspx | The Danish community for System Center products
Free Windows Admin Tool Kit Click here and download it now
June 29th, 2010 8:08pm


