window-utils/src/WindowUtils-Install.ahk

16 lines
339 B
Plaintext

#Include options.ahk
GoSub, CheckInstall
return
CheckInstall:
FileCreateDir, %k_base%
FileInstall, config.ini, %k_config%, 0
FileInstall, WindowUtils.exe, %k_base%\WindowUtils.exe, 1
MsgBox, 36, WindowUtils, Installed successfully!`nWould you like to start WindowUtils?
IfMsgBox, Yes
{
Run, %k_base%\WindowUtils.exe
}
return