min TS use

  • Thread starter Thread starter Enrique Garcia
  • Start date Start date
E

Enrique Garcia

I have some users that have control of a domain account. But I want them to
just use Terminal Services to change the password of the account, and
nothing else. What is the best way to do this?
Any ideas would be greatly appreciated.
thanks,
eg
 
You could add the following onto your login script for
your terminal services users:

set userToChange=%username%
runas /user:administrator net user %userToChangesername%
* /domain

This command (with a few modifications that you'll need to
do) will run under the administrator's context and prompt
the user to change their password.

Hopefully it'll help you out.

-M
 
Back
Top