Showing related tags and posts accross the entire site.
-
A collegue of mine spent hours researching how to create a simple advertisement assignment. He was using the SDK in VBScript and was frustrated at the lack of easy-to-digest information out there. He'd arrived at MSDN, Technet, poured over the SMS2003 SDK help file and even googled around. He almost...
-
Folks, Wrote another little VBScript , this one to change the SDK Site Control File delta value on a remote SMS Site server. This script affects the HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\SMS\COMPONENTS\SMS_SITE_CONTROL_MANAGER\Sites section of the Registry on the remote SMS Site server. I'd recommend...
-
Wrote another script, this one will look for a user\group in a specified local group on a machine, remove it, then insert a User or Group. Handy if you want to remove GroupX and replace it with GroupY, or remove a user and replace with a group, works in any combination. If you use this, test test test...
-
Handy to know: Start an application wmic process call create "calc.exe" Terminate an application wmic process where name="calc.exe" call terminate You can also do this remotely WMIC /NODE:Machine Name /User:UserName /Password:Password process call create "calc.exe" Drop...