Re: ClickOnce frustration
As far as I know you need to rename the .net installation to Dotnetfx.exe
Framework 1.1 - 3.0 all have different names.
What exactly does it download...
Re: ClickOnce frustration
After some searching I might have a bit of success, mainly from the help from this link:
http://forums.microsoft.com/MSDN/Sho...94464&SiteID=1
It seems the Express version of VB, and for that matter C#, are somewhat incomplete with regards to making a distributable app solely via CD, with no internet requirement for downloading prerequisites or updates.
To summary some info from the link:
I have manually copied the following files to the following paths:
C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\Bootstrapper\Packages\DotNetFX
1. dotnetfx.exe (V2.0 .NET framework redistributable)
2. WindowsInstaller-KB893803-v2-x86.exe (MSI installer V3.1 redistributable)
3. InstMsiA.exe (MSI installer V2.0 redistributable)
C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\Bootstrapper\Packages\WindowsInstaller3_1
1. WindowsInstaller-KB893803-v2-x86.exe (MSI installer V3.1 redistributable)
All the above files can be downloaded from Microsoft.
My app now compiles and publishes without any errors, and importantly, the prerequisites (dotnetfx.exe and the two Windows installer files) are copied to a dotnetfx directory below the publish directory.
I still have to test this out completely, but it looks promising. :)
Re: ClickOnce frustration
Very good. One should not rely on the user having a fast internet connection to install your app.