diff options
author | Glenn Glazer <coyot@lindenlab.com> | 2017-05-17 16:12:18 -0700 |
---|---|---|
committer | Glenn Glazer <coyot@lindenlab.com> | 2017-05-17 16:12:18 -0700 |
commit | a31aecc730733b3f20eac4a6ae18b27e6676afe0 (patch) | |
tree | b3ae151a624c4f8d41413886abdf1b914a836f09 /indra/newview/installers | |
parent | 2150e038e8a2444bb108f9f48a95b3aef8c93bfa (diff) |
nerf launch from NSIS
Diffstat (limited to 'indra/newview/installers')
-rw-r--r-- | indra/newview/installers/windows/installer_template.nsi | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/indra/newview/installers/windows/installer_template.nsi b/indra/newview/installers/windows/installer_template.nsi index 1377cd7f21..0481c029ac 100644 --- a/indra/newview/installers/windows/installer_template.nsi +++ b/indra/newview/installers/windows/installer_template.nsi @@ -727,15 +727,15 @@ FunctionEnd ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; After install completes, launch app
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-Function .onInstSuccess
-Call CheckWindowsServPack # Warn if not on the latest SP before asking to launch.
- Push $R0 # Option value, unused
- StrCmp $SKIP_AUTORUN "true" +2;
+# Function .onInstSuccess
+# Call CheckWindowsServPack # Warn if not on the latest SP before asking to launch.
+# Push $R0 # Option value, unused#
+# StrCmp $SKIP_AUTORUN "true" +2;
# Assumes SetOutPath $INSTDIR
- Exec '"$WINDIR\explorer.exe" "$INSTDIR\autorun.bat"'
- Pop $R0
-
-FunctionEnd
+# Exec '"$WINDIR\explorer.exe" "$INSTDIR\autorun.bat"'
+# Pop $R0
+#
+# FunctionEnd
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Recommend Upgrading to Service Pack 1 for Windows 7, if not present
|