I'm assuming a workgroup here.
You should indeed be able to regain access to your web server using ntrights.exe.
On your notebook (or whatever machine you use for remote access), open a command prompt.
Map a share (for example C$ or IPC$) on your web server to establish a secure connection; use any account with administrative rights on the web server for that (the locked out account will do just fine):
net use x: \\WebServer\C$ /user:WebServer\Administra
The user right you are looking for is "SeDenyInteractiveLogonRig
Now for each user/group you denied local access to, enter the following command (replacing "WebServer" with your server's name, of course):
ntrights -u WebServer\User/GroupName -m \\WebServer -r SeDenyInteractiveLogonRigh
In case you revoked the "Log on Locally" right from any users/groups, grant them access again with
ntrights -u WebServer\User/GroupName -m \\WebServer +r SeInteractiveLogonRight
That should keep you going again.
Main Topics
Browse All Topics





by: QuetzalPosted on 2003-07-06 at 08:02:43ID: 8863836
Have you logged on to the web server directly as a user in the Administrators group? Anything you try to do from the network will fail.