DaveHope.co.uk

Deploying Visual Studio 2008 Express via Microsoft Deployment

So, you want to deploy VS2008 Express? – I did (We use it in our testing VMs).

1: Download the offline installer
First things first, get the offline installer for Visual Studio 2008 Express.

2: Extract the files from the ISO
Grab whichever edition you want to deploy from the ISO you’ve just downloaded (i’m just interested in c#). Setup a a new Application in the Deployment Workbench with these files, using the following for you Quiet install command:

ixpvcs.exe /q:a /c:”msiexec /i vs_setup.msi VSEXTUI=1 ADDLOCAL=ALL REBOOT=ReallySuppress /qn”

3: Dependancies
You’ll need to add in dependancies for Windows Installer 3.1 and the .net 2.0 framework. See this article for information on how to do just that.

Just like to say thanks to Aaron Stebner who provided the basis for this on his blog. All i’ve just is update the patch for vs2008 rather than 2005.

Comments

Leave a Reply