SCCM
Free book for SCCM 2012 from MS Field Engineers tips
Free book for SCCM 2012 from MS Field Engineers tips https://aka.ms/683044pdf
sccm 2012 Cumulative updates version determine
To check the Cumulative updates number , open this registry key HKLMSOFTWAREMicrosoftSMSSetupCULevelSystem Center 2012 Configuration Manager CU1 – 5.00.7711.0200 System Center 2012 Configuration Manager SP1 CU1 – 5.00.7804.1202System Center 2012 Configuration Manager SP1 CU2 – 5.00.7804.1300System Center 2012 Configuration Manager SP1 CU3 – 5.00.7804.1400
determine the version of sccm 2012 client
The following are the client versions, for sccm 2012 to determine the version. System Center 2012 Configuration Manager Beta 2 ==>5.00.7561.0000System Center 2012 Configuration Manager SP1 Beta – 5.00.7561.0000 System Center 2012 Configuration Manager RC1 ==>5.00.7678.0000System Center 2012 Configuration Manager RC2 ==>5.00.7703.0000System Center 2012 Configuration Manager RTM ==>5.00.7711.0000System Center 2012 Configuration Manager CU1 … Read more
powershell script to find the user account lockedout status
import-module ActiveDirectory #get list of accounts to check$systemAccounts = Get-Content “c:ScriptsSystemAccounts.txt” #check if any of these accounts are locked$lockedAccounts = Search-ADAccount –LockedOut | Where {$systemAccounts -contains $_.Name} | echo Name #not yet tested this -draft
Last password change info – Powershell
Last password changed PS #> $searcher=New-Object DirectoryServices.DirectorySearcherPS #> $searcher.Filter=”(&(samaccountname=user1))”PS #> $results=$searcher.findone()PS #> [datetime]::fromfiletime($results.properties.pwdlastset[0])