runas lower user without password

1

Say I am Administrator in a cmd.

Now I want to run a process as a non Administrator Account without entering the password of the lower user.

>echo %USERNAME%
Administrator
>runas /user:localuser cmd
Password for localuser:   <-- SKIP THIS PASSWORD

I know that there is the option /savecred, but this forces me to enter the password once. I dont even want to enter the password a single time.

Eun

Posted 2013-05-15T06:41:41.737

Reputation: 1 723

"I dont even want to enter the password a single time." You will have to. At least in the command line (or the bat file). – Werner Henze – 2013-05-15T07:13:46.657

in linux one can use su there you haven't to enter the password, I search something similar for windows. – Eun – 2013-05-15T07:35:53.840

No answers