
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@7301 212acab6-be3b-0410-9dea-997c60f758d6
496 lines
27 KiB
Text
496 lines
27 KiB
Text
\H{instattribs} Installer Attributes
|
|
|
|
\S1{attribgen} General Attributes
|
|
|
|
The commands below all adjust attributes of the installer. These attributes control how the installer looks and functions, including which pages are present in the installer, which text is displayed in each part of each page, the name of the installer, the icon the installer uses, the default installation directory and more. Note that these attributes can be set anywhere in the file except in a \R{ssection}{Section} or \R{ffunction}{Function}.
|
|
|
|
\\<b\\>\\<u\\>Defaults are bold and underlined\\</u\\>\\</b\\>
|
|
|
|
\S2{aaddbrandingimage} AddBrandingImage
|
|
|
|
\c (left|right|top|bottom) (width|height) [padding]
|
|
|
|
Adds a branding image on the top, bottom, left, or right of the installer. Its size will be set according to the width/height specified, the installer width/height and the installers font. The final size will not always be what you requested; have a look at the output of the command for the actual size. Because this depends on the installers font, you should use \R{asetfont}{SetFont} before AddBrandingImage. The default padding value is 2. The numbers can be suffixed with \c{u} to specify dialog units instead of pixels.
|
|
|
|
AddBrandingImage only adds a placeholder for an image. To set the image itself at runtime, use \R{setbrandingimage}{SetBrandingImage}.
|
|
|
|
\c AddBrandingImage left 100
|
|
\c AddBrandingImage right 50
|
|
\c AddBrandingImage top 20u 3u
|
|
\c AddBrandingImage bottom 35
|
|
\c AddBrandingImage left 100 5
|
|
|
|
\S2{aallowrootdirinstall} AllowRootDirInstall
|
|
|
|
\c true|\\<b\\>false\\</b\\>
|
|
|
|
Controls whether or not installs are allowed in the root directory of a drive, or directly into a network share. Set to 'true' to change the safe behavior, which prevents users from selecting C:\\ or \\\\Server\\Share as an install (and later on, uninstall) directory. For additional directory selection page customizability, see \R{onverifyinstdir}{.onVerifyInstDir}.
|
|
|
|
\S2{aautoclosewindow} AutoCloseWindow
|
|
|
|
\c true|\\<b\\>false\\</b\\>
|
|
|
|
Sets whether or not the install window automatically closes when completed. This is overrideable from a section using \R{setautoclose}{SetAutoClose}.
|
|
|
|
\S2{abgfont} BGFont
|
|
|
|
\c [font_face [height [weight] [/ITALIC] [/UNDERLINE] [/STRIKE]]]
|
|
|
|
Specifies the font used to show the text on the background gradient. To set the color use \R{abggradient}{BGGradient}. The default font will be used if no parameters are specified. The default font is bold and italic Times New Roman.
|
|
|
|
\S2{abggradient} BGGradient
|
|
|
|
\c [\\<b\\>off\\</b\\>|(topc botc [textcolor|notext])]
|
|
|
|
Specifies whether or not to use a gradient background window. If 'off', the installer will not show a background window, if no parameters are specified, the default black to blue gradient is used, and otherwise the top_color or bottom_color are used to make a gradient. Top_color and bottom_color are specified using the form RRGGBB (in hexadecimal, as in HTML, only minus the leading '#', since # can be used for comments). 'textcolor' can be specified as well, or 'notext' can be specified to turn the big background text off.
|
|
|
|
\S2{abrandingtext} BrandingText
|
|
|
|
\c /TRIM(LEFT|RIGHT|CENTER) text
|
|
|
|
Sets the text that is shown at the bottom of the install window (by default it is 'Nullsoft Install System vX.XX'). Setting this to an empty string ("") uses the default; to set the string to blank, use " " (a space). If it doesn't matter to you, leave it the default so that everybody can know why the installer didn't suck :). Use /TRIMLEFT, /TRIMRIGHT or /TRIMCENTER to trim down the size of the control to the size of the string.
|
|
|
|
Accepts variables. If variables are used, they must be initialized on \R{oninit}{.onInit}.
|
|
|
|
\S2{acaption} Caption
|
|
|
|
\c caption
|
|
|
|
When used outside a \R{pageex}{PageEx} block: Sets the text for the titlebar of the installer. By default it is '$(^Name) Setup', where Name is specified by the \R{aname}{Name} instruction. You can however override it with 'MyApp Installer' or whatever. If you specify an empty string (""), the default will be used (you can specify " " to simulate a empty string).
|
|
|
|
When used inside a \R{pageex}{PageEx} block: Sets the subcaption of the current page.
|
|
|
|
Accepts variables. If variables are used, they must be initialized on \R{oninit}{.onInit} or \R{onguiinit}{.onGUIInit}.
|
|
|
|
\S2{achangeui} ChangeUI
|
|
|
|
\c dialog ui_file.exe
|
|
|
|
Replaces dialog (\e{IDD_LICENSE}, \e{IDD_DIR}, \e{IDD_SELCOM}, \e{IDD_INST}, \e{IDD_INSTFILES}, \e{IDD_UNINST} or \e{IDD_VERIFY}) with a dialog from ui_file.exe with the same resource ID. You can also specify 'all' as the dialog if you wish to replace all 7 of the dialogs at once from the same UI file. For some example UIs look at Contrib\\UIs under your NSIS directory.
|
|
|
|
\b \e{IDD_LICENSE} must contain \e{IDC_EDIT1} (RICHEDIT control).
|
|
|
|
\b \e{IDD_DIR} must contain \e{IDC_DIR} (edit box), \e{IDC_BROWSE} (button) and \e{IDC_CHECK1} (checkbox).
|
|
|
|
\b \e{IDD_SELCOM} must contain \e{IDC_TREE1} (SysTreeView32 control), and \e{IDC_COMBO1} (combo box).
|
|
|
|
\b \e{IDD_INST} must contain \e{IDC_BACK} (button), \e{IDC_CHILDRECT} (static control the size of all other dialogs), \e{IDC_VERSTR} (static), \e{IDOK} (button), and \e{IDCANCEL} (button). If an image control (static with \e{SS_BITMAP} style) will be found in this dialog it will be used as the default for \R{setbrandingimage}{SetBrandingImage}.
|
|
|
|
\b \e{IDD_INSTFILES} must contain \e{IDC_LIST1} (SysListView32 control), \e{IDC_PROGRESS} (msctls_progress32 control), and \e{IDC_SHOWDETAILS} (button).
|
|
|
|
\b \e{IDD_UNINST} must contain \e{IDC_EDIT1} (edit box).
|
|
|
|
\b \e{IDD_VERIFY} must contain \e{IDC_STR} (static).
|
|
|
|
\c ChangeUI all "${NSISDIR}\Contrib\UIs\sdbarker_tiny.exe"
|
|
|
|
\S2{acheckbitmap} CheckBitmap
|
|
|
|
\c bitmap.bmp
|
|
|
|
Specifies the bitmap with the checkbox images used in the component-selection page treeview.
|
|
|
|
This bitmap should have a size of 96x16 pixels, no more than 8bpp (256 colors) and contain six 16x16 images for the different states (in order: selection mask, not checked, checked, greyed out, unchecked & read-only, checked & read-only). Use magenta as mask color (this area will be transparent).
|
|
|
|
\S2{acompletedtext} CompletedText
|
|
|
|
\c text
|
|
|
|
Replaces the default text ("Completed") that is printed at the end of the install if parameter is specified. Otherwise, the default is used.
|
|
|
|
Accepts variables. If variables are used, they must be initialized before the message is printed.
|
|
|
|
\S2{acomponenttext} ComponentText
|
|
|
|
\c [text [subtext] [subtext2]]
|
|
|
|
Used to change the default text on the component page.
|
|
|
|
text: Text above the controls, to the right of the installation icon.
|
|
|
|
subtext: Text next to the installation type selection.
|
|
|
|
subtext2: Text to the left of the components list and below the installation type.
|
|
|
|
The default string will be used if a string is empty ("").
|
|
|
|
Accepts variables. If variables are used, they must be initialized before the components page is created.
|
|
|
|
\S2{acrccheck} CRCCheck
|
|
|
|
\c \\<b\\>on\\</b\\>|off|force
|
|
|
|
Specifies whether or not the installer will perform a CRC on itself before allowing an install. Note that if the user uses /NCRC on the command line when executing the installer, and you didn't specify 'force', the CRC will not occur, and the user will be allowed to install a (potentially) corrupted installer.
|
|
|
|
\S2{adetailsbuttontext} DetailsButtonText
|
|
|
|
\c show_details_text
|
|
|
|
Replaces the default details button text of "Show details", if parameter is specified (otherwise the default is used).
|
|
|
|
Accepts variables. If variables are used, they must be initialized before the install log (instfiles) page is created.
|
|
|
|
\S2{adirtext} DirText
|
|
|
|
\c [text] [subtext] [browse_button_text] [browse_dlg_text]
|
|
|
|
Used to change the default text on the directory page.
|
|
|
|
text: Text above the controls, to the right of the installation icon.
|
|
|
|
subtext: Text on the directory selection frame.
|
|
|
|
browse_button_text: Text on the Browse button.
|
|
|
|
browse_dlg_text: Text on the "Browse For Folder" dialog, appears after clicking on "Browse" button.
|
|
|
|
The default string will be used if a string is empty ("").
|
|
|
|
Accepts variables. If variables are used, they must be initialized before the directory page is created.
|
|
|
|
\S2{adirvar} DirVar
|
|
|
|
\c user_var(dir input/output)
|
|
|
|
Specifies which variable is to be used to contain the directory selected. This variable should be initialized with a default value. This allows you to easily create two different directory pages that will not require you to move values in and out of $INSTDIR. The default variable is $INSTDIR. This can only be used in \R{pageex}{PageEx} for directory and uninstConfirm pages.
|
|
|
|
\c Var ANOTHER_DIR
|
|
\c PageEx directory
|
|
\c DirVar $ANOTHER_DIR
|
|
\c PageExEnd
|
|
\c
|
|
\c Section
|
|
\c SetOutPath $INSTDIR
|
|
\c File "a file.dat"
|
|
\c SetOutPath $ANOTHER_DIR
|
|
\c File "another file.dat"
|
|
\c SectionEnd
|
|
|
|
\S2{adirverify} DirVerify
|
|
|
|
\c \\<b\\>auto\\</b\\>|leave
|
|
|
|
If `\R{adirverify}{DirVerify} leave' is used, the Next button will not be disabled if the installation directory is not valid or there is not enough space. A flag that you can read in the leave function using \R{getinstdirerror}{GetInstDirError} will be set instead.
|
|
|
|
\c PageEx directory
|
|
\c DirVerify leave
|
|
\c PageCallbacks "" "" dirLeave
|
|
\c PageExEnd
|
|
|
|
\S2{a} FileErrorText
|
|
|
|
\c file_error_text [noignore_file_error_text]
|
|
|
|
Replaces the default text that comes up when a file cannot be written to. This string can contain a reference to $0, which is the filename ($0 is temporarily changed to this value). Example: "Can not write to file $\\r$\\n$0$\\r$\\ngood luck.".
|
|
|
|
Accepts variables. If variables are used, they must be initialized before \R{file}{File} is used.
|
|
|
|
\S2{aicon} Icon
|
|
|
|
\c [path\]icon.ico
|
|
|
|
Sets the icon of the installer. Every image in the icon file will be included in the installer. Use \R{auninstallicon}{UninstallIcon} to set the uninstaller icon.
|
|
|
|
\S2{ainstallbuttontext} InstallButtonText
|
|
|
|
\c install_button_text
|
|
|
|
If parameter is specified, overrides the default install button text (of "Install") with the specified text.
|
|
|
|
Accepts variables. If variables are used, they must be initialized before the install button shows.
|
|
|
|
\S2{ainstallcolors} InstallColors
|
|
|
|
\c /windows | (foreground_color background_color)
|
|
|
|
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.
|
|
|
|
\S2{ainstalldir} InstallDir
|
|
|
|
\c definstdir
|
|
|
|
Sets the default installation directory. See the \R{variables}{variables section} for variables that can be used to make this string (especially $PROGRAMFILES). Note that the part of this string following the last \\ will be used if the user selects 'browse', and may be appended back on to the string at install time (to disable this, end the directory with a \\ (which will require the entire parameter to be enclosed with quotes). If this doesn't make any sense, play around with the browse button a bit.
|
|
|
|
\S2{ainstalldirregkey} InstallDirRegKey
|
|
|
|
\c root_key subkey key_name
|
|
|
|
This attribute tells the installer to check a string in the registry and use it as the install dir if that string is valid. If this attribute is present, it will override the \R{ainstalldir}{InstallDir} attribute if the registry key is valid, otherwise it will fall back to the \R{ainstalldir}{InstallDir} value. When querying the registry, this command will automatically remove any quotes. If the string ends in ".exe", it will automatically remove the filename component of the string (i.e. if the string is "C:\\Program Files\\Foo\\app.exe", it will know to use "C:\\Program Files\\Foo"). For more advanced install directory configuration, set $INSTDIR in .onInit.
|
|
|
|
Language strings and variables cannot be used with \R{ainstalldirregkey}{InstallDirRegKey}.
|
|
|
|
\c InstallDirRegKey HKLM Software\NSIS ""
|
|
\c InstallDirRegKey HKLM Software\ACME\Thingy InstallLocation
|
|
|
|
\S2{ainstprogressflags} InstProgressFlags
|
|
|
|
\c [flag [...]]
|
|
|
|
Valid values for flag are "smooth" (smooth the progress bar) or "colored" (color the progress bar with the colors set by \R{ainstallcolors}{InstallColors}. Examples: "InstProgressFlags" (default old-school windows look), "InstProgressFlags smooth" (new smooth look), "InstProgressFlags smooth colored" (colored smooth look whee). Note: neither "smooth" or "colored" work with \R{axpstyle}{XPStyle} on when the installer runs on Windows XP with a modern theme.
|
|
|
|
\S2{ainsttype} InstType
|
|
|
|
\c install_type_name [index_output] | /NOCUSTOM | /CUSTOMSTRING=str | /COMPONENTSONLYONCUSTOM
|
|
|
|
Adds an install type to the install type list, or disables the custom install type. There can be as many as \#{NSIS_MAX_INST_TYPES}32 types, each one specifying the name of the install type. If the name is prefixed with 'un.' it is an uninstaller install type. The name can contain variables which will be processed at runtime before the components page shows. Another way of changing the \R{ainsttype}{InstType} name during runtime is the \R{sinsttypesettext}{InstTypeSetText} command. The difference is that with \R{sinsttypesettext}{InstTypeSetText} you are saving your precious user variables. The first type is the default (generally 'Typical' or 'Full'). If the /NOCUSTOM switch is specified, then the "custom" install type is disabled, and the user has to choose one of the pre-defined install types. Alternatively, if the /CUSTOMSTRING switch is specified, the parameter will override the "Custom" install type text. Alternatively, if the /COMPONENTSONLYONCUSTOM flag is specified, the component list will only be shown if the "Custom" install type is selected.
|
|
|
|
Accepts variables for type names. If variables are used, they must be initialized before the components page is created.
|
|
|
|
\R{ssectioninsttype}{SectionInstType} is used to bind \cw{Section}s to install types.
|
|
|
|
\S2{alicensebkcolor} LicenseBkColor
|
|
|
|
\c color | \\<b\\>/gray\\</b\\> | /windows
|
|
|
|
Sets the background color of the license data. Color is specified using the form RRGGBB (in hexadecimal, as in HTML, only minus the leading '#', since # can be used for comments). Default is '/gray'. You can also use the Windows OS defined color by using '/windows'.
|
|
|
|
\S2{alicensedata} LicenseData
|
|
|
|
\c licdata.(txt|rtf)
|
|
|
|
Specifies a text file or a RTF file to use for the license that the user can read. Omit this to not have a license displayed. Note that the file must be in DOS text format (\\r\\n). To define a multilingual license data use \R{licenselangstring}{LicenseLangString}.
|
|
|
|
If you are using a RTF file it is recommended that you edit it with WordPad and not MS Word. Using WordPad will result in a much smaller file.
|
|
|
|
Use \R{licenselangstring}{LicenseLangString} to show a different license for every language.
|
|
|
|
\S2{alicenseforceselection} LicenseForceSelection
|
|
|
|
\c (checkbox [accept_text] | radiobuttons [accept_text] [decline_text] | \\<b\\>off\\</b\\>)
|
|
|
|
Specifies if the displayed license must be explicitly accepted or not. This can be done either by a checkbox or by radiobuttons. By default the "next button" is disabled and will only be enabled if the checkbox is enabled or the correct radio button is selected. If off is specified the "next button" is enabled by default.
|
|
|
|
\c LicenseForceSelection checkbox
|
|
\c LicenseForceSelection checkbox "i accept"
|
|
\c LicenseForceSelection radiobuttons
|
|
\c LicenseForceSelection radiobuttons "i accept"
|
|
\c LicenseForceSelection radiobuttons "i accept" "i decline"
|
|
\c LicenseForceSelection radiobuttons "" "i decline"
|
|
\c LicenseForceSelection off
|
|
|
|
\S2{alicensetext} LicenseText
|
|
|
|
\c [text [button_text]]
|
|
|
|
Used to change the default text on the license page.
|
|
|
|
text: Text above the controls, to the right of the installation icon.
|
|
|
|
button_text: Text on the "I Agree" button.
|
|
|
|
The default string will be used if a string is empty ("").
|
|
|
|
Accepts variables. If variables are used, they must be initialized before the license page is created.
|
|
|
|
|
|
\S2{amanifestdpiaware} ManifestDPIAware
|
|
|
|
\c \\<b\\>notset\\</b\\>|true|false
|
|
|
|
\# Note: true==System. PerMonitor is not documented because it is not fully supported yet, we need to handle WM_DPICHANGED.
|
|
\# Example: ManifestDPIAware System ; System DPI on Vista/7/8/8.1/10(<10.1607(AU))
|
|
\# Example: ManifestDPIAwareness "PerMonitorV2,System" ; PMv2 on 10.1703(CU)+, System on 10.1607(AU)
|
|
|
|
Declare that the installer is DPI-aware. A DPI-aware application is not scaled by the DWM (DPI virtualization) so the text is never blurry. NSIS does not scale the bitmap used by the tree control on the component page and some plugins might have compatibility issues so make sure that you test your installer at different DPI settings if you select \e{true}.
|
|
|
|
See \W{http://msdn.microsoft.com/en-us/library/dd464660}{MSDN} for more information about DPI-aware applications.
|
|
|
|
\# \S2{amanifestdpiawareness} ManifestDPIAwareness
|
|
\#
|
|
\# \c \\<b\\>notset\\</b\\>|comma_separated_string
|
|
|
|
\S2{amanifestlongpathaware} ManifestLongPathAware
|
|
|
|
\c \\<b\\>notset\\</b\\>|true|false
|
|
|
|
Declare that the installer can handle paths longer than MAX_PATH. Only supported on Windows 10 Anniversary Update and later.
|
|
|
|
\NsisWarnBlockContainerBegin
|
|
\\<b\\>Note: \\</b\\> Instructions like CopyFiles and CreateShortcut do not support long paths!
|
|
\NsisWarnBlockContainerEnd
|
|
|
|
\NsisWarnBlockContainerBegin
|
|
\\<b\\>Note: \\</b\\> Has no effect if the "Enable Win32 long paths" policy is not enabled.
|
|
\NsisWarnBlockContainerEnd
|
|
|
|
\S2{amanifestsupportedos} ManifestSupportedOS
|
|
|
|
\c none|all|WinVista|\\<b\\>Win7|Win8|Win8.1|Win10\\</b\\>|{GUID} [...]
|
|
|
|
Declare that the installer is compatible with the specified Windows version(s). This adds a SupportedOS entry in the compatibility section of the application manifest. The default is Win7+8+8.1+10. \e{none} is the default if \R{arequestexecutionlevel}{RequestExecutionLevel} is set to \e{none} for compatibility reasons.
|
|
|
|
Windows 8.1 and later will fake its version number if you don't declare support for that particular version. You can read more about the other changes in behavior on \W{http://msdn.microsoft.com/en-us/library/windows/desktop/hh848036}{MSDN}.
|
|
|
|
\# \S2{amanifestmaxversiontested} ManifestMaxVersionTested
|
|
\#
|
|
\# \c maj.min.bld.rev
|
|
|
|
\S2{amiscbuttontext} MiscButtonText
|
|
|
|
\c [back_button_text [next_button_text] [cancel_button_text] [close_button_text]]
|
|
|
|
Replaces the default text strings for the four buttons (< Back, Next >, Cancel and Close). If parameters are omitted, the defaults are used.
|
|
|
|
Accepts variables. If variables are used, they must be initialized in \R{oninit}{.onInit}.
|
|
|
|
\S2{aname} Name
|
|
|
|
\c name [name_doubled_ampersands]
|
|
|
|
Sets the name of the installer. The name is usually simply the product name such as 'MyApp' or 'CrapSoft MyApp'. If you have one or more ampersands (&) in the name, set the second parameter to the same name, only with doubled ampersands. For example, if your product's name is "Foo & Bar", use:
|
|
|
|
\c Name "Foo & Bar" "Foo && Bar"
|
|
|
|
If you have ampersands in the name and use a \R{langstring}{LangString} for the name, you will have to create another one with doubled ampersands to use as the second parameter.
|
|
|
|
Accepts variables. If variables are used, they must be initialized in \R{oninit}{.onInit}.
|
|
|
|
\S2{aoutfile} OutFile
|
|
|
|
\c [path\]install.exe
|
|
|
|
Specifies the output file that the MakeNSIS should write the installer to. This is just the file that MakeNSIS writes, it doesn't affect the contents of the installer.
|
|
|
|
\S2{apeaddresource} PEAddResource
|
|
|
|
\c [/OVERWRITE|/REPLACE] file restype resname [reslang]
|
|
|
|
Adds \cw{file} as a resource to the installer and uninstaller. \cw{restype} specifies the resource type and can be any string or # followed by a standard type or number. \cw{resname} must be # followed by a number. \cw{reslang} is optional and specifies the language id of the resource. Replacing standard NSIS resources is not supported, you should use \R{aicon}{Icon} and \R{achangeui}{ChangeUI} instead.
|
|
|
|
\c PEAddResource "myimage.bmp" "#2" "#1337"
|
|
\c PEAddResource "mybonus.ico" "#Icon" "#200"
|
|
\c PEAddResource "myimage.png" "PNG" "#1234"
|
|
\c PEAddResource "res://$%WINDIR%/Explorer.exe/#Icon/#101" "#Icon" "#1337"
|
|
|
|
\S2{aperemoveresource} PERemoveResource
|
|
|
|
\c [/NOERRORS] restype resname reslang|ALL
|
|
|
|
Removes a resource added with \cw{PEAddResource}.
|
|
|
|
\c PERemoveResource "#Icon" "#200" ALL
|
|
|
|
\S2{arequestexecutionlevel} RequestExecutionLevel
|
|
|
|
\c none|user|highest|\\<b\\>admin\\</b\\>
|
|
|
|
Specifies the requested execution level for Windows Vista and higher. The value is embedded in the installer and uninstaller's XML manifest and tells Windows which privilege level the installer requires. \e{user} requests the user's normal level with no administrative privileges. \e{highest} will request the highest execution level available for the current user and will cause Windows to prompt the user to verify privilege escalation if they are a member of the administrators group. The prompt might request for the user's password. \e{admin}, which is also the default, requests administrator level and will cause Windows to prompt the user as well. Specifying \e{none} will keep the manifest empty and let Windows decide which execution level is required. Windows automatically identifies NSIS installers and decides administrator privileges are required. Because of this, \e{none} and \e{admin} have virtually the same effect.
|
|
|
|
It's recommended that every application is marked with a required execution level. Unmarked installers are subject to compatibility mode. Workarounds of this mode include automatically moving any shortcuts created in the user's start menu to all users' start menu. Installers that don't install anything into system folders nor write to the local machine registry (HKLM) should specify \e{user} execution level.
|
|
|
|
More information about this topic can be found on \W{http://msdn.microsoft.com/en-us/library/bb756929}{MSDN}.
|
|
|
|
\S2{asetfont} SetFont
|
|
|
|
\c [/LANG=lang_id] font_face_name font_size
|
|
|
|
Sets the installer font. Please remember that the font you choose must be present on the user's machine as well. Don't use rare fonts that only you have.
|
|
|
|
Use the /LANG switch if you wish to set a different font for each language. For example:
|
|
|
|
\c SetFont /LANG=${LANG_ENGLISH} "English Font" 9
|
|
\c SetFont /LANG=${LANG_FRENCH} "French Font" 10
|
|
|
|
There are two \R{langstring}{LangString}s named ^Font and ^FontSize which contain the font and font size for every language.
|
|
|
|
\S2{ashowinstdetails} ShowInstDetails
|
|
|
|
\c \\<b\\>hide\\</b\\>|show|nevershow
|
|
|
|
Sets whether or not the details of the install are shown. Can be 'hide' 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. Note that sections can override this using \R{setdetailsview}{SetDetailsView}.
|
|
|
|
\S2{ashowuninstdetails} ShowUninstDetails
|
|
|
|
\c \\<b\\>hide\\</b\\>|show|nevershow
|
|
|
|
Sets whether or not the details of the uninstall are shown. Can be 'hide' 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. Note that sections can override this using \R{setdetailsview}{SetDetailsView}.
|
|
|
|
\S2{asilentinstall} SilentInstall
|
|
|
|
\c \\<b\\>normal\\</b\\>|silent|silentlog
|
|
|
|
Specifies whether or not the installer should be silent. If it is 'silent' or 'silentlog', all sections that have the SF_SELECTED flag are installed quietly (you can set this flag using \R{sectionsetflags}{SectionSetFlags}), with no screen output from the installer itself (the script can still display whatever it wants, use \R{messagebox}{MessageBox}'s /SD to specify a default for silent installers). Note that if this is set to 'normal' and the user runs the installer with /S (case sensitive) on the command line, it will behave as if \R{asilentinstall}{SilentInstall} 'silent' was used. Note: see also \R{logset}{LogSet}.
|
|
|
|
See \k{silent} for more information.
|
|
|
|
\S2{asilentuninstall} SilentUnInstall
|
|
|
|
\c \\<b\\>normal\\</b\\>|silent
|
|
|
|
Specifies whether or not the uninstaller should be silent. If it is 'silent' the uninstall sections will run quietly, with no screen output from the uninstaller itself (the script can still display whatever it wants, use \R{messagebox}{MessageBox}'s /SD to specify a default for silent uninstallers). Note that if this is set to 'normal' and the user runs the uninstaller with /S on the command line, it will behave as if \R{asilentuninstall}{SilentUnInstall} 'silent' was used.
|
|
|
|
See \k{silent} for more information.
|
|
|
|
\S2{aspacetexts} SpaceTexts
|
|
|
|
\c [req_text [avail_text]]
|
|
|
|
If parameters are specified, overrides the space required and space available text ("Space required: " and "Space available: " by default). If 'none' is specified as the required text no space texts will be shown.
|
|
|
|
Accepts variables. If variables are used, they must be initialized before the components page is created.
|
|
|
|
\S2{asubcaption} SubCaption
|
|
|
|
\c [page_number subcaption]
|
|
|
|
Overrides the subcaptions for each of the installer pages (0=": License Agreement",1=": Installation Options",2=": Installation Directory", 3=": Installing Files", 4=": Completed"). If you specify an empty string (""), the default will be used (you can however specify " " to achieve a blank string).
|
|
|
|
You can also set a subcaption (or override the default) using \R{acaption}{Caption} inside a \R{pageex}{PageEx} block.
|
|
|
|
Accepts variables. If variables are used, they must be initialized before the relevant page is created.
|
|
|
|
\S2{auninstallbuttontext} UninstallButtonText
|
|
|
|
\c text
|
|
|
|
Changes the text of the button that by default says "Uninstall" in the uninstaller. If no parameter is specified, the default text is used.
|
|
|
|
Accepts variables. If variables are used, they must be initialized before the uninstall button shows.
|
|
|
|
\S2{auninstallcaption} UninstallCaption
|
|
|
|
\c caption
|
|
|
|
Sets what the titlebars of the uninstaller will display. By default it is '$(^Name) Uninstall', where Name is specified with the Name command. You can, however, override it with 'MyApp uninstaller' or whatever. If you specify an empty string (""), the default will be used (you can specify " " to simulate a empty string).
|
|
|
|
Accepts variables. If variables are used, they must be initialized in \R{unonInit}{un.onInit}.
|
|
|
|
\S2{auninstallicon} UninstallIcon
|
|
|
|
\c [path\]icon.ico
|
|
|
|
Sets the icon of the uninstaller.
|
|
|
|
\S2{auninstallsubcaption} UninstallSubCaption
|
|
|
|
\c page_number subcaption
|
|
|
|
Sets the default subcaptions for the uninstaller pages (0=": Confirmation",1=": Uninstalling Files",2=": Completed"). If you specify an empty string (""), the default will be used (you can specify " " to simulate a empty string).
|
|
|
|
You can also set a subcaption (or override the default) using \R{acaption}{Caption} inside a \R{pageex}{PageEx} block.
|
|
|
|
Accepts variables. If variables are used, they must be initialized before the relevant page is created.
|
|
|
|
\S2{auninstalltext} UninstallText
|
|
|
|
\c text [subtext]
|
|
|
|
Specifies the texts on the uninstaller confirm page.
|
|
|
|
text: Text above the controls
|
|
|
|
subtext: Text next to the uninstall location
|
|
|
|
Accepts variables. If variables are used, they must be initialized before the uninstaller confirm page is created.
|
|
|
|
\S2{awindowicon} WindowIcon
|
|
|
|
\c \\<b\\>on\\</b\\>|off
|
|
|
|
Sets whether or not the installer's icon is displayed on certain pages.
|
|
|
|
\S2{axpstyle} XPStyle
|
|
|
|
\c on|\\<b\\>off\\</b\\>
|
|
|
|
Sets whether or not a XP visual style manifest will be added to the installer. This manifest makes the installers controls use the new visual styles when running on Windows XP and later. This affects the uninstaller too.
|