在批處理中使用 net user
命令,可以管理本地計算機的用戶賬戶。以下是一些 net user
命令的用法示例:
net user username password /add
其中,username
是要創建的用戶名,password
是用戶的密碼。
net user username /delete
其中,username
是要刪除的用戶名。
net user username /active:no
其中,username
是要禁用的用戶名。
net user username /active:yes
其中,username
是要啟用的用戶名。
net user username
其中,username
是要查看的用戶名。
請注意,使用 net user
命令需要以管理員身份運行批處理腳本。