comparison installer-files/octave-firsttime.vbs @ 4643:b0cb0218813c

start Octave with the '--gui' command-line option when starting the GUI (bug #53369) * installer-files/octave-firsttime.vbs: Run octave-gui.exe with '--gui'. * installer-files/octave.bat: Likewise. * installer-files/octave.vbs: Likewise.
author Mike Miller <mtmiller@octave.org>
date Mon, 26 Mar 2018 18:14:40 -0700
parents 0fdeee4cfe11
children c3950e2b4066
comparison
equal deleted inserted replaced
4642:4a54e62e7ea3 4643:b0cb0218813c
38 38
39 ' set directory to users 39 ' set directory to users
40 startpath = wshShell.ExpandEnvironmentStrings("%UserProfile%") 40 startpath = wshShell.ExpandEnvironmentStrings("%UserProfile%")
41 wshShell.CurrentDirectory = startpath 41 wshShell.CurrentDirectory = startpath
42 42
43 wshShell.Run chr(34) & OctavePath & "\bin\octave-gui.exe" & Chr(34), 0 43 wshShell.Run chr(34) & OctavePath & "\bin\octave-gui.exe --gui" & Chr(34), 0
44 44
45 ' free our objects 45 ' free our objects
46 Set fso = Nothing 46 Set fso = Nothing
47 Set wshShell = Nothing 47 Set wshShell = Nothing
48 Set wshSystemEnv = Nothing 48 Set wshSystemEnv = Nothing