Outlook Addin Installer (Default Path)  
Author Message
c_shah





PostPosted: Visual Studio Tools for Office, Outlook Addin Installer (Default Path) Top

Is there a way to specify default installation path for my outlook addin installer (.msi) (right now my installer is coming up with a dialog box with browse option for the installation path.
Is there any way to specify default directory for the installation i.e. without a browse option )


Visual Studio Tools for Office10  
 
 
Darryn Lavery -- MSFT





PostPosted: Visual Studio Tools for Office, Outlook Addin Installer (Default Path) Top

Hi,

A) To remove the browse control:

1) Right click over your Detup project and click View | User Interface

2) In the open document right click over over Start | Install Folder and click Delete

B) To change the installation folder:

1) Right click over your set up project and select File system editor

2) Click application folder in the open document

3) Inspect the DefaultLocation property

4) To set Manufacturer and Product click on the setup node in Solution Explorer.

Regards,

Darryn Lavery [MSFT]


 
 
c_shah





PostPosted: Visual Studio Tools for Office, Outlook Addin Installer (Default Path) Top

Awesome! Thank you.