Forum Discussion

kandy1984's avatar
kandy1984
Contributor
6 years ago
Solved

Running batch file as admin from Test Complete

Hi,

I have a batch file which needs to be run as adminstrator. This batch file contains scripts to start and stop a service and windows 10 only lets it to be executed as administrator. How can i run this batch script as administrator in TestComplete's TestedApps?

 

Thank you for helping,

Sudha

  • If you have the option, you could always run TestComplete as an administrator.  I don't know if this is a security/policy issue for you.  When you do so, then anything you execute within TestComplete is run with that privilege level.  

    That said, rather than using a batch file, you could always use the WshShell Object to execute a command line to start/stop as service.  This is what I've used in the past and is much easier to keep track of than the location and contents of batch files.  See https://support.smartbear.com/testcomplete/docs/reference/program-objects/wshshell/index.html

4 Replies

  • tristaanogre's avatar
    tristaanogre
    Esteemed Contributor

    If you have the option, you could always run TestComplete as an administrator.  I don't know if this is a security/policy issue for you.  When you do so, then anything you execute within TestComplete is run with that privilege level.  

    That said, rather than using a batch file, you could always use the WshShell Object to execute a command line to start/stop as service.  This is what I've used in the past and is much easier to keep track of than the location and contents of batch files.  See https://support.smartbear.com/testcomplete/docs/reference/program-objects/wshshell/index.html

    • kandy1984's avatar
      kandy1984
      Contributor

      Thanks to everyone for the replies. I ran TestComplete as an administrator as Robert Martin suggested and i could run the batch file as an administrator.

  • VladYatskovskiy's avatar
    VladYatskovskiy
    SmartBear Alumni (Retired)

    Hello.
    At the moment there is no integrated functionality in TestComplete which let you run TestedApps with elevated token if TestComplete itself runs without it. However if some environment preconfiguration is acceptable in your testing scenario you can use Windows Task Scheduler to workaround this limitation. Just create a new task which runs your batch with "Run with the highest privileges" parameter set to enabled and launch this task from TestedAps. You can find additional information about creation and launch of Windows tasks here:
    https://docs.microsoft.com/en-us/windows/desktop/taskschd/schtasks