4
votes

I'm running jenkins on windows 7 as a service.

I'd like to run a very simple job which will start my firefox. (for example)

I configured a free style project and set up the "Execute windows batch command" option.

Here i have tried to insert couple of command which they all failed.

Commands like "echo hello" or other native command working as expected.

But command like "explorer " - should open the mentioned directory, or "c:\firefox.lnk" (should open firefox) are not working. The jenkins seems to be running but after while the job fails with an error.

How can i run these actions?

Thanks.

1
Please post the error that they fail with.Piccolo
I don't have any error. Jenkins keep running until i manually stop the job. This is the output i see : " Started by user anonymous Building in workspace C:\Program Files (x86)\Jenkins\jobs\Selenium2\workspace [workspace] $ cmd /c call C:\Users\Or\AppData\Local\Temp\hudson3311426922560007225.bat C:\Program Files (x86)\Jenkins\jobs\Selenium2\workspace>explorer . Build was aborted Finished: ABORTED "ork
In your case, the jenkin process run as service. The newly launched process explorer/firefox etc may be available on system console. I install and run VNC as a service to access the system consoleJayan
And with the VNC could i connect the jenkins service ?ork

1 Answers

3
votes

This might be a path issue, check if the System user has 'explorer' in its path. (see http://antagonisticpleiotropy.blogspot.nl/2012/08/running-jenkins-in-windows-with-regular.html)

Additionally: Windows 7 does not allow service processes to create a UI. See this other stackoverflow question: Service starting a process wont show GUI C#