Steven.Hawks
Steven.Hawks

Reputation: 25

Visual Studio 2019 C++ After Successed Build Run an .exe

How to make my Visual Studio 2019, running an custom exe after my C++ Build successfully compile?

i tried to insert into the PostEvent builds, following command: "start C:\Test.exe" but the executable starts while the compile is running ( compile completes only when i exit the Test.exe).

I wanted to start the Program directly after the compiler succesfully builds.

Thanks in advance.

enter image description here

Upvotes: 0

Views: 471

Answers (1)

Claudiu Guiman
Claudiu Guiman

Reputation: 877

It's not pretty but it does the job: powershell "Start-Process c:\test.exe"

Upvotes: 2

Related Questions