ContributionsMost RecentMost LikesSolutionsRe: Community Day 2021 - A Test Lab and How to Maintain It Marsha_R In fact, we use the same system to run tests of ReadyAPI and QAComplete. The parts of lab for these products have their specifics, like RAPI part containing a lot of Linux based virtual machines; of course this products have their own sets of requirements for tests and so on. It seems that base idea of the system showed that it has enough flexibility at least for listed products. Re: Community Day 2021 - A Test Lab and How to Maintain It Hello! I'm glad to hear that it was interesting for you ! Feel free to ask if there are points that you would like to hear in more detail. BTW It would be great if you could share some of your experience in this field. Re: Display TestExecute/TestComplete results on TeamCity build log Hello. I'm not familiar with TeamCity, but it seems that combining " captureStandardOutput='true' " flag of TeamCity test, and handling TC\TE exit code in your batch files as it described here: https://support.smartbear.com/testcomplete/docs/working-with/automating/command-line-and-exit-codes/exit-codes.html may help you. Re: Running TestExecute from Powershell - TestExecute.exe is not a valid project. Hello. If you look at actual command line of launched process you will see: "C:\PROGRA~2\SMARTB~1\TESTEX~2\Bin\TESTEX~1.EXE" "C:\Program Files (x86)\SmartBear\TestExecute 14\Bin\TestExecute.exe" That's where source of the error lies -- PowerShell transfers full path to TestExecute.exe as the first command line argument of the created process. Best way to launch some executable from PowerShell script is to use Start-Proccess cmdlet. You may take a look at this usefull arcticle about launching processes form PowerShell: https://social.technet.microsoft.com/wiki/contents/articles/7703.powershell-running-executables.aspx#Start-Process_start_saps Re: Running batch file as admin from Test Complete 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