Replace placeholder in an installed text file with input entered by user
As part of an Inno Setup built installer, I want to output the text field that the user enters into the installer to a text file. So far I have the below: [Code] var PrimaryServerPage: TInputQueryWizardPage; PrimaryAddress: String; procedure InitializeWizard; begin PrimaryServerPage := CreateInputQueryPage(wpWelcome, 'Primary Server Details', 'Where is you application installed?', 'Please specify the IP address or hostname of your Primary Server, ' + 'then click Next.'); PrimaryServerPage.Add('Primary Server IP/Hostname:', false); PrimaryAddress := PrimaryServerPage.Values[0]; SaveStringToFile