During install I want to write a long multi line/paragraph chunk of text to a registry value
writing to a registry value is easy enough
[Registry] Root: HKCU; Subkey: "Software\my company\My software"; ValueType: string; ValueName: "Message"; ValueData: "some text"
but I would rather define a multi line text constant to replace "some text"
i.e. something like
mytext = "some long text value\r\ngoning onto another line"
Root: HKCU; Subkey: "Software\my company\My software"; ValueType: string; ValueName: "Message"; ValueData: #mytext
I am probably being dull but I can't see how to do this - any help gratefully appreciated. Thanks