Jump to content

rajeevrra

Members
  • Posts

    9
  • Joined

  • Last visited

Everything posted by rajeevrra

  1. I will refrain from posting here on this thread.. if its causing a problem..
  2. I have clearly told, I am experimenting a piece of code for my utility software.. Thanks
  3. Greetings, I tried the below code: , I am getting : #include "hiddenDesktopInteract.au3" - Error opening File. Please help me resolve if possible. As I am relatively new in AuToIT. Thanks and take care <snip>
  4. @JockoDundee - Well, I am just trying a small utility software project and was thinking how to execute the same. Thanks and take care.
  5. Ok @Danp2, sorry about that. I'll check the earlier thread. Well, I am just trying a small project and was thinking how to execute the same. Thanks for your suggestion. Take Care.. Rajeev Raghu Raman Arunachalam
  6. I am wanting to run the below CMD command in hidden or silent or background mode (not visible to user) and then the window re appear after the code execution is complete. #RequireAdmin Sleep(2000) Send('{LWIN}') Sleep(2000) Send("cmd") Sleep(2000) Send ('{SHIFTDOWN}') Send('{CTRLDOWN}') Send('{ENTER}') Send('{CTRLUP}') Send('{SHIFTUP}') Sleep(3000) ;Below Code has to be in background window execution(CMD Window) WinActivate ( "Adminstrator: Command Prompt" ) Sleep(2000) Send("ping www.speedtest.net") Send('{ENTER}') Sleep(6000) ;Background CMD Window must now come to foreground as code execution is complete.
  7. Thanks a bunch for your replies - @Jos, @JockoDundee and @Subz. Your help and support is appreciated. I will check and revert as needed. Take Care
  8. Greetings AutoIT Support, I am unable to send keys in CMD when I am in CMD- Administrator mode, but Send Keys is working fine in regular (Non-Admin ) mode. Below is the code snippet: Sleep(2000) Send('{LWIN}') Sleep(2000) Send("cmd") Sleep(2000) Send ('{SHIFTDOWN}') Send('{CTRLDOWN}') Send('{ENTER}') Send('{CTRLUP}') Send('{SHIFTUP}') Sleep(3000) WinActivate ( "Adminstrator: Command Prompt" ) Sleep(2000) Send("ping www.speedtest.net") ' This is where the error is' Sleep(2000) Send('{ENTER}') Sleep(200) Please help and support. Thanks Rajeev RA
×
×
  • Create New...