@echo off
color 02
echo the username is %username%
set /p mm=new password
echo Is the new password %mm% & pause>nul
net user %username% %mm%
echo finish.& pause>nul
pause
修改密码批处理
于 2025-02-02 22:29:53 首次发布
@echo off
color 02
echo the username is %username%
set /p mm=new password
echo Is the new password %mm% & pause>nul
net user %username% %mm%
echo finish.& pause>nul
pause