With this VBScript you can modify the client cache size of your SCCM 2007 clients.
————————————————————————————–
Dim ClientResource
Set ClientResource = CreateObject(“UIResource.UIResourceMgr”)
Set CacheInfo = ClientResource.GetCacheInfo
CacheInfo.TotalSize = 10000
————————————————————————————–