We (my project team) have an existing MSI installer for the Windows VS 2010 application. A license file is used to verify the installation of Windows. We use the standard VS installation project for installation.
We are currently using the test block in the MSI installation to get the path to the license file, so the user needs to manually copy and paste the path to the license file. I want to change this by adding a Browse File button, which shows a file browsing dialog box to select a license file, and automatically fills in the text box when a file is selected.
I used the Orca tool to change the user interface to add a button next to an existing text box in the installation interface.
My question is: is it possible to write some managed code in C # to show, say, the Open File dialog box, to select a license file, and then fill in the text box. I understand that this is possible by writing C / C ++ code. I see that many people use the WIX toolkit to create installation files. Right now I canβt create a new installation installer project because it includes WIX training and I donβt have the time right now.
source share