Hi
I’m trying to run FinalBuilder8.exe with Jenkins in a way that Jenkins will not wait till FinalBuilder8.exe will exit.
I have tried these 3 ways but none work as expected, any ideas ?
( Jenkins is not running as a service but with jnlp which should allow interactive mode )
script {
  bat """
   SET COMMAND="C:\\Program Files (x86)\\FinalBuilder 8\\FinalBuilder8.exe" -a -r "C:\\TEST.fbp8"
   CALL %COMMAND%
   start %COMMAND%
   start "" %COMMAND%
  """
}