Share via


Increase SCCM client cache size

When you have large applications to deploy during an OSD, it will fail because the size of the SCCM Client Cache is not big enough to cache the application installation files. Software updates also use the client cache, but software updates are not restricted by the configured cache size and will always attempt to download to the cache. You can configure the client cache settings when you install the Configuration Manager client manually, when you use client push installation, or after the client is installed. When you distribute software, you can set the Advanced Client to download package source files from a distribution point to a cache on the Advanced Client computer before the program runs. When the program runs, it uses the source files in the cache instead of the source files on the distribution point. By default, the SCCM 2012 Client Cache is set to 5120MB and if you do not set this property while installing SCCM Client, the folder defaults to a maximum size of 5120 MB. The lowest value you can specify is 1 MB.

http://prajwaldesai.com/wp-content/uploads/2015/05/How-to-increase-SCCM-client-cache-size-Snap1.jpg

You could change the client cache size on a single machine by getting into Control Panel > Configuration Manager Client Properties > Cache > click on Configure Settings and change the value of cache size and click OK.

VB script to modify SCCM client cache size

On Error  Resume Next
Dim UIResManager 
Dim Cache 
Dim CacheSize
CacheSize=20000
Set UIResManager = createobject("UIResource.UIResourceMgr")
Set Cache=UIResManager.GetCacheInfo()
Cache.TotalSize=CacheSize

Power shell script to increase SCCM client cache size

$Cache = Get-WmiObject -Namespace 'ROOT\CCM\SoftMgmtAgent' -Class CacheConfig
$Cache.Size = '10240'
$Cache.Put()
Restart-Service -Name CcmExec

If you want to change SCCM client cache size on multiple computers then you could deploy the script to a device collection. Here are the steps to change the client cache size.

Launch the Configuration Manger console, click on Software Library and click on Application Management. Right click on Packages and click on Create Package.

http://prajwaldesai.com/wp-content/uploads/2015/05/How-to-increase-SCCM-client-cache-size-Snap2.jpg

Provide the Name, Description for this package**.** You need to specify the location where you have stored the script files so your Source folder should be the path where the script is located. Click Next.

http://prajwaldesai.com/wp-content/uploads/2015/05/How-to-increase-SCCM-client-cache-size-Snap3.jpg

We will be using the VB script to the change the cache size, provide details for the standard program as shown in the below screenshot. cc.vbs is the name of the script file. Click Next and complete the wizard.

http://prajwaldesai.com/wp-content/uploads/2015/05/How-to-increase-SCCM-client-cache-size-Snap4.jpg

Before you deploy the package you need to distribute the package to the distribution point, so right click on the package and click Distribute Content and distribute the package to the desired DP. The next step is to deploy the package to a device collection, right click the package and click on Deploy.

http://prajwaldesai.com/wp-content/uploads/2015/05/How-to-increase-SCCM-client-cache-size-Snap5.jpg

Choose the collection for which you want to deploy this package and click Next.

http://prajwaldesai.com/wp-content/uploads/2015/05/How-to-increase-SCCM-client-cache-size-Snap6.jpg

Set the Purpose to Available or Required. In this example I am setting it to Available. Click Next and complete the remaining steps by clicking Next.

http://prajwaldesai.com/wp-content/uploads/2015/05/How-to-increase-SCCM-client-cache-size-Snap7.jpg

On the client machine open the Software Center and select the package and click Install Selected.

http://prajwaldesai.com/wp-content/uploads/2015/05/How-to-increase-SCCM-client-cache-size-Snap8.jpg

Open the execmgr.log file on the client machine to see more details on the program execution.

http://prajwaldesai.com/wp-content/uploads/2015/05/How-to-increase-SCCM-client-cache-size-Snap9.jpg

After the script is run you can see the client cache size is increased.