Installer Question?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have two Question :
1) I created an installer project for my application and added it in User
Program Menu=> i wondering how can I add UnInstall Action when install in
User Program Menu.

2) when install the application i have three copies of exe file
one in desktop second in application folder in program and third in start
menu programs, in the application folder where installation files are created
i have Settings.xml file and am getting its location dynamically using

System.IO.Path.GetDirectoryName
(System.Reflection.Assembly.GetExecutingAssembly().Location) +
"\\Settings.xml";

but when execute the exe file for app in desktop it give me where the exe
are in desktop where no Settings.xml.
mY question i need to route all exection to parent path in program files in
dynamic mode not static text,...is it possible?
 
2) when install the application i have three copies of exe file

Instead of having multiple copies of the Exe, have a single executable in
the app directory and put shortcuts to it on the desktop and in the Start
menu.


Mattias
 
Back
Top