posts - 4237, comments - 3946, trackbacks - 370

Disclaimer

This was my personal weblog originally hosted by UgiDotNet, written mostly in Italian.

This blog is now part of my new site:
These postings are provided 'AS IS' with no warranties, and confer no rights. The views expressed on this weblog are mine alone and do not necessarily reflect the views of my employers.

Licenza Creative Commons

Tag Cloud

Archives

Post Categories

Creare un Installer che combini l'installer del .NET FW e l'ultimo Service Pack

Non capisco però perchè dobbiamo farlo noi a mano... 😊

Here are a set of steps you can follow to use Windows Installer command line parameters to create an installable layout that includes the .NET Framework and a service pack:

  1. Download the .NET Framework 1.0 or the .NET Framework 1.1
  2. Extract the contents of the .NET Framework to a folder - you can do this by running dotnetfx.exe /t:c:\temp /c (where c:\temp is any folder of your choosing)
  3. Download the .NET Framework 1.0 SP3 or the .NET Framework 1.1 SP1
  4. Extract the service pack MSP package to a folder by running .exe /Xp:c:\temp\ndpsp.msp
  5. Run msiexec.exe /a c:\temp\netfx.msi /p c:\temp\ndpsp.msp TARGETDIR=c:\temp

Following these steps will create an MSI and a set of files in the folder c:\temp that can be used to install the .NET Framework and a service pack.

Source: Creating a combined install point with the .NET Framework and a service pack

Print | posted on venerdì 17 dicembre 2004 08:29 |

Comments have been closed on this topic.