Registry

  • Thread starter Thread starter Jake
  • Start date Start date
J

Jake

Is there any way to disable a user account using the registry in Windows XP
Home SP2?
 
Jake said:
Is there any way to disable a user account using the registry in Windows
XP
Home SP2?

Probably - but why not use the inbuilt tools, e.g.
net user Jake /active:no
 
I'm the same guy with the problem with that lol. Worked out it was Windows
Steady State but even with windows disk protection off it wouldn't work. Very
weird so I thought I'd try everything. I could do it the hard way go "net
user Jake /workstations:none" then hide the account from the Welcome Screen
but I just think it would be interesting to find out exactly what's doing it.
 
Jake said:
I'm the same guy with the problem with that lol. Worked out it was Windows
Steady State but even with windows disk protection off it wouldn't work.
Very
weird so I thought I'd try everything. I could do it the hard way go "net
user Jake /workstations:none" then hide the account from the Welcome
Screen
but I just think it would be interesting to find out exactly what's doing
it.

I see. Since you cannot prevent the account from being
re-enabled, why don't you create a scheduled task that
runs at boot time and disables the account with the
command I gave you before? It might just work! If it does
not then you could trick it with a delay loop:

@echo off
ping localhost -n 60 > nul
net user jake /active:no

Make sure to schedule the command under a sufficiently
powerful admin account.
 
Thanks for the feedback. If you can't solve a problem,
try walking around it . . .
 
Jake said:
Is there any way to disable a user account using the registry in Windows XP
Home SP2?


No. If a user couldn't access the necessary parts of the registry,
he/she would even be able to log in, much less use the computer.


--

Bruce Chambers

Help us help you:


http://support.microsoft.com/default.aspx/kb/555375

They that can give up essential liberty to obtain a little temporary
safety deserve neither liberty nor safety. ~Benjamin Franklin

Many people would rather die than think; in fact, most do. ~Bertrand Russell

The philosopher has never killed any priests, whereas the priest has
killed a great many philosophers.
~ Denis Diderot
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top