Running batch file as admin from Test Complete
SOLVED- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
Solved! Go to Solution.
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Sudha,
As @VladYatskovskiy said, processes started from TestComplete inherit its level of permissions.
What I would recommend is to start your batch file via Powershell and command it to launch this batch file with elevated permissions (https://stackoverflow.com/questions/7690994/powershell-running-a-command-as-administrator, https://ss64.com/ps/syntax-elevate.html).
/Alex [Community Champion]
____
[Community Champions] are not employed by SmartBear Software but
are just volunteers who have some experience with the tools by SmartBear Software
and a desire to help others. Posts made by [Community Champions]
may differ from the official policies of SmartBear Software and should be treated
as the own private opinion of their authors and under no circumstances as an
official answer from SmartBear Software.
The [Community Champion] signature is assigned on quarterly basis and is used with permission by SmartBear Software.
https://community.smartbear.com/t5/Community-Champions/About-the-Community-Champions-Program/gpm-p/252662
================================
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
Robert Martin
[Hall of Fame]
Please consider giving a Kudo if I write good stuff
----
Why automate? I do automated testing because there's only so much a human being can do and remain healthy. Sleep is a requirement. So, while people sleep, automation that I create does what I've described above in order to make sure that nothing gets past the final defense of the testing group.
I love good food, good books, good friends, and good fun.
Mysterious Gremlin Master
Vegas Thrill Rider
Extensions available
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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.
