<?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>Andrew Morgan &#187; Enteo</title>
	<atom:link href="http://andrewmorgan.ie/tag/enteo/feed/" rel="self" type="application/rss+xml" />
	<link>http://andrewmorgan.ie</link>
	<description>Grumpy ramblings</description>
	<lastBuildDate>Fri, 30 Jun 2017 09:24:25 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4.0</generator>
	<item>
		<title>Cataloging Exported packages from Frontrange Enteo / DSM 7 with Powershell.</title>
		<link>http://andrewmorgan.ie/2011/11/cataloging-exported-packages-from-frontrange-enteo-dsm-7-with-powershell/</link>
		<comments>http://andrewmorgan.ie/2011/11/cataloging-exported-packages-from-frontrange-enteo-dsm-7-with-powershell/#comments</comments>
		<pubDate>Tue, 29 Nov 2011 09:36:44 +0000</pubDate>
		<dc:creator><![CDATA[andyjmorgan]]></dc:creator>
				<category><![CDATA[Enteo]]></category>
		<category><![CDATA[PowerShell Scripting]]></category>
		<category><![CDATA[DSM 7]]></category>
		<category><![CDATA[Frontrange]]></category>
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://andrewmorgan.ie/?p=1186</guid>
		<description><![CDATA[This is just a quick powershell script I threw together to catalog exported packages. By default when you export packages from Frontrange DSM (formerly Enteo) you end up with a large list of unique id&#8217;s with no real idea which package is which. The below quick and dirty Powershell function will enumerate the xml file in each package folder and create a catalog which you can then export to csv if you wish. To retrieve the list of packages and [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><img class="alignright" src="/wp-content/uploads/2011/03/windows_powershell_icon.png?w=68&amp;h=68&amp;h=68" alt="" width="68" height="68" /></p>
<p>This is just a quick powershell script I threw together to catalog exported packages.</p>
<p>By default when you export packages from Frontrange DSM (formerly Enteo) you end up with a large list of unique id&#8217;s with no real idea which package is which.</p>
<p><a href="/wp-content/uploads/2011/11/folderlist.png"><img class="aligncenter size-full wp-image-1194" title="folderlist" src="/wp-content/uploads/2011/11/folderlist.png" alt="" width="476" height="315" /></a></p>
<p>The below quick and dirty Powershell function will enumerate the xml file in each package folder and create a catalog which you can then export to csv if you wish.</p>
<p>To retrieve the list of packages and names, use the following command:</p>
<p><em>(where c:export is the location of your export)</em></p>
<pre>get-DSMpackages -DirectoryPath "C:Export"</pre>
<p>This will present itself as below:</p>
<p><a href="/wp-content/uploads/2011/11/powershell-export.png"><img class="aligncenter size-full wp-image-1192" title="powershell export" src="/wp-content/uploads/2011/11/powershell-export.png" alt="" width="600" height="97" /></a></p>
<p>To export the file to csv, try the following:</p>
<p><em>(where c:export is the location of your export, and you wish to save the csv file to c:exportcontents.csv)</em></p>
<pre>get-DSMpackages -DirectoryPath "C:Export" | Export-Csv C:Exportcontents.csv -notypeinformation</pre>
<p>This should create the csv file and look as follows:</p>
<p><a href="/wp-content/uploads/2011/11/result.png"><img class="aligncenter size-full wp-image-1193" title="Result" src="/wp-content/uploads/2011/11/result.png" alt="" width="600" height="349" /></a></p>
<p>Below is the function:</p>
<p>[sourcecode language=&#8221;Powershell&#8221;]<br />
function get-DSMpackages{<br />
    param(<br />
        [Parameter(Mandatory = $true)]<br />
        [string]$DirectoryPath)</p>
<p>    $result=@()</p>
<p>    foreach ($folder in Get-ChildItem $directorypath | where {$_.psiscontainer -eq $true}){</p>
<p>        [xml]$XMLBlock = get-content &quot;$($folder.fullname)_ExpInfo.xml&quot;<br />
        $name=$xmlblock.dsmexport.ArrayOfMdsObject.MdsObject.Name<br />
        if ($name -eq $null){<br />
            [xml]$XMLBlock = get-content &quot;$($folder.fullname)_ExpInfo.xml&quot;<br />
            $name=$xmlblock.dsmexport.ArrayOfMdsObject.mdsobject[0].name<br />
        }<br />
        $entry = New-Object PSObject -Property @{<br />
            Name=$Name<br />
            GUID=$folder.name}<br />
        $result+=$entry<br />
    }#end for<br />
    return ($result | sort name)<br />
}#end function<br />
[/sourcecode]</p>
]]></content:encoded>
			<wfw:commentRss>http://andrewmorgan.ie/2011/11/cataloging-exported-packages-from-frontrange-enteo-dsm-7-with-powershell/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How do you move a computer automatically from one OU to another using a script?</title>
		<link>http://andrewmorgan.ie/2008/12/how-do-you-move-a-computer-automatically-from-one-ou-to-another-using-a-script/</link>
		<comments>http://andrewmorgan.ie/2008/12/how-do-you-move-a-computer-automatically-from-one-ou-to-another-using-a-script/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 19:30:04 +0000</pubDate>
		<dc:creator><![CDATA[andyjmorgan]]></dc:creator>
				<category><![CDATA[Batch Scripting]]></category>
		<category><![CDATA[Enteo]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Windows Server]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://andymorgan.wordpress.com/?p=175</guid>
		<description><![CDATA[I was asked the following question recently when finishing our Citrix server deployment method. We needed a script that would run on a computer as part of a sequence of scripts that would move a server from its current OU to the servers final resting place a terminal servers OU. The below script achieved what we needed by using the computers %computername% variable to move the computer. In our case the following apply: ·The computers name is using the variable [&#8230;]]]></description>
				<content:encoded><![CDATA[<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;"><img class="alignright" src="/wp-content/uploads/2008/07/images.jpg?w=144&amp;h=108&amp;h=108" alt="" width="144" height="108" />I was asked the following question recently when finishing our Citrix server deployment method.</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">We needed a script that would run on a computer as part of a sequence of scripts that would move a server from its current OU to the servers final resting place a terminal servers OU.</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">The below script achieved what we needed by using the computers %computername% variable to move the computer.</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">In our case the following apply:</span></p>
<p class="MsoListParagraphCxSpFirst" style="text-indent:-18pt;margin:0 0 0 36pt;"><span style="font-family:Symbol;"><span style="font-size:small;">·</span></span><span style="font-size:small;font-family:Calibri;">The computers name is using the variable %computername%</span></p>
<p class="MsoListParagraphCxSpMiddle" style="text-indent:-18pt;margin:0 0 0 36pt;"><span style="font-family:Symbol;"><span style="font-size:small;">·</span></span><span style="font-size:small;"><span style="font-family:Calibri;">The domain is <strong>domain.net</strong></span></span></p>
<p class="MsoListParagraphCxSpMiddle" style="text-indent:-18pt;margin:0 0 0 36pt;"><span style="font-family:Symbol;"><span style="font-size:small;">·</span></span><span style="font-size:small;"><span style="font-family:Calibri;">The computers OU before the move is <strong>computers</strong></span></span></p>
<p class="MsoListParagraphCxSpLast" style="text-indent:-18pt;margin:0 0 10pt 36pt;"><span style="font-family:Symbol;"><span style="font-size:small;">·</span></span><span style="font-size:small;"><span style="font-family:Calibri;">The OU we wish to move to is <strong>Terminal Servers</strong></span></span></p>
<p class="MsoNormal" style="margin:0 0 10pt 18pt;"><span style="font-size:small;font-family:Calibri;">dsmove &#8220;CN=%computername%,OU=computers,DC=domain,DC=net&#8221; -d domain.net -newparent OU=&#8221;Terminal Servers&#8221;,DC=domain,DC=net</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">if you are unaware of the computers current OU before the move and you still wish to script the move, the <a href="http://forums.techarena.in/active-directory/356088.htm" target="_blank">following</a> forum post will get you in the right direction. </span></p>
]]></content:encoded>
			<wfw:commentRss>http://andrewmorgan.ie/2008/12/how-do-you-move-a-computer-automatically-from-one-ou-to-another-using-a-script/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Enteo: The 10 minute rule on batch files.</title>
		<link>http://andrewmorgan.ie/2008/11/enteo-the-10-minute-rule-on-batch-files/</link>
		<comments>http://andrewmorgan.ie/2008/11/enteo-the-10-minute-rule-on-batch-files/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 11:06:00 +0000</pubDate>
		<dc:creator><![CDATA[andyjmorgan]]></dc:creator>
				<category><![CDATA[Batch Scripting]]></category>
		<category><![CDATA[Enteo]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://andymorgan.wordpress.com/?p=152</guid>
		<description><![CDATA[Heres a tricky problem with Enteo, When executing a batch file enteo only gives a batch file 10 minutes to complete before moving on. Generally speaking this is no problem as how many batch files do you run take over 10 minutes? This problem came to light for us when enteo began causing our ESX servers to purple screen of death during the pe stage of the build, which resulted in us moving our virtual servers to a stable ESX [&#8230;]]]></description>
				<content:encoded><![CDATA[<p style="text-align:left;"><img class="alignright" src="/wp-content/uploads/2008/10/zeichen_typ_data_22.gif?w=32&amp;h=32" alt="" width="32" height="32" />Heres a tricky problem with Enteo, When executing a batch file enteo only gives a batch file 10 minutes to complete before moving on.</p>
<p style="text-align:left;">Generally speaking this is no problem as how many batch files do you run take over 10 minutes?</p>
<p style="text-align:left;">This problem came to light for us when enteo began causing our ESX servers to purple screen of death during the pe stage of the build, which resulted in us moving our virtual servers to a stable ESX while we rebuilt. The problem was that the ESX was so slow with all the added servers that our scripted citrix updates were taking over 10 minutes, the script continued, rebooted the server during the updates and low and behold a very sick citrix server.</p>
<p style="text-align:left;">The trick to get around this, and i recommend this for any batch file you run in enteo, is to create a looping if statement in the enteo script to check for a registry key. Once you have this key created run your updates then delete the key as the last line in your batch file. This will cause enteo to loop even after the 10 minutes leaving your critical updates to install without fear of being.</p>
<p style="text-align:left;">heres the idea for the enteo script:</p>
<p style="text-align:left;padding-left:30px;">execute %systemdrive%longbatchfile.bat /?<br />
:check<br />
if exist regkey goto sleep<br />
del %systemdrive%longbatchfile<br />
Exitproc<br />
:sleep<br />
sleep 60<br />
goto check</p>
<p style="text-align:left;padding-left:30px;">And in the batchfile create the reg key, do your work then delete it:</p>
<p style="text-align:left;padding-left:30px;">reg add hklmsoftwareenteo /v checkkey<br />
update1<br />
update2<br />
update3<br />
update4<br />
update5<br />
reg delete hklmsoftwareenteo /v checkkey</p>
<p style="text-align:left;">what will happen is simple, even if the script times out, the script will carry on sleeping until the key is deleted, no matter how long it takes.</p>
<p style="text-align:left;">After the jump is an example of my code so you can see what we did to get around this <img src="http://andrewmorgan.ie/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /></p>
<p style="text-align:left;"><span id="more-152"></span></p>
<p style="text-align:left;">Enteo EScript:</p>
<p style="text-align:left;padding-left:30px;">Copy(&#8216;.Extern$*.*&#8217;,&#8217;%windir%TempHotfix&#8217;)/TW<br />
Execute(&#8216;%windir%temphotfixhotfix_install.bat&#8217;)/?<br />
: Check<br />
If RegValueExists(&#8216;HKEY_LOCAL_MACHINESOFTWAREEnteo&#8217;,&#8217;rebootstatus&#8217;)<br />
goto Sleep<br />
Delete(&#8216;%windir%temphotfix*.*&#8217;)<br />
RemoveDir(&#8216;%windir%temphotfix&#8217;)/S/TW<br />
Execute(&#8216;%WINSYSDIR%shutdown.exe /r /t 30&#8242;)<br />
ExitProc(Done)<br />
: Sleep<br />
Sleep(&#8217;60&#8217;)<br />
goto Check</p>
<p style="text-align:left;">Batch file:</p>
<p style="text-align:left;padding-left:30px;">Rem Adding check registry key<br />
Reg add &#8220;HKEY_LOCAL_MACHINESOFTWAREEnteo&#8221; /v rebootstatus /t REG_SZ /d &#8220;0&#8221; /f<br />
msiexec /p %windir%temphotfixPSE450W2K3R02.msp /qn /norestart<br />
msiexec /p %windir%temphotfixPSE450R02W2K3002.msp /qn /norestart<br />
msiexec /p %windir%temphotfixPSE450R02W2K3004.msp /qn /norestart<br />
msiexec /p %windir%temphotfixPSE450R02W2K3007.msp /qn /norestart<br />
msiexec /p %windir%temphotfixPSE450R02W2K3008.msp /qn /norestart<br />
msiexec /p %windir%temphotfixPSE450R02W2K3010.msp /qn /norestart<br />
msiexec /p %windir%temphotfixPSE450R02W2K3014.msp /qn /norestart<br />
msiexec /p %windir%temphotfixPSE450R02W2K3036.msp /qn /norestart<br />
msiexec /p %windir%temphotfixPSE450R02W2K3037.msp /qn /norestart<br />
Rem Clearing check registry key<br />
reg delete HKEY_LOCAL_MACHINESOFTWAREEnteo /v rebootstatus /f</p>
<p style="text-align:left;">as with the above, the batch file controlling when the reg key is created and deleted determines when the script is allowed to end, regardless of enteo&#8217;s 10 minute rule.</p>
<p style="text-align:left;">
]]></content:encoded>
			<wfw:commentRss>http://andrewmorgan.ie/2008/11/enteo-the-10-minute-rule-on-batch-files/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Unattended install of AppV Lightweight streaming server</title>
		<link>http://andrewmorgan.ie/2008/11/unattended-install-of-appv-lightweight-streaming-server/</link>
		<comments>http://andrewmorgan.ie/2008/11/unattended-install-of-appv-lightweight-streaming-server/#comments</comments>
		<pubDate>Mon, 03 Nov 2008 19:34:47 +0000</pubDate>
		<dc:creator><![CDATA[andyjmorgan]]></dc:creator>
				<category><![CDATA[App-V]]></category>
		<category><![CDATA[Batch Scripting]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Appv]]></category>
		<category><![CDATA[Enteo]]></category>
		<category><![CDATA[Softgrid]]></category>

		<guid isPermaLink="false">http://andymorgan.wordpress.com/?p=168</guid>
		<description><![CDATA[I set about rolling out appv light weight streaming server recently, its the new version of app that requires no database, management server, console&#8230; nothing! Great application but the unattended install lacked documentation etc. Below is the script i used to install the lightweight server via the command line, the %appv-dir% variable should be a network share or local drive that the server will access for the applications: set appv-dir=servernameappv-production$ msiexec /i setup.msi INSTALLDIR=&#8221;C:Program FilesMicrosoft System Center App Virt Streaming [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><a href="/wp-content/uploads/2008/11/softgrid_banner_left1.jpg"><img class="size-full wp-image-171 alignright" title="softgrid_banner_left1" src="/wp-content/uploads/2008/11/softgrid_banner_left1.jpg" alt="" width="71" height="62" /></a>I set about rolling out appv light weight streaming server recently, its the new version of app that requires no database, management server, console&#8230; nothing! Great application but the unattended install lacked documentation etc.</p>
<p>Below is the script i used to install the lightweight server via the command line, the %appv-dir% variable should be a network share or local drive that the server will access for the applications:</p>
<p style="padding-left:30px;">set appv-dir=servernameappv-production$<br />
msiexec /i setup.msi INSTALLDIR=&#8221;C:Program FilesMicrosoft System Center App Virt Streaming Server&#8221; ADDLOCAL=Release_SoftGrid_Lightweight_Server SWICONTENTDIR=%appv-dir% /Lv &#8220;c:appv-install.log&#8221; /qn /norestart</p>
<p>Hope it speeds up somebody elses install somewhat <img src="http://andrewmorgan.ie/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /></p>
]]></content:encoded>
			<wfw:commentRss>http://andrewmorgan.ie/2008/11/unattended-install-of-appv-lightweight-streaming-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enteo: What the hell is a mscreate.dir folder?</title>
		<link>http://andrewmorgan.ie/2008/10/enteo-what-the-hell-is-a-mscreatedir-folder/</link>
		<comments>http://andrewmorgan.ie/2008/10/enteo-what-the-hell-is-a-mscreatedir-folder/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 21:06:10 +0000</pubDate>
		<dc:creator><![CDATA[andyjmorgan]]></dc:creator>
				<category><![CDATA[Batch Scripting]]></category>
		<category><![CDATA[Enteo]]></category>
		<category><![CDATA[Scripting]]></category>

		<guid isPermaLink="false">http://andymorgan.wordpress.com/?p=145</guid>
		<description><![CDATA[We are using Enteo as a deployment method for our new citrix farms at present, we are having one or two bugs but over all I&#8217;m greatly impressed with this software, its like RIS but it very functional! Our latest issue with powerfuse is that we cant redirect the users desktop, we have the home drive mapped, the user shell registry entries but poof, no desktop redirection. During troubleshooting we noticed these mscreate.dir folders in every single folder in our [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><a href="/wp-content/uploads/2008/10/zeichen_typ_data_22.gif"><img class="alignright size-full wp-image-146" title="zeichen_typ_data_22" src="/wp-content/uploads/2008/10/zeichen_typ_data_22.gif" alt="" width="32" height="32" /></a></p>
<p>We are using Enteo as a deployment method for our new citrix farms at present, we are having one or two bugs but over all I&#8217;m greatly impressed with this software, its like RIS but it very functional!</p>
<p>Our latest issue with powerfuse is that we cant redirect the users desktop, we have the home drive mapped, the user shell registry entries but poof, no desktop redirection.</p>
<p>During troubleshooting we noticed these mscreate.dir folders in every single folder in our mandatory profile folder and havent a clue where they came from?!? After a bit of digging around Enteo creates these files as logs for the uninstallation of software deployed through Enteo. We were using an Enteo script to copy the mandatory profile to the %systemdrive% of every citrix server allowing the manadatory profile to be loaded quickly from local disk.</p>
<p>Now that we know what the folders are we dont mind them too much, but if you do choose to remove them, simply open the folder you have copied down with enteo and execute this batch command to remove them:</p>
<p style="padding-left:30px;">del /s /f mscreate.dir</p>
<p>Nothing else to report at the moment, well lots to report but not enough time <img src="http://andrewmorgan.ie/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /></p>
<p>Toodles.</p>
]]></content:encoded>
			<wfw:commentRss>http://andrewmorgan.ie/2008/10/enteo-what-the-hell-is-a-mscreatedir-folder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install server 2003 r2 disk 2 Silently.</title>
		<link>http://andrewmorgan.ie/2008/10/how-to-install-server-2003-r2-disk-2-silently/</link>
		<comments>http://andrewmorgan.ie/2008/10/how-to-install-server-2003-r2-disk-2-silently/#comments</comments>
		<pubDate>Fri, 17 Oct 2008 14:08:52 +0000</pubDate>
		<dc:creator><![CDATA[andyjmorgan]]></dc:creator>
				<category><![CDATA[Batch Scripting]]></category>
		<category><![CDATA[Enteo]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Server 2003]]></category>

		<guid isPermaLink="false">http://andymorgan.wordpress.com/?p=148</guid>
		<description><![CDATA[During out Enteo rollout we were faced with a problem of how to either A: stop server 2003 from prompting us to install cd or B: just install the useless cd to register the operating system as R2. After a bit of digging, and some help from a very friendly consultant called Hans from Frontrange, we came up with the following method. You need to create a .CAB file of the entire cd of r2, extract it using extract.exe to [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><a href="/wp-content/uploads/2008/10/1010451006.jpg"><img class="alignright size-full wp-image-149" title="1010451006" src="/wp-content/uploads/2008/10/1010451006.jpg" alt="" width="105" height="105" /></a>During out Enteo rollout we were faced with a problem of how to either A: stop server 2003 from prompting us to install cd or B: just install the useless cd to register the operating system as R2. After a bit of digging, and some help from a very friendly consultant called Hans from Frontrange, we came up with the following method.</p>
<p>You need to create a .CAB file of the entire cd of r2, extract it using <a href="http://www.microsoft.com/DOWNLOADS/details.aspx?FamilyID=7eea40f3-21be-4f77-921c-3cf7042d6eb2&amp;displaylang=en" target="_blank">extract.exe</a> to the root of the c drive, run the installation then delete the extracted files (if you wish).</p>
<p>Sounds simple eh? you have no idea how much of a pain in the backside this was. Firstly ill put this out there for anyone who tries to use the CRAPPY utilities by microsoft for creating cab files, DONT BOTHER. After 2 hours of tinkering and scripting the steaming pile of useless cab files was quite proportionate.</p>
<p>To answer this question to anyone googling, here it is:<strong> </strong></p>
<p><strong>How do i create a cab file from a source folder? Use <a href="http://www.tugzip.com/">tugzip</a>.</strong> One problem with tugzip and cabs its seems to hang on 100% with the only option to cancel, this seems to be normal, so just wait for 2-3 mins on 100% then cancel away.</p>
<p>The only problem here is that if you have the files above the c: prompt the files will not install correctly, tugzip remembers the path of the zipped files after the drive prompt, so if you zipped c:mydocs2003r2 extract will put them back in that exact folder.</p>
<p>Heres what you do:</p>
<ul>
<li>copy your installation files to a folder anywhere on your disk.</li>
<li>use the subst command to map the folder to the root of a free drive (subst z: c:mydocs2003r2)</li>
<li>now browse to the z: drive and use tugzip to create your archive file.</li>
</ul>
<p><em>you can of course bypass all the above if you place the cd in the drive and use the cd&#8217;s drive letter <img src="http://andrewmorgan.ie/wp-includes/images/smilies/icon_wink.gif" alt=";)" class="wp-smiley" /> its amazing how simple an answer that WOULD have been if i had thought of it.</em></p>
<p>Once you have done that, its simple scripting time!</p>
<p style="padding-left:30px;">copy servernamesharenameextract.exe c:<br />
copy servernamesharename2003r2cd2.cab c:<br />
c:extract.exe /E 2003R2CD2.cab /L c:2003R2CD2 /y<br />
C:2003R2CD2CMPNENTSR2setup2.exe /q /a /p:xxxxx-xxxxx-xxxxx-xxxxx-xxxxx /sr<br />
rd c:2003R2CD2 /s /q<br />
del extract.exe<br />
del 2003R2CD2.cab</p>
<p>TADA <img src="http://andrewmorgan.ie/wp-includes/images/smilies/icon_wink.gif" alt=";)" class="wp-smiley" /></p>
<p>your server (post reboot) should report server 2003 r2 correctly. Might be worth noting that server 2003 enterprise and standard do NOT share the same cd. So if you have an environment with both, time to repeat the above steps for the other cd.</p>
]]></content:encoded>
			<wfw:commentRss>http://andrewmorgan.ie/2008/10/how-to-install-server-2003-r2-disk-2-silently/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
