jacobestepp Posted July 3, 2018 Posted July 3, 2018 I am very new to AUTOIT (Like about 5 minutes) I run through the same check list to install software and and set up new computers maybe 20-30 times a month, so I figure this will perfect for my situation. I am working on a script that will install several components, but I'm having an issue early on. I need the script to open the command prompt as administrator in windows 10 on a fresh install. so there will be a User setup in the computer with admin rights, but it will be a different user on every machine. how can I open the command prompt and write text to it as administrator? Send ("#r") WinWaitActive("Run") Send("runas /user:Administrator cmd") Send("{Enter}")
Subz Posted July 4, 2018 Posted July 4, 2018 (edited) Use #RequireAdmin at the top of your script Or ShellExecute("CMD", "/k", "", "RunAs") Edited July 4, 2018 by Subz
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now