Archived
1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
U3Helper/U3H_appStart.ahk
mbirth 9f143344e0 x fixed bug in mb_EnvTools.ahk with not using EnvVars where the name was less than 2 characters (instead of not using EnvVars where the VALUE is less than 2 chars)
+ 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
2007-05-29 12:16:39 +00:00

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