|
>.<... guys i'm stuck...
::Batch.bat
net users>users.dat
for /f "skip=4 tokens=1-3" %%a in (users.dat) do call c:\para.bat %%a & c:\para.bat %%b & c:\para.bat %%c
:: para.bat
@echo off
if %1x == x goto end
if %1 == The goto end
if %1 == command goto end
if %1 == completed goto end
echo %1
:end
|