NSIS/Docs/src/var.but

252 lines
10 KiB
Text

\H{variables} Variables
All variables are global and can be used in Sections or Functions. Note that, by default, variables are limited to 1024 characters. To extend this limit, \R{build}{build NSIS} with a bigger value of NSIS_MAX_STRLEN in Source/exehead/config.h or use the \W{http://nsis.sourceforge.net/download/specialbuilds/}{special build}.
\S1{varuser} User Variables
\e{$VARNAME}
User variables can be declared with the \R{var}{Var} command. You can use these variables to store values, work with string manipulation etc.
\S2{var} Var
\c [/GLOBAL] var_name
Declare a user variable. Allowed characters for variables names: [a-z][A-Z][0-9] and '_'. All defined variables are global, even if defined in a section or a function. To make this clear, variables defined in a section or a function must use the /GLOBAL flag. The /GLOBAL flag is not required outside of sections and functions.
\c Var example
\c
\c Function testVar
\c Var /GLOBAL example2
\c
\c StrCpy $example "example value"
\c StrCpy $example2 "another example value"
\c FunctionEnd
\S1{varother} Other Writable Variables
\e{$0, $1, $2, $3, $4, $5, $6, $7, $8, $9, $R0, $R1, $R2, $R3, $R4, $R5, $R6, $R7, $R8, $R9}
Registers. These variables can be used just like user variables, but are usually used in shared functions or macro's. You don't have to declare these variables, so you won't get any name conflicts when using them in shared code. When using these variables in shared code, it's recommended that you use the stack to save and restore their original values. These variables can also be used for communication with plug-ins, because they can be read and written by the plug-in DLL's.
\e{$INSTDIR}
The installation directory ($INSTDIR is modifiable using \R{StrCpy}{StrCpy}, \R{readregstr}{ReadRegStr}, \R{readinistr}{ReadINIStr}, etc. - This could be used, for example, in the \R{oninit}{.onInit} function to do a more advanced detection of install location).
Note that in uninstaller code, $INSTDIR contains the directory where the uninstaller lies. It does \\<b\\>not\\</b\\> necessarily contain the same value it contained in the installer. For example, if you write the uninstaller to $WINDIR and the user doesn't move it, $INSTDIR will be $WINDIR in the uninstaller. If you write the uninstaller to another location, you should keep the installer's $INSTDIR in the registry or an alternative storing facility and read it in the uninstaller.
\e{$OUTDIR}
The current output directory (set implicitly via \R{setoutpath}{SetOutPath} or explicitly via \R{StrCpy}{StrCpy}, \R{readregstr}{ReadRegStr}, \R{readinistr}{ReadINIStr}, etc)
\e{$CMDLINE}
The command line of the installer. The format of the command line can be one of the following:
\b "full\\path to\\installer.exe" PARAMETER PARAMETER PARAMETER
\b installer.exe PARAMETER PARAMETER PARAMETER
\b For parsing out the PARAMETER portion, see GetParameters on the \R{getparameters}{useful functions appendix}. If /D= is specified on the command line (to override the install directory) it won't show up in $CMDLINE.
\e{$LANGUAGE}
The identifier of the language that is currently used. For example, English is 1033. You can change this variable in \R{oninit}{.onInit}.
\S1{varconstant} Constants
Constants can also be used in the \R{ainstalldir}{InstallDir} attribute.
Note that some of the new constants will not work on every OS. For example, $CDBURN_AREA will only work on Windows XP and above. If it's used on Windows 98, it'll be empty. Unless mentioned otherwise, a constant should be available on every OS.
\e{$PROGRAMFILES}
The program files directory (usually C:\\Program Files but detected at runtime).
\e{$COMMONFILES}
The common files directory. This is a directory for components that are shared across applications (usually C:\\Program Files\\Common Files but detected at runtime).
\e{$DESKTOP}
The windows desktop directory (usually C:\\windows\\desktop but detected at runtime). The context of this constant (All Users or Current user) depends on the \R{setshellvarcontext}{SetShellVarContext} setting. The default is the current user.
\e{$EXEDIR}
The location of the installer executable (technically you can modify this variable, but it is probably not a good idea).
\e{$\{NSISDIR\}}
A symbol that contains the path where NSIS is installed. Detected at compile time. Useful if you want to call resources that are in NSIS directory e.g. Icons, UIs...
\e{$WINDIR}
The windows directory (usually C:\\windows or C:\\winnt but detected at runtime).
\e{$SYSDIR}
The windows system directory (usually C:\\windows\\system or C:\\winnt\\system32 but detected at runtime).
\e{$TEMP}
The system temporary directory (usually C:\\windows\\temp but detected at runtime).
\e{$STARTMENU}
The start menu folder (useful in adding start menu items using \R{createshortcut}{CreateShortCut}). The context of this constant (All Users or Current user) depends on the \R{setshellvarcontext}{SetShellVarContext} setting. The default is the current user.
\e{$SMPROGRAMS}
The start menu programs folder (use this whenever you want $STARTMENU\\Programs). The context of this constant (All Users or Current user) depends on the \R{setshellvarcontext}{SetShellVarContext} setting. The default is the current user.
\e{$SMSTARTUP}
The start menu programs / startup folder. The context of this constant (All Users or Current user) depends on the \R{setshellvarcontext}{SetShellVarContext} setting. The default is the current user.
\e{$QUICKLAUNCH}
The quick launch folder for IE4 active desktop and above. If quick launch is not available, simply returns the same as $TEMP.
\e{$DOCUMENTS}
The documents directory. A typical path for the current user is C:\\Documents and Settings\\Foo\\My Documents. The context of this constant (All Users or Current user) depends on the \R{setshellvarcontext}{SetShellVarContext} setting. The default is the current user.
This constant is not available on Windows 95 with Internet Explorer 4 not installed.
\e{$SENDTO}
The directory that contains Send To menu shortcut items.
\e{$RECENT}
The directory that contains shortcuts to the user's recently used documents.
\e{$FAVORITES}
The directory that contains shortcuts to the user's favorite websites, documents, etc. The context of this constant (All Users or Current user) depends on the \R{setshellvarcontext}{SetShellVarContext} setting. The default is the current user.
This constant is not available on Windows 95 with Internet Explorer 4 not installed.
\e{$MUSIC}
The user's music files directory. The context of this constant (All Users or Current user) depends on the \R{setshellvarcontext}{SetShellVarContext} setting. The default is the current user.
This constant is available on Windows XP, ME and above.
\e{$PICTURES}
The user's picture files directory. The context of this constant (All Users or Current user) depends on the \R{setshellvarcontext}{SetShellVarContext} setting. The default is the current user.
This constant is available on Windows 2000, XP, ME and above.
\e{$VIDEOS}
The user's video files directory. The context of this constant (All Users or Current user) depends on the \R{setshellvarcontext}{SetShellVarContext} setting. The default is the current user.
This constant is available on Windows XP, ME and above.
\e{$NETHOOD}
The directory that contains link objects that may exist in the My Network Places/Network Neighborhood folder.
This constant is not available on Windows 95 with Internet Explorer 4 and Active Desktop not installed.
\e{$FONTS}
The system's fonts directory.
\e{$TEMPLATES}
The document templates directory. The context of this constant (All Users or Current user) depends on the \R{setshellvarcontext}{SetShellVarContext} setting. The default is the current user.
\e{$APPDATA}
The application data directory. Detection of the current user path requires Internet Explorer 4 and above. Detection of the all users path requires Internet Explorer 5 and above. The context of this constant (All Users or Current user) depends on the \R{setshellvarcontext}{SetShellVarContext} setting. The default is the current user.
This constant is not available on Windows 95 with Internet Explorer 4 and Active Desktop not installed.
\e{$LOCALAPPDATA}
The local (nonroaming) application data directory.
This constant is available on Windows 2000 and above.
\e{$PRINTHOOD}
The directory that contains link objects that may exist in the Printers folder.
This constant is not available on Windows 95 and Windows 98.
\e{$INTERNET_CACHE}
Internet Explorer's temporary internet files directory.
This constant is not available on Windows 95 and Windows NT with Internet Explorer 4 and Active Desktop not installed.
\e{$COOKIES}
Internet Explorer's cookies directory.
This constant is not available on Windows 95 and Windows NT with Internet Explorer 4 and Active Desktop not installed.
\e{$HISTORY}
Internet Explorer's history directory.
This constant is not available on Windows 95 and Windows NT with Internet Explorer 4 and Active Desktop not installed.
\e{$PROFILE}
The user's profile directory. A typical path is C:\\Documents and Settings\\Foo.
This constant is available on Windows 2000 and above.
\e{$ADMINTOOLS}
A directory where administrative tools are kept. The context of this constant (All Users or Current user) depends on the \R{setshellvarcontext}{SetShellVarContext} setting. The default is the current user.
This constant is available on Windows 2000, ME and above.
\e{$RESOURCES}
The resources directory that stores themes and other Windows resources (usually C:\\Windows\\Resources but detected at runtime).
This constant is available on Windows XP and above.
\e{$RESOURCES_LOCALIZED}
The localized resources directory that stores themes and other Windows resources (usually C:\\Windows\\Resources\\1033 but detected at runtime).
This constant is available on Windows XP and above.
\e{$CDBURN_AREA}
A directory where files awaiting to be burned to CD are stored.
This constant is available on Windows XP and above.
\e{$HWNDPARENT}
The decimal HWND of the parent window.
\e{$PLUGINSDIR}
The path to a temporary folder created upon the first usage of a plug-in or a call to \R{initpluginsdir}{InitPluginsDir}. This folder is automatically deleted when the installer exits. This makes this folder the ideal folder to hold INI files for \L{../Docs/InstallOptions/Readme.html}{InstallOptions}, bitmaps for the splash plug-in, or any other file that a plug-in needs to work.
\S1{varstrings} Constants Used in Strings
\e{$$}
Use to represent $.
\e{$\\r}
Use to represent a carriage return (\\r).
\e{$\\n}
Use to represent a newline (\\n).
\e{$\\t}
Use to represent a tab (\\t).