How do I alter AppName in Inno
Is there any way to programmatically alter the AppName in Inno Setup? Perhaps a registry value that can be set towards the end 开发者_Go百科of the installation? My customer needs to be able to install multiple instances of my application with slightly different behaviors, and it would be ideal if AppName could be altered to during the install accomodate this (note that versioning is a separate consideration).
I'm afraid that 'AppName' is a required scripting directive and cannot be changed after your Inno Setup script is compiled into an installer.
It seems strange that you need multiple instances of your application installed on the same machine that each behave slightly different. Why is this necessary? What does this accomplish? I'm willing to bet that this should be addressed instead of modifying your Inno Setup installation script.
精彩评论