Automating instalation of drivers and dot net framework
Hi! I am at the step where I have to build the installation setup. Everything is fine with my application file, but I have to install the driver for the USB-key and the .NET framework on computer that doesn't have it yet.
I would like to know if there is anyway I can automate everything??
- First install the HASP USB-key driver (eAladdin)
- then check if .NET Framework 1.1 is installed, if not, install it
- finally install My application
Re: Automating instalation of drivers and dot net framework
Quote:
Originally Posted by jcavard
Hi! I am at the step where I have to build the installation setup. Everything is fine with my application file, but I have to install the driver for the USB-key and the .NET framework on computer that doesn't have it yet.
I would like to know if there is anyway I can automate everything??
- First install the HASP USB-key driver (eAladdin)
- then check if .NET Framework 1.1 is installed, if not, install it
- finally install My application
Hi
Just install the Bootstrapper plug-in for Visual Studio and the Framework will be included in your installer by default. You can find the download on this site.
http://www.microsoft.com/downloads/d...displaylang=en
Once the bootstrapper plug-in is installed the .NET Framework will be included as part of your setup by default. You shouldn't have to do anything more under most circumstances.
Hope it will help you.
sparrow1