Configuration Manager: Cache Management

Greetings all!  Heath here, reporting in after a lengthy vacation and the holidays.  I hope everyone has been doing well over the past month or two, and hope 2014 is off to a great start for you.

This post is all about something we use everyday, but probably don’t spend too much time managing or monitoring in our enterprise:  the Configuration Manager Client Cache!  This is an all up post, meaning I’ve got example code to make changes, and then we follow-up with inventory and reports to validate the settings in our environment.

First, an intro to the Configuration Manager client cache.  It’s used for a large number of Configuration Manager operations – by default, whenever a client needs to grab content for an action (think Application Management and Software Updates), the client will download to a temporary location.  This “download and execute” behavior is what gives us the ability to use BITS to move content to a client,  allows us to be clear of network requirements while running setup.exe, and allows clients to re-execute an application with out re-downloading any content. 

Let's get started in the lab.  We'll start with our script below  – in this case, we’re going to use the Configuration Manager COM object to interact with the Configuration Manager client.  I encourage everyone to poke around with this – much of the client automation work you’ll see in the SDK is geared around COM, so this is a great skill to add to your scripting repertoire if you are a Configuration Manager admin!

 #Initialize our CCM COM Objects
 $CCM = New-Object -com UIResource.UIResourceMGR
 
 #USe GetCacheInfo method to return Cache properties
 $CCMCache = $CCM.GetCacheInfo()
 
 #Get the current cache location
 $CCMCacheDrive = $CCMCache.Location.Split("\")[0]
 
 #Check Free space on drive
 $Drive = Get-WMIObject -query "Select * from Win32_LogicalDisk where DeviceID = '$CCMCacheDrive'"
 
 #Convert freespace to GB for easier check
 $FreeSpace = $Drive.FreeSpace/1GB
 
 #Check Sizes and set Cache
 If ($Freespace -ge 5 -and $Freespace -lt 15)
 {
 #Free space moderate
 $CacheSize = 5120
 }
 If ($Freespace -ge 15)
 {
 #Plenty of space
 $CacheSize = 10240
 }
 
 #Set Cache Size
 $CCMCache.TotalSize = $CacheSize
 
 Write-Host (Get-WMIObject -namespace root\ccm\softmgmtAgent -class CacheConfig).Size
 

Here you’ll see a couple of things take place:

  1. Initialize the ConfigMgr UI COM Object
  2. Get the drive holding the current cache
  3. Check the free space (notice, we tell it to divide by 1GB)
  4. We determine the size of the cache and then set the new cache size
  5. Finally, we check that the setting took by checking the cache size via the CacheConfig class in the CCM\SoftMgmtAgent namespace - more on this below.

Cool!  We’ve got a PowerShell script that will change the Configuration Manager client cache size without restarting the Configuration Manager client.  Where would this be useful?  We could send this out via package and program to set it once, maybe even with a recurring schedule.  I’m a huge fan of Compliance Settings within Configuration Manager, and this sounds like a perfect use case for Configuration Manager Compliance Settings!

Here, we’ll wrap this up in a Compliance Setting Configuration Item.  This Configuration Item will use a script to detect and set the state, then we’ll check the outcome of the script as our measure of compliance:

image

 

 image

Great, now we’ve got a CI that will enforce client cache configurations, and since it’s a CI, we can set an easy recurrence pattern and get basic information back out of the script.

Now that we’re able to manage the cache on the client, we’ll probably want to be able to report on this configuration, so we’ll need to do a bit of work to make this happen.  We’ll be using Hardware Inventory to pull back the Configuration Manager Cache Configuration – in this case, we’ll need to use the nifty new MOF-free editor in System Center 2012 Configuration Manager to go grab the class we’re after.

Lets start by connecting to the appropriate namespace on a client – we’ll have to run the console as Admin (Right click, “Run As Administrator”).  We’ll navigate to root\ccm\SoftMgmtAgent namespace, then select the CacheConfig class:

image

While we’re modifying hardware inventory, a great attribute to add to an existing class is “Free Space” in the Logical Disk class.  This will be used later for the reports below.

image

Cool, now that we have hardware inventory reporting back, we should be able to build a few reports that reference the V_GS_CacheConfig.  I won’t go into too many details, as the reports are available below, but we’ll make use of our newly created inventory class to report on the current state of the client cache enterprise wide. 

clip_image002

If we click through each of the cache sizes, we can dig into a detailed view for each client in that state.  This could easily be adapted to a “I need to deploy a 10GB package – which clients can handle it?” type of report!

clip_image002[5]

 All of the sample files are available here, via TechNet.  I debated splitting this into two posts, but I wanted to make sure the entire solution is available for folks, and the nice thing is you can choose to use all of the components (Script, reports, inventory changes) or the individual pieces (report/inventory info OR cache script).  Maybe you’ll use this as a starting point for your project, maybe you’ve had issues with a standardized client cache in the past – either way, let me know how you use this or any questions or comments below!