In a Big environment to know/work based on regional wide kind of doing some maintenance tasks in SCCM ,this would would help you to get you the count of Child sites reporting to primary. select ReportingSiteCode ,COUNT(*) as [Child sites] from v_Site group by ReportingSiteCode order by ReportingSiteCode

The upcoming general availability of Windows 8 on Oct 26th and the launch of the new Windows App Store presents us all with the greatest Windows developer opportunities ever!  Get ready by attending a Windows 8 Developer Camp!  Developer Camps provide a great opportunity to jump start your development skills in a fun information-packed 1-day…

Starting with System Center 2012 Configuration Manager, Forefront Endpoint Protection (FEP) has now been integrated into Configuration Manager and is called System Center 2012 Endpoint Protection. From your feedback, we have heard that some FEP customers who are now using System Center 2012 Endpoint Protection are having problems finding the information they need to install…

Long ago Raphael blogged nice post how to delete expired updates from Configuration Manager 2007 http://wmug.co.uk/wmug/b/dotraphael/archive/2012/04/19/script-deleteexpiredupdates.aspx but script is not available to download now with current link. This script is intended to remove all expired updates from a package or Deployment and was showed by the MVP Kent Agerlund on his presentation at MMS 2012…

If you are performing SCCM cleanup activity on packages,this might help you to identify if there are any packages still available on DPs rather looking at each package manually also to check how many DP’s each package available so you can distribute the package to missing DP’s(if you have standards to ensure all packages should…

Script to check files on remote computer and delete them if they are available. ON ERROR RESUME NEXT Set objfso = CreateObject ("Scripting.FileSystemObject") Set computerList = objfso.OpenTextFile ("C:\Scripts\computerList.txt", 1) Set outputList = objfso.OpenTextFile ("C:\Scripts\outputList.txt", 2, True) Do While Not computerList.AtEndOfStream strComputer = computerList.ReadLine If objFSO.FolderExists("\\" & strComputer & "\F$\oldfiles") Then Set strFolderPath = objFSO.GetFolder("\\" &…