查询windows系统用户列表批处理脚本
2021-01-28 15:13
阅读:642
标签:系统用户 脚本 off use 处理 成功 windows系统 列表 命令 查询windows系统用户列表批处理脚本 标签:系统用户 脚本 off use 处理 成功 windows系统 列表 命令 原文地址:https://blog.51cto.com/6300167/2451092
echo 本机所有用户:>>user.txt
for /f "skip=4 tokens=1-3" %%i in (‘net user‘) do (
if not "%%i"=="命令成功完成" echo %%i>>user.txt
if not "%%j"=="" echo %%j>>user.txt
if not "%%k"=="" echo %%k>>user.txt
)
echo .
echo 当前登陆本机的账户是:>>user.txt
echo %username%>>user.txt
exit>nul
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:查询windows系统用户列表批处理脚本
文章链接:http://soscw.com/index.php/essay/48280.html
文章标题:查询windows系统用户列表批处理脚本
文章链接:http://soscw.com/index.php/essay/48280.html
评论
亲,登录后才可以留言!