Funktionsreferenz

RunAsSet

Initialise a set of user credentials to use during Run and RunWait operations. 2000/XP or later ONLY.

RunAsSet ( ["user", "domain", "password" [, options]] )

 

Parameter

username [optional] The user name to use.
domain [optional] The domain name to use.
password [optional] The password to use.
options [optional] 0 = do not load the user profile, 1 = (default) load the user profile, 2 = use for net credentials only

 

Bemerkungen

This function allows subsequent Run and RunWait functions to run as a different user (e.g. Administrator). The function only works on the 2000/XP (or later) platforms. NT4 users should install and use the SU command from the NT Resource Kit.

The "Secondary Logon service" or "RunAs service" must not be disabled if you want this function to work.

To unset the RunAs details, use the function with no parameters: RunAsSet().

 

Siehe auch

Run, RunErrorsFatal (Option), RunWait

 

Beispiel


; Set the RunAs parameters to use local adminstrator account
RunAsSet("Administrator", @Computername, "adminpassword")

; Run registry editor as admin
RunWait("regedit.exe")

; Reset user's permissions
RunAsSet()