Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

disabling user password change

Status
Not open for further replies.

theEclipse

Programmer
Dec 27, 1999
1,190
US
Hello,

First off, this is not as simple as it seems. The machines are XP Home ed. (yuck). The computers are public domain computers in a coffee shop, and we need to have password access without the ability of the user to change the passwords.

I cant go the xp pro way: computer managment->disable the feature because the computer managment screen doesnt have the user managment area.

Any help is appreciated.

Robert

Robert Carpenter
/b{2}|!b{2}/ - that is the question...
robert@convertingchaos.com
 
You might get some ideas from Doug Knox in this thread and what he mentions about "the NUSRMGR.CPL applet, or by restricting access to Control Panel and the Command Prompt as a whole", used in conjunction with his Security Console for Home (also mentioned in the Google link).


Cool Tip #2: Security Tab in Windows XP Home
thread779-685055
 
Hello theEclipse,

Can consider script solution. It essentially just sets the appropriate bit of the user account's userFlag.
Code:
const UF_PASSWD_CANT_CHANGE=64
set oUser=GetObject("WinNT://bluemountain/psmith,user")
oUser.Put "userFlags", oUser.Get("userFlags") OR UF_PASSWD_CANT_CHANGE
oUser.SetInfo
set oUser=nothing
regards - tsuji
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top