Normally gmStudio is started by clicking Icon the gmStudio icon (e.g., start menu) , or by clicking a gmProj file. Then, the OS finds the executable and starts the application. gmStudio usually uses the folder where the running executable is located so it can find system configuration files so this . This location is stored in the registryRegistry.
In special cases, a users user might want to run a specific version of gmStudio rather than the last one installed and in . In that case, the location of the system configuration files can be determined by the Applicationthe Application.StartupPath
. The steps for running a specific version of gmStudio other than the installed version are as follows:1)
- Select the desired
...
- gmStudio Installer (
gmStudioSetup.msi
file) - Extract files to a desired location using
msiexec
...
- , for example:
Code Block |
---|
msiexec /a gmStudioSetup.msi /qb /l* 1install.log TARGETDIR=c:\temp\gmStudio |
3) .If running a version prior to the October 2017 release, edit gmStudio.cfg edit install folder to the location where you unpacked the files enter the name of the selected install folder in the gmStudio.cfg
configuration file, as follows:
"%AppExeFolder% -> install location
4) run Run gmStudio using the custom CFGconfiguration file:
Code Block |
---|
c:\temp\gmStudio\gmStudio.exe /CFG=c:\temp\gmStudio\gmStudio.cfg |
...