home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 January / PCWELT_1_2006.ISO / pcwsoft / autoit-v3-setup.exe / Examples / RunAsSet.au3 < prev    next >
Encoding:
Text File  |  2004-09-22  |  221 b   |  9 lines

  1. ; Set the RunAs parameters to use local adminstrator account
  2. RunAsSet("Administrator", @Computername, "adminpassword")
  3.  
  4. ; Run registry editor as admin
  5. RunWait("regedit.exe")
  6.  
  7. ; Reset user's permissions
  8. RunAsSet()
  9.