+ implemented multi-commands on all 4 events (hostConfigure, appStart, appStop, hostCleanUp) x hostCleanUp-CopyDataFiles showed ERR instead of SKP * grouped translation errors instead of displaying one MsgBox per error + added trying to delete single registry value if key is not found
52 lines
1.0 KiB
AutoHotkey
52 lines
1.0 KiB
AutoHotkey
EnvSet USERPROFILE, %U3_APP_DATA_PATH%
|
|
|
|
; %HOMEPATH% is without drive letter and colon, do it also here
|
|
EnvGet eSystemDrive, SystemDrive
|
|
StringReplace eHOMEPATH, U3_APP_DATA_PATH, %eSystemDrive%
|
|
EnvSet HOMEPATH, %U3_APP_DATA_PATH%
|
|
EnvSet HOMEDRIVE, % EnvValue("U3_DEVICE_PATH")
|
|
EnvSet APPDATA, % U3_APP_DATA_PATH . "\" . ADn
|
|
|
|
; add custom PATH directories
|
|
EnvGet ePATH, PATH
|
|
IniGetKeys("envdir", INIFile, "EnvPath")
|
|
Loop %envdir0%
|
|
{
|
|
CurPath := envdir%A_Index%
|
|
CurPath := EnvParseStr(CurPath)
|
|
|
|
ePATH := CurPath . ";" . ePATH
|
|
}
|
|
EnvSet PATH, %ePATH%
|
|
|
|
EnvGet APPDATA, APPDATA
|
|
IfNotExist %APPDATA%
|
|
{
|
|
FileCreateDir %APPDATA%
|
|
}
|
|
IfNotExist %U3_APP_DATA_PATH%\%LSn%\%LADn%
|
|
{
|
|
FileCreateDir %U3_APP_DATA_PATH%\%LSn%\%LADn%
|
|
}
|
|
|
|
SetWorkingDir %U3_HOST_EXEC_PATH%
|
|
|
|
Loop %runsta0%
|
|
{
|
|
CurCmd := runsta%A_Index%
|
|
CurCmd := EnvParseStr(CurCmd)
|
|
RunWait %CurCmd%
|
|
}
|
|
|
|
cmdl := AppExe
|
|
Loop %0%
|
|
{
|
|
If (A_Index > 1)
|
|
{
|
|
cmdl := cmdl . " " . %A_Index%
|
|
}
|
|
}
|
|
OnExit ASOnExit
|
|
RunWait %cmdl%
|
|
OnExit
|