In my release definition at VSO I have a Powershell script task (inline) to start a console application that hosts a microservice, but i cannot see any output of the window because its hidden.
Even if I connect to the agent's account via Remote Desktop on the server where the application should run, and start the release process again, it only starts visible in task manager.
Is there a way to start that console application in foreground so I can see the output?
That is my Powerhell script in the release-task
Start-Process -FilePath C:\microservicedepot\MicroserviceHostingClient.exe -Verb open -WindowStyle Maximized -argument "dev"
Thanks ;)