In the .net "Setup" installation project, you can add one or more custom screens in the setup wizard with fields (for example, text fields), where the user can enter additional installation parameters.
The user field can then be transferred to the user action class library project to process the user field. The following figure shows how the "ServerName" property is displayed in the EDITB1 text box:

In the Custom Action class, access to the resource is as follows:
string serverName = Context.Parameters["ServerName"];
Question: how can I specify several properties (for several text fields) for a custom action?
byneri
source share