C:>net user adam ILoveAdam! /add
命令成完成。
//創建一個 adam 帳號,在這里我們使用的net user創建的該帳號,當然,我們也可以用 AddUsers來創建,這樣我們能保留更多與用戶相關的咨詢,AddUser 具體使用可以參見Windows 2000 Resources Kits的手冊。
C:>copypwd.exe set
Set password for user adam
//密碼恢復成,不管你在 S2 上創建的密碼是什丑A現在的密碼都是 "ILoveAdam!"
需要值得注意的一點,在我們實施完該操作后,該用戶的"User must change password at next logon"開關被Enable了,所以在測試的時候會碰到一些問題,因此我們必須在用戶管理器中Uncheck這個選項,當然,我們也可以通過命令行的方式來實現,所以在這里推薦一個Resource Kits里面的一個工具 cusrmgr,首先看看它的幫助:
CUsrMgr Ver 1.0 Jan98 by G.Zanzen (c) MCS Central Europe
Sets a random password to a user
usage: -u UserName [-m \MachineName] \ default LocalMachine
Resetting Password Function
-p Set to a random password
-P xxx Sets password to xxx
User Functions
-r xxx Renames user to xxx
-d xxx deletes user xxx
Group Functions
-rlg xxx yyy Renames local group xxx to yyy
-rgg xxx yyy Renames global group xxx to yyy
-alg xxx Add user (-u UserName) to local group xxx
-agg xxx Add user (-u UserName) to global group xxx
-dlg xxx deletes user (-u UserName) from local group xxx
-dgg xxx deletes user (-u UserName) from global group xxx
SetProperties Functions
-c xxx sets Comment to xxx
-f xxx sets Full Name to xxx
-U xxx sets UserProfile to xxx
-n xxx sets LogonScript to xxx
-h xxx sets HomeDir to xxx
-H x sets HomeDirDrive to x
+s xxxx sets property xxxx
-s xxxx resets property xxxx
where xxxx can be any of the following properties:
MustChangePassword
CanNotChangePassword
PasswordNeverExpires
AccountDisabled
AccountLockout
RASUser
【老規矩,字數不夠幫助湊】
我們激活用戶的語法是:
D:copypwd>cusrmgr -u adam -s MustChangePassword