How to deploy an exe in a spezial path ?

  • Thread starter Thread starter Howie Meier
  • Start date Start date
H

Howie Meier

Hi,

during the installation i want the user to choose the path where the
"exe" is located later .

How can i do this ?

Thanks,

howie
 
Hi Howie,

You're probably better off adding a shortcut to the desktop and leaving the
..exe in the installation directory, unless you have some really special needs.

Assuming that you're using a VS setup project, here's a quick guide:

"How to create shortcuts for [VS setup projects]"
http://support.microsoft.com/default.aspx?scid=kb;en-us;307358


If you really need to allow the user to choose the location for the .exe you
should allow it to be installed in the installation directory and then move it
using a custom installer:

"Walkthrough - Creating a Custom Action"
http://msdn2.microsoft.com/en-us/library/d9k65z2d(VS.80).aspx

The user can choose the path in a custom interface dialog that you'll have to
create:

"User Interface Management in Deployment"
https://msdn.microsoft.com/library/...vsintro7/html/vbcontheuserinterfaceeditor.asp
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top