VB 2005 Express Project Deployment

I have writtewn an app that needs three pre-requisites, .Net 2, Installer 3.1 and SQL Express.

All the publish details are setup etc.

When I choose "Download prerequisites from the same location as my application" where is this "same location".

My app will not publish beacuse it says, for example, "windowsinstaller3_1\windowsinstaller-KB893803-v2-x86.exe...cannot be located on disk".

I have tried saveral locations but all have failed to date.

[515 byte] By [cakehole] at [2007-12-24]
# 1

To keep the download size of the Express products smaller, we did not include the actual installer/redist files. As a result, you can't use "Same Site..." unless you download the redist files from Microsoft.

If you look at the product and package.xml files for each package you need, you can follow the "HomeSite" attribute, check the Strings table in the package.xml, and get the URL to download each file from. Or you can just search the download site on microsoft.com for the files.

Hope that helps.

DavidGuyerMS at 2007-10-8 > top of Msdn Tech,Windows Forms,ClickOnce and Setup & Deployment Projects...
# 2

David Guyer MS wrote:
To keep the download size of the Express products smaller, we did not include the actual installer/redist files. As a result, you can't use "Same Site..." unless you download the redist files from Microsoft.

I have downloaded all the necessary files. I must do this as the machines on which the app will be installed do not have net access, even via dial up.

David Guyer MS wrote:
If you look at the product and package.xml files for each package you need, you can follow the "HomeSite" attribute, check the Strings table in the package.xml, and get the URL to download each file from. Or you can just search the download site on microsoft.com for the files.

Where do I find the product and package.xml files?

Thanks for the prompt reply.

cakehole at 2007-10-8 > top of Msdn Tech,Windows Forms,ClickOnce and Setup & Deployment Projects...
# 3

Usually they are installed at Program Files\Microsoft Visual Studio 8\SDK\v2.0\Bootstrapper\Packages

DavidGuyerMS at 2007-10-8 > top of Msdn Tech,Windows Forms,ClickOnce and Setup & Deployment Projects...
# 4

David,

I eventually found that folder, thank you, and installed the programs I had downloaded. I have no reduced my error count from 5 to 2. The build function doesn't like the sqlexpr32.exe I downloaded and I cannot locate instmsia.exe it wants in the DotNetFX folder.

Can you advise where I can download these files from so I can build my nstall and finish this project.

Thanks

cakehole at 2007-10-8 > top of Msdn Tech,Windows Forms,ClickOnce and Setup & Deployment Projects...
# 5
Hi,

you can download instmsia.exe at this location:
http://www.microsoft.com/downloads/details.aspx?FamilyID=cebbacd8-c094-4255-b702-de3bb768148f&displaylang=en

Jeff

JeffDion at 2007-10-8 > top of Msdn Tech,Windows Forms,ClickOnce and Setup & Deployment Projects...
# 6
What's the error for SQLExpress?
DavidGuyerMSFT at 2007-10-8 > top of Msdn Tech,Windows Forms,ClickOnce and Setup & Deployment Projects...