mcarriere893
Posts: 3621
Score: 300 Joined: 4/12/2002 From: Manitoba, Canada Status: offline
|
Right from the SDK (and was the same for SMS 2003). This is just a script that yoiu would advertise to a collection of clients you wish to change the cache size on. (note the comments ' . Can just remove them to test running it locally first). (I know, its not the Right-click console extension you were looking for, but..) 'start of vbscript On Error Resume Next Dim oUIResManager Dim oCache Dim CacheSize CacheSize=1500 ' Change to whatever you wish (MEGs) Set oUIResManager = createobject("UIResource.UIResourceMgr") If oUIResManager Is Nothing Then ' wscript.echo "Could not create Resource Manager - quitting" wscript.quit End If Set oCache=oUIResManager.GetCacheInfo() If oCache Is Nothing Then Set oUIResManager=Nothing ' wscript.echo "Could not get cache info - quitting" wscript.quit End If oCache.TotalSize=CacheSize 'Msgbox("SMS Cache increased to 1GB")
_____________________________
Mark Carriere Microsoft MVP-SMS www.SMSUG.ca
|