You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
;Get installation folder from registry if available
25
+
InstallDirRegKeyHKCU"Software\${PRODUCT_NAME}"""
26
+
27
+
;Request application privileges for Windows Vista
28
+
RequestExecutionLeveladmin
29
+
30
+
;Specifies whether or not the installer will perform a CRC on itself before allowing an install
31
+
CRCCheckon
32
+
33
+
;Sets whether or not the details of the install are shown. Can be 'hide' (the default) to hide the details by default, allowing the user to view them, or 'show' to show them by default, or 'nevershow', to prevent the user from ever seeing them.
34
+
ShowInstDetailsshow
35
+
36
+
;Sets whether or not the details of the uninstall are shown. Can be 'hide' (the default) to hide the details by default, allowing the user to view them, or 'show' to show them by default, or 'nevershow', to prevent the user from ever seeing them.
37
+
ShowUninstDetailsshow
38
+
39
+
;Sets the colors to use for the install info screen (the default is 00FF00 000000. Use the form RRGGBB (in hexadecimal, as in HTML, only minus the leading '#', since # can be used for comments). Note that if "/windows" is specified as the only parameter, the default windows colors will be used.
40
+
InstallColors/windows
41
+
42
+
;This command sets the compression algorithm used to compress files/data in the installer. (http://nsis.sourceforge.net/Reference/SetCompressor)
43
+
SetCompressor/SOLIDlzma
44
+
45
+
;Sets the dictionary size in megabytes (MB) used by the LZMA compressor (default is 8 MB).
46
+
SetCompressorDictSize64
47
+
48
+
;Sets the text that is shown (by default it is 'Nullsoft Install System vX.XX') in the bottom of the install window. Setting this to an empty string ("") uses the default; to set the string to blank, use " " (a space).
;Sets what the titlebars of the installer will display. By default, it is 'Name Setup', where Name is specified with the Name command. You can, however, override it with 'MyApp Installer' or whatever. If you specify an empty string (""), the default will be used (you can however specify " " to achieve a blank string)
52
+
Caption"${PRODUCT_NAME}"
53
+
54
+
;Adds the Product Version on top of the Version Tab in the Properties of the file.
55
+
VIProductVersion1.0.0.0
56
+
57
+
;VIAddVersionKey - Adds a field in the Version Tab of the File Properties. This can either be a field provided by the system or a user defined field.
0 commit comments