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")
Contro...