We(my project team) have an existing MSI installer for a VS 2010 windows application. There is a license file we are using to validate the windows installation. We are using the standard VS setup project to do the installation.
Currently, we are using a test box in the MSI installation to get the license file path, so the user has to manually copy and paste the license file path. I want to change this by adding a 'Browse file' button that shows browse file dialog to select license file and auto populates the textbox on selecting the file.
I have used the Orca tool to modify the UI for a adding a button next to the existing textbox in the installation UI.
My question is: Is it possible to write some C# managed code to show, say the Open file dialog to select the license file and then populate the text box. I understand this is possible by writing C/C++ code. I see a lot of people using WIX toolset for creating setup files. Right now, I cannot create a new setup installer project because it involves learning WIX and I do not have the time for that now.