To update the collection membership

To update the collection membership 1. Log on as administrator with a password of password. 2. On the Start menu, click SMS Administrator Console. The SMS Administrator Console window appears. 3. In the console tree, expand Site Database, expand Collections, and then click All Systems. The members of the All Systems collection appear in the … Read more

Computers in Workgroups

Configuration Manager 2007 provides support for clients in workgroups. It is also supported for a client to be moved from a workgroup to a domain or from a domain to a workgroup. To support workgroup clients, the following requirements must be met: 1. During client installation, the logged-on user must possess local administrator rights on … Read more

Configuration Manager 2007 site server roles are not supported on below OS

|Configuration Manager 2007 site server roles are not supported on any operating system prior to Windows Server 2003 Service Pack 1. Configuration Manager 2007 site roles are explicitly not supported on the following operating system versions: Windows NT 4.0 Server Windows 2000 Server Windows 2003 Server, with no service pack installed

Unsupported Client Platforms

Unsupported Client PlatformsThe Configuration Manager client is not supported on any operating system prior to Windows 2000 Service Pack 4. Installing the Configuration Manager client is explicitly not supported on the following operating system versions:  Windows 95 Windows 98 Windows Millennium Edition Windows XP Media Center Edition Windows XP Starter Edition Windows XP Home … Read more

Unable to load console on Primary Site Server

Symptom: Unable to load console on Primary Site Server Further Conditions – WMI Failures indicated by errors 0x80041002 in the Event Log, MPControl.log.  Unable to connect to namespace root/cimv2. Use the WMI Diag tool for further analaysis and confirmation of namespace errors. Restart WMI service and check corresponding event log for errrors. If necessary rebuild … Read more

Decommission or Deleting a Secondary Site from SCCM Console

Decommission or Deleting a Secondary Site from SCCM Console 1) Log on to the primary for the secondary site. Right click the secondary site and select delete 2) On the welcome page click next 3) Choose the option to delete or uninstall siteDelete this site Select this option to delete the secondary site. Deleting a … Read more

Restore Procedure’s for Primary Sites

Restore Procedure’s for Primary Sites 1. To start the Site Repair Wizard from the Configuration Manager console:Navigate to System Center Configuration Manager Site Database Site Management <site name>. 2. Right click <site name> and click Repair Site. Note: The Site Repair Wizard can only be started from the Configuration Manager console installed on the site … Read more

Scripts to query installed Service Packs, Patches/updates and Hotfixes

Scripts to query installed Service Packs, Patches/updates and Hotfixes There are many known scripts which use WMI class Win32_QuickFixEngineering to enumerate hotfixes installed on a computer. These scripts can give you a list of installed updates like; 1. This Script reports installed updates that are installed with Windows Update (v5) technology and the result will … Read more

create 1000 users

‘ Create 1000 Sample User Accounts Set objRootDSE = GetObject(“LDAP://rootDSE”) Set objContainer = GetObject(“LDAP://cn=Users,” & _ objRootDSE.Get(“defaultNamingContext”)) For i = 1 To 1000 Set objLeaf = objContainer.Create(“User”, “cn=UserNo” & i) objLeaf.Put “sAMAccountName”, “UserNo” & i objLeaf.SetInfoNext WScript.Echo “1000 Users created.”