|
I'm trying to write what I think is a fairly simple MSI installer using VS2008. I have never written one before, or coded in C#, but I am familiar with C, C++, and Java. I am having a hard time finding information on the web about how to do what I need to do. Could any of you guys point me to a place where I could find more information about what I am trying to do? I would like to be able to do the following: - make sure the user has Java installed, and start the Java web installer if they decide to - get the directory that the user chose to install my app - run a batch file after the files on are on the hard drive to finish installation (I think I know how to do this with a process object) - run a batch file when the app is uninstalled so that I can clean up the application this would need to be done before the files are removed(I think I know how to do this with a process object) - get information provided by the user and write it to a file in the installation directory If any one knows of an easier solution to use that would also work as well. Thanks for all the insight. |