If you are Performing package cleanup,this query might help you to Identify how many packages with no advertisements(standard advertisement and Task Sequence) so you know What action to Take next! select  v_Package.PackageID, v_Package.Name,v_Package.SourceVersion,v_Package.SourceDate from dbo.v_package Where packageID not in (select PackageID from dbo.v_Advertisement)and PackageID not in (SELECT ReferencePackageID FROM v_TaskSequenceReferencesInfo) and v_Package.name not like '%osd%'…
Use #SCCM / #Configmgr 2012 Client Center without connecting to Internet

Client Center tool is designed for IT Professionals to troubleshoot SCCM/CM12 Client related Issues. The Client Center for Configuration Manager provides a quick and easy overview of client settings, including running services and Agent settings in a good easy to use, user interface. Here you go with Client center Beta Version : http://sccmclictr.codeplex.com/ when you…

Justin Gao Documented how to deploy Win 8 Using SCCM 2012 SP1 Beta as System Center 2012 Configuration Manager SP1 beta Supports now. In this post , Justin documented how to use System Center 2012 Configuration Manager(SCCM 2012) SP1 Beta to deployment Windows 8 .     Including these parts: Configuring a Distribution Point to Support…

Raphael Finally released beta Version of his most loving project which is called CM12 Automation using scripts. What it Does basically ? Prepare Active Directory Install the Prerequisites for Configuration Manager 2012 like IIS,SQL etc. Install SCCM Site with MDT Integrated Install Site Roles More information about this project ,Feed back and downloads refer http://cm12automation.codeplex.com/…

Prerequisites for the installation of SCCM 2012 SP1 Beta Secondary Site which I noted when installing Some Key Points about Secondary Site: Each secondary site can support communications from up to 5,000 clients when you use a secondary site server computer with the recommended hardware and that has a fast and reliable network connection to…

Today I was looking at Packages to see how many packages are created without any distribution Points added. This might help you in identifying whether these packages are really needed to be in SCCM or archive them. This below report will help you in achieving this. select PackageID,Name,Version,SourceDate from v_Package where PackageID not in (select…