Can XRun Close A Program?

We use XRun to run a program… can it also close the same program it opened?

Just have XRun call a script which closes your program. For example in PowerShell:

Stop-Process -Name MyProgram

or BatchFile:

taskkill /IM MyProgram.exe /T /F

Thanks, User9898. Cool!