View Single Post
  #834  
Old 24-06-2024, 04:12
Fak Eid Fak Eid is offline
Registered User
 
Join Date: Jun 2023
Location: Mars
Posts: 147
Thanks: 97
Thanked 149 Times in 54 Posts
Fak Eid is on a distinguished road
Preprocessing value creation

This can read all single values of your Installer.ini without any use of plugin. Check example here or here

Code:
#define ReadInstaller(Section, Key, Default) ReadIni(SourcePath	+ "Game\Installer.ini", Section, Key, Default)

[Setup]
AllowNoIcons=yes
AllowRootDirectory=true
AppId={{F9787790-D97B-457E-80DA-F69C91F862A8}
AppName={#ReadInstaller("Installer", "Name", "")}
AppVersion=1.0
AppCopyright=Random_Gamertags
DefaultDirName=C:\{#ReadInstaller("Installer", "DirName", "")}

Last edited by Fak Eid; 24-06-2024 at 12:42.
Reply With Quote