0
votes

I have created nsi file using NSIS plugin in eclipse.I have read the property file value using following code,

${ConfigWrite} "C:\resource\conf.properties" "WEBSERVICE.URL"  $0

Now i want to create one text box and copy the value of "WEBSERVICE.URL" into that textbox.If the user enter the input in textbox then it should replace the value of WEBSERVICE.URL in config property file.else it will take default value.can anyone hele me?

1

1 Answers

0
votes

You should look at the examples of nsDialogs.

Look in the Examples\nsDialogs directory of your NSIS installation : the InstallOptions.nsi script should help you.