Thursday, September 3, 2015

Disable Administrator account on Windows 7 Starter Edition


How can I disable the Administrator account on Windows 7 Starter Edition? I enabled it using the NT Password and Registry Editor so that I could install software for a client who didn't leave me their netbook password. There doesn't appear to be a way to disable it using Windows itself (no lusrmgr.msc, net user Administrator /enable:no gives an error, no secpol.msc).


Answer



I solved this by loading the SAM registry hive and editing the Domains\Account\Users\000001F4\F value and setting the 38th byte to 11. 11 is disabled 10 is enabled.


I used the NT Password and Offline Registry Editor http://pogostick.net/~pnh/ntpasswd/regedit.txt to do this. Once you cd to the right key, the commands to edit are as follows:


ed 000001F4
d
:38
d
s
quit

No comments:

Post a Comment

linux - How to SSH to ec2 instance in VPC private subnet via NAT server

I have created a VPC in aws with a public subnet and a private subnet. The private subnet does not have direct access to external network. S...