Command line options
Start wihu.exe /? for full description.
Environment variables
Following environment variables can be used in command line:
WIHU specific environment variables
%USERNAME%, %USERDOMAIN%, %USERPROFILE%, %COMPUTERNAME%, %HOMEPATH% and %HOMEDRIVE% will be updated with the new values. %ThisUser% will be the same as %USERNAME%
In addition also %ThisProfile% and %ThisHome% may be used. In [users] section it's only safe to use these ones to override shell folders, no where else.
Relative paths
Each relative path will be expanded to WIHU application directory. This doesn't apply to paths specified in command.x key like command.0 = msiexec.exe /i .\data\setup.exe. The second string (.\data\setup.exe) will be expanded but not parsed by WIHU. Application (in this case msiexec.exe) is responsible to find correct path. Please consider to use workdir.x keyword here.
Each section name like [Windows System Files] is the topic of the kind of software that should be installed. Each section can contain keywords which are described below. There is a special section which is called [Environment]. This section stores environment variables which will be added to installer process as soon as it is started. To override section name you could use Description = <Alternative name>keyword.
[Environment]
MozillaFireFoxVersion = HKLM:SoftwareMozilla\Mozilla Firefox\CurrentVersion
MozillaFireFoxPath = HKLM:Software\Mozilla\Mozilla Firefox\%MozillaFireFoxVersion%\Main\Install Directory
SomePath = C:\MyPath
wmp.dll.version = %SystemDrive%\System32\wmp.dll?version
Values can be registry keys (which may store the requested path) or other data. Registry keys will be initiated with keyword HKLM: which stands for HKEY_LOCAL_MACHINE or HKCU: which stands for HKEY_CURRENT_USER. The last component before the \ letter is the registry value name which should be readed like CurrentVersion in the above example. To read the default value just add \ like in HKLM:Software\Mozilla\. It uses the same syntax as a path\file name in windows with the difference that path is the registry key and the file is the registry key value name. If ?version is appended to a filename, WIHU tries to read the file version of this file and store it in corresponding environment variable. Please also take a look at the software section descriptions for more information about using ?fileversion, ?productversion and so on.
Please note this environments variables are only valid within WIHU i.e. while WIHU is running.
Shell Environment Variables
There are special environment variables which will be expanded to corresponding shell folder path. If this is set in environment section WIHU will use this as default shell folder paths for each new user. How to override this per user basis is described below. You may use this variables also if you don't change them in this section. In this case it will be initialized with user default shell folders.
Administrative Tools
Cache
CD Burning
Cookies
Desktop
Favorites
Fonts
History
Local AppData
Local Settings
My Music
My Pictures
My Video
NetHood
Personal
PrintHood
Programs
Recent
SendTo
Start Menu
Startup
Templates
Contains user specific environment variables which will be stored persistent in corresponding user profile later. Please note, x is an index of the corresponding user specified in [users] section. This section must reside in same ini file as [users] section.
Contains user accounts that should be created by WIHU. Please note, x must be an continuous number.
UF_SCRIPT = 0x0001
UF_ACCOUNTDISABLE = 0x0002
UF_HOMEDIR_REQUIRED = 0x0008
UF_LOCKOUT = 0x0010
UF_PASSWD_NOTREQD = 0x0020
UF_PASSWD_CANT_CHANGE = 0x0040
UF_ENCRYPTED_TEXT_PASSWORD_ALLOWED = 0x0080
UF_NORMAL_ACCOUNT = 0x200
UF_DONT_EXPIRE_PASSWD = 0x10000
UF_MNS_LOGON_ACCOUNT = 0x20000
UF_SMARTCARD_REQUIRED = 0x40000
UF_TRUSTED_FOR_DELEGATION = 0x80000
UF_NOT_DELEGATED = 0x100000
UF_USE_DES_KEY_ONLY = 0x200000
UF_DONT_REQUIRE_PREAUTH = 0x400000
UF_PASSWORD_EXPIRED = 0x800000
Example Usage (will create a normal account where the user can't change it's password):
status.0 = 0x240
Predefined volatile environment variables are following
%ThisUser% will be replaced by the corresponding user name
These variables may be used outside:
[environment]
Personal = %SystemDrive%\%ThisUser%\Personal
...
[Users]
User.0 = New User
Profile.0 = %Personal%\Profile
...
[Windows System Files Installation Section]
Description.0 = Microsoft DirectX
Command.0 = directx.exe /unpack:%Personal%
In first example, WIHU will create a new user account with name "New User" which profile path will be set to %SystemDrive%/New User/Personal/Profile because %ThisUser% in default %Personal% will be replaced by the corresponding user, in this case "New User". In second example Personal will be replaced by %SystemDrive%/PrimaryUser/Personal, whereby PrimaryUser is this name which was entered in WIHU before. In each software section, %ThisUser% will be the same as %USERNAME%.
To override default shell folder paths which may be specified in [environment] section, please redefine it with it's corresponding index:
[Users]
User.0 = New User
Personal.0 = %SystemDrive%\My Personal
To set all user defaults, it's allowed to specify keywords without appending an index like
Home = %Personal% or Group = 1 (meaning see above)
Please note: [users] section default keywords like in example above only applies to new user accounts! Existing account will be excluded.To override existing user account settings you have to use indizes like Home.0 = %Personal%
Currently setting any shell folder environment variable without and index isn't allowed here.
Please specify default user shell folder in [environment] section
General section keywords:
Example:
command.x = apps\myapp.exe myscript.iss
workdir.x= %inidir%\apps
This will NOT set relative path for apps\myapp.exe, it will even not used by WIHU in any way, expect it will set the current directory for myapp.exe process only. So each relative path that myapp.exe encounter will be relative to "workdir.x".
So myapp.exe would search in %inidir%\apps for myscript.iss
*1 This keyword may also be used without index. Conditionals aren't allowed here. See *2.
Other keywords which could be used to prevent installing outdated or already installed versions are following:
test.x.n = [!]<expression>[?<comparison><operator><data>]
Will test for certain conditions and return TRUE or FALSE which will be evaluated by test.eval.x.
<expression> could be a filename or a registry key as described in [environment] section above. If no ? operator is appended WIHU will test for file/registry key/registry value existence and will return TRUE if this was found. If ! operator is prepended WIHU will invert this result, i.e. TRUE become FALSE and reverse.
<comparison> specifies the comparison operation that should be performed (on files only!). Allowed operations are date, version and size which test for file date, file size or file version respectively. As file (modification) dates, only ISO 8601 date/time format is allowed here like "1993-02-14T13:10:30" or "1993-02-14". To compare only for year and month it is also allowed only to specify something like "1993-02".
Instead version only you may also explicitely specify fileversion or productversion. Please note here, WIHU tries to convert the data into x.x.x.x form whereby x is an integer value. So each non integer value is truncated here. If you need full raw version information you may read it by version.ProductVersion or version.FileVersion. You may also specify other version specific data like version.FileDescription and so on.
<operator> may be !, =, < or > to compare against not equalness, equalness, greater or less respectively.
<data> that should be compared against. This depends on <comparison> operation.
Please note, n must be an continuous number. Gaps between indices are not allowed.
test.eval.x = <n.0>[[|&]<n.1>]... will evaluate logical expressions. Indices may be catenated with operator AND (&) or OR (|). Allowed indices are those n 's specified in test.x.n whereby those indices represent evaluation result of corresponding test.x.n expression.
Examples:
Example File comparison (Test if version of wmp.dll is greater 9.0.0.3196)
Check against ProductVersion.
test.0.0 = %SystemRoot%\System32\wmp.dll?productversion>9.0.0.3196
Example File Existence Check (Test if wmp.dll exists)
test.0.1 = %SystemRoot%\System32\wmp.dll
Example File Non Existence Check
test.0.2 = !%SystemRoot%\System32\wmp.dll
Example Registry Value Comparison
If Key version does not exists, it returns false
test.0.3 = HKLM:Software\Microsoft\DirectX\Version?>4.09.00.0902
Example Registry Default Value Comparison
test.0.4 = HKLM:Software\Microsoft\DirectX\?=Test
Example Registry Path Existence Check
test.0.5 = HKLM:Software\Microsoft\DirectX\
Example Registry Key Existence Check
test.0.6 = HKLM:Software\Microsoft\DirectX\Version
Each expression may be negated by prepending ! operator.
test.eval.0 = 0 & 1 | 5 & 3 & 2
Above will return TRUE, if test.x.0 AND test.x.1 are TRUE, OR if test.x.5 AND test.x.3 AND test.x.2 are TRUE.
Remark: Although no braces are supported currently, braces will be implied as follows:
test.eval.0 = ((((0 & 1) | 5) & 3) & 2)
*2: Following keywords may hold special values which should be used with test.eval.x only:
flags.x, selected.x, hidden.x, collapsed.x, locked.x, disabled.x and group.x.
selected.x = if.true will select this item only if previous test.eval.x returns TRUE. selected.x = if.false will select this item only if test.eval.x returns FALSE and so on. If no test.eval.x key is defined, value if.true is the same as 1.
Default keyword values ( will be used if not specified):
selected = 1 (Note this is the selection key for entire section)
hidden.x = 0
description.x = <missing description>
selected.x = 0
collapsed.x = 0
group.x = 0
workdir.x = %WIHU%
disabled.x = 0
locked.x = 0
There can be theoretically up to 65535 items per subtree.; Note: One key "key.a.b.c.d.e.f.g.h...=" must not exceed 255 characters entirely.
To create a subtree just append sublevel indices to commands like:
description.0 = "command 1"
command.0 = ...
description.1 = "command 2"
command.1 = ...
description.0.0 = "sub command 0.0"
command.0.0 = ...
description.0.0.0 = "sub command 0.0.0"
command.0.0.0 = ...
description.0.0.1 = "sub command 0.0.1"
command.0.0.1 = ...
... Will create following sub tree:
"command 1" "sub command 0.0" "sub command 0.0.0" "sub command 0.0.1" "command 2"
Remark: If you hides a tree, also each of it's subtrees will be hidden also if not specified explicitly.
If you don't want a subtree/item to be an executable command but just a descriptive header key, set command.x=*. In this case item texts will be bolded.
Note also, if a tree is unchecked none of its subtrees/items will be executed. (This also applys to descriptive keys which contains one or more subitems)
If you add /HasGaps switch indizes may have gaps. But reading ini file with this switch may take longer!