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

6
ping_local.bat Normal file
View File

@@ -0,0 +1,6 @@
@echo off
for /f "DELIMS=/" %%s in (ping_local.txt) do (
ping -n 1 %%s
IF ERRORLEVEL 1 (echo failed %%s >>ping_local.log) else (echo connected %%s >>ping_local.log )
)