Jump to content

jacobestepp

Members
  • Posts

    4
  • Joined

  • Last visited

Everything posted by jacobestepp

  1. Okay, what I am trying to do is automate a computer setup sequence. At certain times of the year, I can have more than 20 computers that need to be setup with several programs and one of the first steps I take is to open the command prompt as administrator and create an admin user account. at this point, I am just using the Users account that is set up as an administrator. so will this not fully work because I would have to change the user account in the "RunAs" section everytime?
  2. I am Very new to Autoit and I'm trying to figure out how to input text in an administrator Level Command prompt on windows 10. this is what I currently have Send ("#r") WinWaitActive("Run") Send("runas /user:Administrator cmd") Send("{Enter}") WinWait("C:\WINDOWS\system32\runas.exe") ControlClick("", "", "[CLASS:ConsoleWindowClass]") Send("test-Password") Send("{Enter}") The issue I am having is I can not send the "test-password" to the command prompt. I cried adding the ControlClick command to place the cursor in he CMD box, but its still not working. What am I doing wrong?
  3. 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}")
×
×
  • Create New...