View Single Post
  #13  
Old 05-05-2021, 01:13
alucard1973 alucard1973 is offline
Registered User
 
Join Date: Apr 2015
Location: Madrid
Posts: 45
Thanks: 1
Thanked 3 Times in 3 Posts
alucard1973 is on a distinguished road
Quote:
Originally Posted by Cesar82 View Post
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%?
Reply With Quote