How To Start A Window Exe File In A Jenkins Job
I have a Jenkins job in which I need to start windows program. I've tried to use subprocess of Python to start the program, but it looks like when my python exits, the program also
Solution 1:
You'll want to use START to launch the program into a separate process.
Try START c:\myprogram.exe
Check following bash for a test.
@echo off echo "launching notepad.exe" notepad.exe echo "Marker 1" pause echo "launching notepad.exe with START" START notepad.exe echo "Marker 2" pause
Post a Comment for "How To Start A Window Exe File In A Jenkins Job"