sqlservercode.blogspot.com — Mark Russinovich the guy who revealed to the world that Sony CDs had that nasty rootkit installed has made available a single suite of tools for download. These tools are a must have for every single windows developer.
Feb 14, 2007 View in Crawl 4
hard666driveFeb 15, 2007
Since sysinternals is now owned by microsoft, i wouldn't trust this one bit. I'll bet it's a rookit itself, or spyware.At the very least, I'll bet this version is crippled in some signifcant way.
ninjaoxygenFeb 15, 2007
And still, all the source code that used to be on SysInternals.com appears not to be released by Microsoft.Still Great tools though!
alecksFeb 15, 2007
I'd also like to add the list, that PSEXEC is absolutely fantastic. I've deployed patches, registry edits, software, printer installs, almost everything to hundreds of computers with this tool.If anyone is curios... here's an example:make a text file with comptuernames, oner per line. Name it list.txtsay you want to do a registry edit on all PC's... Save the modified registry key in a mod.reg filefor /f %v in (list.txt) do start cmd /c copy mod.reg ||%v|$ /zfor /f %v in (list.txt) do start cmd /c psexec ||%v c:winntsystem32regedit.exe -r c:mod.reg [replace the | with a Backslash digg don't like double backslashies]cmd /c is just to impress your boss if he's watching... it does all the copying or executing at once in a different command window, then closes as they're done.