SCCM 2012 With SP1 and Updates

The realase of SCCM 2012 was very smooth, but the Sp1 created some issues, However MS updated the Binaries that resolved lot, but few of them were fixed in March 2013, by Collection of Updates we called Cumulative Update 1. Find the direct link for Cummulative update 1 https://support.microsoft.com/kb/2817245 

Delete all packages from Distrubution Point

Did you get ever a situation to delete all the Packages from one Specific DP ? There are few tools/Scripts are available –          ConfigMgr 2007 Distribution Point Package Utility o   Can be downloaded from https://www.myitforum.com/inc/arts/12171Setup.zip –          Vbscript I like this tool as it is very quick o   https://blogs.msdn.com/cfs-file.ashx/__key/communityserver-components-postattachments/00-00-54-13-12/DPClean.zip For SCCM 2012 https://gallery.technet.microsoft.com/scriptcenter/Remove-Packages-from-5031a1b5 ‘Rslaten 03/2005’https://blogs.msdn.com/b/rslaten/archive/2006/03/01/removing-a-retired-dp-from-all-your-packages.aspx On … Read more

To Upgrade SCCM 2012 secondary site to a Service Pack 1

  Ensure you complete these go through with this ms link https://technet.microsoft.com/en-us/library/jj822981.aspx Log on to the Secondary site and start the SQL Server Configuration Manager Select SQL Server Network Configuration, Protocols for CONFIGMGRSEC. Right click TCP/IP and click Properties. Select the IP Addresses tab and scroll down to IPALL. Delete the entry in TCP Dynamic … Read more

PowerShell script to check WDS Service status against of List of servers.

Below is a PowerShell script, this will list WDS Service status against of List of servers. Below is a powershell script will list WDS Service status againest of List of servers. $InPutComputersList = get-content “c:MyScriptslist.txt”$OutPutFile = “c:MyScriptsWDS_ServiceStatus.csv”$NotReachble = “c:MyScriptsNonPingSystems.csv”$listResult = @()foreach($ForEverComputerIntheTextFilelinebyLine in $InPutComputersList) {if (test-path $ForEverComputerIntheTextFilelinebyLinec$windowswrite.exe) {$objService = Get-Service WDSServer -ComputerName $ForEverComputerIntheTextFilelinebyLine | select machinename, … Read more

SCCM 2012 Replication – What is replicated in each type From where to where

  There are TWO types of replication can happen 1) Database Replication2) File-Based Replication Database Replication Includes Global Data & Site Data Global data that replicates by using database replication. Site data that replicates by using database replication. Note:- Apart from above two there is local data this is just to specific to the local … Read more

For package pre-stage in 2012

On dp take the check box as pre stage From package right click create “prestage content file” to create the package This will create the .pkgx file.Get the file extractcontent.exe from bin/x64 Run the below command extractcontent.exe /p:e:path of .pkgx files /s These two steps will distribute the package as pre-stage method

Script to check the drive space in the server against the threshold value and triggers an alert

Script to check Disk Space #Purpose: Script to check the drive space in the server against the threshold value and triggers an alert#powershell script for disk space monitoring $computer = get-content -path .list.txt #get-content env:computername; #Get the server name$percentWarning = 50; # Store the percentage warning threshold$disks = Get-WmiObject -ComputerName $computer -Class Win32_LogicalDisk -Filter “DriveType … Read more

Migrate reports from SCCM 2007 to SCCM 2012

Sync SSRS report between two report servers: The built-in migration wizard in ConfigMgr 2012 can migrate most objects but not reports. In ConfigMgr 2012 classical ASP reports (as we know them from earlier versions) are no longer supported.Migrate the classical reports to SQL Reporting Services in SCCM 2007Below is a walk thru of how you migrate … Read more