I found this interesting forum post on the msft forums. This code will help you change all your sites to require secure key exchange. here's the post: http://forums.microsoft.com/TechNet/ShowPost.aspx?PostID=2796017&SiteID=17
This script will change the sms cache size. Usage Example: cscript change-sms-cache.vbs 1000 d:\ Note: size is in MB
call checkpendingstatus sub CheckPendingStatus Set ComputerStatus = CreateObject("Microsoft.Update.SystemInfo") If ComputerStatus.RebootRequired Then wscript.echo "This computer has a pending reboot." Else wscript.echo "this computer does not have a pending reboot." End If End sub
This vbscript pings machines from a text file: change the two variables for your input and output txt files: strPATHout = "C:\pingstatus.txt" strPATHin = "C:\pinglist.txt"