cam_farineau
8 years agoContributor
Start TestExecute from TeamCity
Hi, To test our desktop application we have a Master project that runs the Slave project on different VMs. The Master project is started on a Management machine. We are currently moving our Buil...
- 8 years ago
I figured it out.
My problem was that I didn't disable "uiAccess" in the "TestExecute.exe.manifest".<security> <requestedPrivileges> <requestedExecutionLevel level="asInvoker" uiAccess="false"/> </requestedPrivileges> </security>
So the Desktop interaction was needed according to the Manifest of the app.
With this attribute to false, TE doesn't require a Desktop / UI Access. So I can start my test directly from TeamCity and this domain system account without interaction with the Desktop.
Thank you all for your help !!