<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Personal website of Dave Hope &#187; Visual Studio</title>
	<atom:link href="http://davehope.co.uk/Blog/tag/visual-studio/feed/" rel="self" type="application/rss+xml" />
	<link>http://davehope.co.uk</link>
	<description>Open source projects, sysadmin stuff and the home of Product Key Finder</description>
	<lastBuildDate>Wed, 29 Feb 2012 17:50:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Deploy Visual Basic Express 2008</title>
		<link>http://davehope.co.uk/Blog/deploy-visual-basic-express-2008/</link>
		<comments>http://davehope.co.uk/Blog/deploy-visual-basic-express-2008/#comments</comments>
		<pubDate>Mon, 29 Sep 2008 11:28:33 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Software Deployment]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://davehope.co.uk/?p=127</guid>
		<description><![CDATA[A UK college recently e-mailed me asking for help deploying Visual Basic Express 2008.  Here are the basic steps to extracting an MSI from the 2008 Express ISO. Download the Visual Studio 2008 Express ISO to your local system and mount it using something like MagicDisk. Locate the &#8220;VBExpress&#8221; directory and copy it somewhere locally. [...]]]></description>
			<content:encoded><![CDATA[<p>A UK college recently e-mailed me asking for help deploying Visual Basic Express 2008.  Here are the basic steps to extracting an MSI from the 2008 Express ISO.</p>
<ol>
<li><a href="http://www.microsoft.com/express/download/">Download the Visual Studio 2008 Express ISO</a> to your local system and mount it using something like <a href="http://www.magiciso.com/tutorials/miso-magicdisc-overview.htm">MagicDisk</a>.</li>
<li>Locate the &#8220;VBExpress&#8221; directory and copy it somewhere locally.</li>
<li>Run ixpvb.exe, this will extract the setup files to your local drive. Mine got extracted to:<br />
<code>C:\057f3ad5975a04eeddb339635a50</code></p>
<p>Copy the files to somewhere, and then discard the notification that you must run setup.exe to install the software. The temporary directory will be automatically removed when you dismiss the dialog.</p>
<p>At this point, it&#8217;s now safe to remove the &#8220;VBExpress&#8221; directory you copied earlier.</li>
<li>Make sure the dependencies are installed. These are: Windows Installer 3.1, .Net Framework 1.1 + SP1,	.Net Framework 2.0 + SP1, .Net Framework 3.0. Reboot after they&#8217;ve been installed.</li>
<li>Then run the command that makes it all happen.
<p><code>msiexec /i vs_setup.msi VSEXTUI=1 ADDLOCAL=ALL REBOOT=ReallySuppress /qn</code></p>
<p>Assuming that works, you know you&#8217;re good to go.</p>
<p>You should be able to then create a simple transform to set the VSEXTUI, ADDLOCAL and REBOOT properties and then deploy via Group Policy Software Installation. Be sure to make sure all your target systems have the dependencies installed.</li>
</ol>
<p>If anyone runs into a problem leave a comment and I&#8217;ll see if we can work out where things are going wrong.</p>
]]></content:encoded>
			<wfw:commentRss>http://davehope.co.uk/Blog/deploy-visual-basic-express-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Deploying Visual Studio 2008 Express via Microsoft Deployment</title>
		<link>http://davehope.co.uk/Blog/deploying-visual-studio-2008-express-via-microsoft-deployment/</link>
		<comments>http://davehope.co.uk/Blog/deploying-visual-studio-2008-express-via-microsoft-deployment/#comments</comments>
		<pubDate>Fri, 04 Jan 2008 16:25:05 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Microsoft Deployment]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://davehope.co.uk/Blog/deploying-visual-studio-2008-express-via-microsoft-deployment/</guid>
		<description><![CDATA[So, you want to deploy VS2008 Express? &#8211; 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&#8217;ve just downloaded (i&#8217;m [...]]]></description>
			<content:encoded><![CDATA[<p>So, you want to deploy VS2008 Express? &#8211; I did (We use it in our testing VMs).</p>
<p><strong>1: Download the offline installer</strong><br />
First things first, get the <a href="http://download.microsoft.com/download/8/B/5/8B5804AD-4990-40D0-A6AA-CE894CBBB3DC/VS2008ExpressENUX1397868.iso">offline installer for Visual Studio 2008 Express</a>.</p>
<p><strong>2: Extract the files from the ISO</strong><br />
Grab whichever edition you want to deploy from the ISO you&#8217;ve just downloaded (i&#8217;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:</p>
<blockquote><p>ixpvcs.exe /q:a /c:&#8221;msiexec /i vs_setup.msi VSEXTUI=1 ADDLOCAL=ALL REBOOT=ReallySuppress /qn&#8221;</p></blockquote>
<p><strong>3: Dependancies</strong><br />
You&#8217;ll need to add in dependancies for Windows Installer 3.1 and the .net 2.0 framework. See <a href="http://davehope.co.uk/Blog/deploying-sql-server-with-microsoft-deployment/">this article</a> for information on how to do just that.</p>
<p>Just like to say thanks to <a href="http://blogs.msdn.com/astebner/archive/2006/03/19/555326.aspx">Aaron Stebner</a> who provided the basis for this on his blog. All i&#8217;ve just is update the patch for vs2008 rather than 2005.</p>
]]></content:encoded>
			<wfw:commentRss>http://davehope.co.uk/Blog/deploying-visual-studio-2008-express-via-microsoft-deployment/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
	</channel>
</rss>

