<?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; BDD</title>
	<atom:link href="http://davehope.co.uk/Blog/tag/bdd/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>Deploying SQL Server with Microsoft Deployment</title>
		<link>http://davehope.co.uk/Blog/deploying-sql-server-with-microsoft-deployment/</link>
		<comments>http://davehope.co.uk/Blog/deploying-sql-server-with-microsoft-deployment/#comments</comments>
		<pubDate>Sun, 16 Dec 2007 13:07:50 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[BDD]]></category>
		<category><![CDATA[Microsoft Deployment]]></category>
		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://davehope.co.uk/Blog/deploying-sql-server-with-microsoft-deployment/</guid>
		<description><![CDATA[This guide focuses on VS2005 Express Edition with advanced services, though this applies to any version of SQL2005. The first thing you&#8217;ll need to do is copy the install files to your distribution share via the Deployment Workbench. Be sure to choose a directory structure without spaces as this seems to cause problems during setup. [...]]]></description>
			<content:encoded><![CDATA[<p>This guide focuses on VS2005 Express Edition with advanced services, though this applies to any version of SQL2005.</p>
<p>The first thing you&#8217;ll need to do is copy the install files to your distribution share via the Deployment Workbench. Be sure to choose a directory structure without spaces as this seems to cause problems during setup.</p>
<p>Once you&#8217;ve got your Application folder setup, create a file called &#8216;template.ini&#8217; in the same directory and add the following contents:<br />
<code><br />
[Options]<br />
ADDLOCAL=All<br />
INSTANCENAME=MSSQLSERVER<br />
SQLBROWSERACCOUNT="NT AUTHORITY\NETWORK SERVICE"<br />
SQLACCOUNT="NT AUTHORITY\NETWORK SERVICE"<br />
AGTACCOUNT="NT AUTHORITY\NETWORK SERVICE"<br />
ASACCOUNT="NT AUTHORITY\NETWORK SERVICE"<br />
RSACCOUNT="NT AUTHORITY\NETWORK SERVICE"<br />
SQLBROWSERAUTOSTART=1<br />
SQLAUTOSTART=1<br />
AGTAUTOSTART=0<br />
ASAUTOSTART=0<br />
RSAUTOSTART=0<br />
SECURITYMODE=SQL<br />
SAPWD=9C1_GM3Z@U*+<br />
DISABLENETWORKPROTOCOLS=0<br />
ERRORREPORTING=0<br />
SQMREPORTING=0<br />
</code></p>
<p>That will install all components, and set the local SA password to &#8217;9C1_GM3Z@U*+&#8217;. This needs to be a complex password, or setup will fail.</p>
<p>Once that&#8217;s in place, save the file and use the following quiet install command:</p>
<p><code>setup.exe /qn /settings \\london.nwtraders.msft\Distribution$\Applications\Microsoft_SQL2005_Express\template.ini</code></p>
<p>If you haven&#8217;t already got them added, you&#8217;ll need to add in dependencies for the .Net Framework 2.0 and Windows Installer 3.1</p>
<p>For .Net 2.0 extract dotnetfx.exe, add to your applications distribution folder via the Deployment Workbench and use the following quiet install command <code>install.exe /q</code></p>
<p>For Windows Installer 3.1 (if required) download, add to your applications distribution folder in the normal mannger and use <code>WindowsInstaller-KB893803-v2-x86.exe /quiet</code> as the quiet install command.</p>
<p>You should only need Windows Installer 3.1 if you plan on deploying it to Windows XP, so add a platform restriction (not sure what the official naming is) but choose &#8216;This can run only on the specified client platforms&#8217; but on the &#8216;Details&#8217; tab.</p>
]]></content:encoded>
			<wfw:commentRss>http://davehope.co.uk/Blog/deploying-sql-server-with-microsoft-deployment/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Changing &#8220;IT Organization&#8221; text</title>
		<link>http://davehope.co.uk/Blog/changing-it-organization-text/</link>
		<comments>http://davehope.co.uk/Blog/changing-it-organization-text/#comments</comments>
		<pubDate>Sat, 01 Dec 2007 13:49:44 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[BDD]]></category>
		<category><![CDATA[Microsoft Deployment]]></category>

		<guid isPermaLink="false">http://davehope.co.uk/Blog/changing-it-organization-bdd-text/</guid>
		<description><![CDATA[After a bit of investigation and asking around I thought I&#8217;d share this simple Microsoft Deployment tip. On the actions window by default it reads &#8220;IT Organization&#8221;, to change this add the following to CustomSetting.ini _SMSTSOrgName=NWTraders There, it&#8217;s that simple.]]></description>
			<content:encoded><![CDATA[<p>After a bit of investigation and asking around I thought I&#8217;d share this simple Microsoft Deployment tip.</p>
<p>On the actions window by default it reads &#8220;IT Organization&#8221;, to change this add the following to CustomSetting.ini</p>
<p><code>_SMSTSOrgName=NWTraders</code></p>
<p>There, it&#8217;s that simple.</p>
]]></content:encoded>
			<wfw:commentRss>http://davehope.co.uk/Blog/changing-it-organization-text/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Microsoft Deployment &amp; WSUS</title>
		<link>http://davehope.co.uk/Blog/microsoft-deployment-wsus/</link>
		<comments>http://davehope.co.uk/Blog/microsoft-deployment-wsus/#comments</comments>
		<pubDate>Wed, 14 Nov 2007 07:22:25 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[BDD]]></category>
		<category><![CDATA[Microsoft Deployment]]></category>
		<category><![CDATA[WSUS]]></category>

		<guid isPermaLink="false">http://davehope.co.uk/Blog/microsoft-deployment-wsus/</guid>
		<description><![CDATA[Microsoft have recently launched the latest version of BDD, now called &#8220;Microsoft Deployment&#8221; If you ask me, BDD sounded better but oh well. If like me you don&#8217;t want to create packages for each and every windows update for your deployment image, here&#8217;s how you can point the build process at your WSUS server. Firstly, [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft have <a href="http://blogs.technet.com/msdeployment/default.aspx">recently launched</a> the latest version of BDD, now called &#8220;Microsoft Deployment&#8221; If you ask me, BDD sounded better but oh well.</p>
<p>If like me you don&#8217;t want to create packages for each and every windows update for your deployment image, here&#8217;s how you can point the build process at your WSUS server.</p>
<p>Firstly, create the following file and store it in your &#8216;Scripts&#8217; folder, for example &#8221; C:\Distribution\Scripts\CustWsusSettings.wsf&#8221;:</p>
<p><code><br />
' //***************************************************************************<br />
' // ***** Script Header *****<br />
' //<br />
' // File:      CustWsusSettings.wsf<br />
' //<br />
' // Purpose:   Deploy WSUS Settings<br />
' //<br />
' // Customer Build Version:      1.0.0<br />
' // Customer Script Version:     1.0.0<br />
' //<br />
' // Customer History:<br />
' //<br />
' // ***** End Header *****<br />
' //***************************************************************************<br />
&lt;job id="CustWsusSettings"&gt;<br />
&lt;script language="VBScript" src="ZTIUtility.vbs"/&gt;<br />
&lt;script language="VBScript" src="WizUtility.vbs"/&gt;<br />
&lt;script language="VBScript"&gt;<br />
sWSUSServer = "http://london.nwtraders.msft:8530"<br />
oShell.RegWrite "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\WUServer", sWSUSServer, "REG_SZ"<br />
oShell.RegWrite "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\WUStatusServer",sWSUSServer, "REG_SZ"<br />
oShell.RegWrite "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU\UseWUServer",1, "REG_DWORD"<br />
' Return success.<br />
wscript.quit 0<br />
&lt;/script&gt;<br />
&lt;/job&gt;<br />
</code><br />
Be sure to change the sWSUSServer to point to your Wsus server. Now open up your task list in the Deployment Console and create a new command line task of the following:</p>
<p><code>cscript.exe "%SCRIPTROOT%\CustWsusSettings.wsf"</code></p>
<p>And as if by magic your updates will now come from your WSUS box from install.</p>
]]></content:encoded>
			<wfw:commentRss>http://davehope.co.uk/Blog/microsoft-deployment-wsus/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

