您的位置首页百科问答

net user 批处理问题

net user 批处理问题

的有关信息介绍如下:

net user 批处理问题

把下面的批处理存为mydeluser.bat,运行后会逐一显示各用户信息,并提示是否删除该用户,按Y或y确认删除,其他键跳过。@echo off@if exist users.txt @del users.txt@for /f "skip=2 tokens=1,2,3 delims= " %%a in ('net user^|find /v "\"^|find /v "。"^|find /v "-"') do (@echo %%a>>users.txt@if not "%%b"=="" echo %%b>>users.txt@if not "%%c"=="" echo %%c>>users.txt):L@echo.&echo ************************************&echo.@if not exist users.txt @goto E@set /p cur_user=>_users.txt@if exist users.txt @del users.txt@if exist _users.txt @ren _users.txt users.txt@goto L:E@echo 已遍历所有用户。