diff --git a/SuiteInstaller.nsi b/SuiteInstaller.nsi index 2c168b6..b645123 100644 --- a/SuiteInstaller.nsi +++ b/SuiteInstaller.nsi @@ -139,12 +139,12 @@ SectionGroup /e "HotkeySuite" Grp_HS Section "Default SnK Script" Sec_DEF_SCRIPT SetOverwrite on SetOutPath "$USER_APPDATA\${APPNAME}" - File /oname=on_hotkey.txt "snk_default_script.txt" + File "on_hotkey.txt" SectionEnd Section /o "" Sec_DEF_SCRIPT2 SetOverwrite on SetOutPath "$USER_APPDATA\${APPNAME}" - File /oname=on_hotkey.txt "snk_default_script.txt" + File "on_hotkey.txt" SectionEnd Section "Add to Autorun" Sec_AUTORUN IntOp $InstFeatures $InstFeatures | 1 diff --git a/snk_default_script.txt b/on_hotkey.txt similarity index 100% rename from snk_default_script.txt rename to on_hotkey.txt