0

this below python command works normally to open an excel file when using IDE

import os os.system('start excel.exe FILE.xlsx')

but after implementing on Jenkins CI, it did not give me any output! so, i would like to know how to launch excel.exe on Jenkins CI ?

parawee
  • 43
  • 1
  • 6
  • What OS is your Jenkins running on? It probably launched, but in session 0 – Slav Mar 20 '14 at 13:30
  • @Slav: Running on Windows7, and is it possible to display the output which is running in the session 0 ? – parawee Mar 20 '14 at 14:22
  • Actually, session 0 is [isolated in Windows 7](http://blogs.windows.com/windows/archive/b/developers/archive/2009/10/01/session-0-isolation.aspx). – Slav Mar 20 '14 at 14:40
  • possible duplicate of [Open Excel on Jenkins CI](http://stackoverflow.com/questions/22602951/open-excel-on-jenkins-ci) – Slav Mar 24 '14 at 16:23

1 Answers1

0

Edit: my answer is here Open Excel on Jenkins CI

Community
  • 1
  • 1
Slav
  • 27,057
  • 11
  • 80
  • 104