groostav
04/25/2017, 6:31 PMprocess.start()
call from when I run the target under intelliJ, and under an IntelliJ ant target than when I run it from install4j. This is on windows 7. Interestingly the behavior difference disappears on our (newer) windows 10 machines. Anybody here got some thoughts about what the difference might be?groostav
04/26/2017, 6:30 PMjavaw
vs java
. Windows apparently has some concept of a console window, where processes can either have a console window or they can not have a console window (even if they spawn several later in their life cycles). Abaqus, being an ancient piece of software, was not willing to tolerate being `Process.start()`'d by a young-upstart-non-console'd process, which is what our software is. There must be come old API on the windows process object. Infuriating.groostav
04/26/2017, 6:31 PMdalexander
04/26/2017, 6:32 PMgroostav
04/26/2017, 6:46 PMif(WIN_7) doA() else if (WIN_10) doB()
, I'll never knowgroostav
04/26/2017, 6:46 PMdalexander
04/26/2017, 6:51 PM