windows - Open Excel on Jenkins CI -
i working on windows 7 (logged in session no.1), jenkins ci running windows service in session 0. problem is.. want open excel file through jenkins ci in session 0, want display gui on session 1. i know session 0 isolated in windows 7, possible run process in session 0 , output in session? please help. edit: took little trial , error, worked me (windows 7 64-bit). download pstools microsoft site we need psexec.exe , can extract everything. extract location accessible jenkins, preferably without spaces in path. open elevated command prompt: type cmd start's quicksearch, right click cmd.exe , select run administrator . type c:\path\to\psexec.exe -accepteula , press enter. type c:\path\to\psexec.exe -i 1 cmd , press enter. (if see command prompt appear, good, close now) in job configuration, configure execute windows batch command step write following: c:\path\to\psexec.exe -accepteula && c:\path\to\psexec.exe -i 1 cmd /c start c:\progra~2\micros...