added scripts and SUPERMICRO

This commit is contained in:
2012-02-29 15:47:11 -05:00
parent 939e57d438
commit b9cd8bbfd2
818 changed files with 35440 additions and 0 deletions

9
pinch_test.bat Normal file
View File

@@ -0,0 +1,9 @@
@echo off
for /f "DELIMS=/" %%q in (serverlist.txt) do (
xcopy /y c:\pinch.exe \\%%q\c$\pinch.exe
for /f "DELIMS=/" %%s in (%%q.txt) do (
psexec \\%%q c:\pinch.exe %%s
IF ERRORLEVEL 1 (echo %%q,failed,%%s >>pinch.log) else (echo %%q,connected,%%s >>pinch.log )
)
)