Quote:
Originally Posted by Cesar82
CIU tasks/components/languages work differently than native Inno Setup tasks/components/languages.
The Tasks: / Components: / Languages: parametter (Native Inno Setup commands) is not supported by CIU.
There are two ways to use CIU.
CIU should always be used in the Check: parameter.
Code:
Root: HKCU; Subkey: "Software\Valve\Steam\Apps\6800"; ValueType: dword; ValueName: "Installed"; ValueData: "1"; Check: TasksCheck('2,3');
or
Root: HKCU; Subkey: "Software\Valve\Steam\Apps\6800"; ValueType: dword; ValueName: "Installed"; ValueData: "1"; Check: IsValid('','',2,3','');
P.S: For more information on the functions, or other functions compatible with the Registry, read the changelog that is in the "Help" folder of the CIU source code (In the part referring to CIU 3.0.0.0.u6)
|
Hello,
Thank you for your invaluable help.
I was able to do what I wanted except one thing, put Check: Not isWin64 because there is already Ckeck: Task
I would also like to know if it is normal that my installation all ends at 33.3% instead of going up to 100%?