Re: Run a program (as a .exe file) as a post build task

2012-11-06 Thread Roshan
Anybody has idea how to do this? On Monday, November 5, 2012 1:59:55 PM UTC+11, Roshan wrote: Hi Currently I am using Jenkins ver. 1.488 http://jenkins-ci.org/ to build my maven 3 project. As a part of the build process, I want to execute an application program (.exe file on windows 7) as

Re: Run a program (as a .exe file) as a post build task

2012-11-06 Thread Mark Waite
If the ideas listed on that page didn't work, you could attempt to define the program to run as a service (google for exe to service for some possible examples).  At the end of your job, you would NET STOP ServiceName, replace the executable with our service, then NET START ServiceName. Mark