My program I created, ask me to install .net Framwork 1.1.4322
My program I created at home, when I created a .msi file and i was trying to install it at work then it ask me to install .net Framwork 1.1.4322. I ran into this problem before, I fixed it with Orca, and I dont remember how to fix it in Ocra. Does Anyone know lines do I delete to fix my installer file?
Re: My program I created, ask me to install .net Framwork 1.1.4322
you can add the .net framework to your program by using a boothstapper.
But, for a program to run with .Net, the .Net framework has to be installed on the client computer.....
Redmo
Re: My program I created, ask me to install .net Framwork 1.1.4322
does your work PC have the .NET framework on it? because if it doesn't then your app still won't run until you install the framework.
Re: My program I created, ask me to install .net Framwork 1.1.4322
There's nothing wrong with your installer file and you shouldn't be deleting anything from it. Install the VS.NET 2003 bootstrapper plug-in and then when you rebuild your installer it will include the Framework with it. When you then execute your installer it will first install the Framework if the target system doesn't already have it.
http://www.microsoft.com/downloads/d...3-72f9c370bd19
Re: My program I created, ask me to install .net Framwork 1.1.4322
Quote:
Originally Posted by jmcilhinney
There's nothing wrong with your installer file and you shouldn't be deleting anything from it. Install the VS.NET 2003 bootstrapper plug-in and then when you rebuild your installer it will include the Framework with it. When you then execute your installer it will first install the Framework if the target system doesn't already have it.
http://www.microsoft.com/downloads/d...3-72f9c370bd19
I downloaded the bootstrapper software, but how do you know when you rebuild your project that bootstrapper is placed inside?
Re: My program I created, ask me to install .net Framwork 1.1.4322
Without the bootstrapper your output will not include dotnetfx.exe. Once you've installed the bootstrapper your output WILL include dotnetfx.exe.