$strupper function
$strupper(string)
The $strupper function returns string converted to uppercase. If string
is empty, the result is an empty string.
Windows Installer does not support symbolic functions; if you use this function
during an MSI build, you will get diagnostic message BLD:U0010
and the result is undefined.
Parameters
All parameters may contain symbolic references; these are resolved before the
function is applied. See Examples below.
- string
- String to convert to uppercase.
Examples
Here are some usage examples for this function:
- <$strupper(C:\Program Files\Tarma ExpertInstall\Bin\Tin.exe)>
- Returns C:\PROGRAM FILES\TARMA INSTALLER 3\BIN\TIN.EXE from the
literal path.
- <$strupper(<INSTALLDIR>\Bin\Tin.exe)>
- Returns C:\PROGRAM FILES\TARMA INSTALLER 3\BIN\TIN.EXE from the
symbolic path, assuming that <INSTALLDIR> resolves to the
appropriate folder path.
- <$strupper(<#Tin_alias>)>
- Returns C:\PROGRAM FILES\TARMA INSTALLER 3\BIN\TIN.EXE from the
file alias path, assuming that Tin_alias is the file alias for
the Tin.exe executable.