<?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>Teh Tech &#187; Integration</title>
	<atom:link href="http://tehtech.com/tag/integration/feed/" rel="self" type="application/rss+xml" />
	<link>http://tehtech.com</link>
	<description>Being an Admin is Hard Enough</description>
	<lastBuildDate>Wed, 14 Jul 2010 16:14:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>Integrating Service Pack 3 Into a Windows CD</title>
		<link>http://tehtech.com/integrating-service-pack-3-into-a-windows-cd/</link>
		<comments>http://tehtech.com/integrating-service-pack-3-into-a-windows-cd/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 03:30:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Updates]]></category>
		<category><![CDATA[Integration]]></category>
		<category><![CDATA[Service Pack 3]]></category>
		<category><![CDATA[Windows update]]></category>
		<category><![CDATA[windowsXP-KB936929-SP3-x86-ENU.exe]]></category>

		<guid isPermaLink="false">http://tehtech.com/?p=254</guid>
		<description><![CDATA[I hate having to install service pack 3 after installing a OS. Â I did not have a CD with SP3 slipstreamed yet, so I made one. Â Here is how to do it. Download: Â Download the path from Microsoft HERE Copy: Copy the ENTIRE contents of your windows CD to a working directory. Â Your windows CD [...]]]></description>
			<content:encoded><![CDATA[<p>I hate having to install service pack 3 after installing a OS. Â I did not have a CD with SP3 slipstreamed yet, so I made one. Â Here is how to do it.<br />
<span id="more-254"></span></p>
<ol>
<li>Download: Â Download the path from Microsoft <a title="SP3 Direct Link" href="http://download.microsoft.com/download/d/3/0/d30e32d8-418a-469d-b600-f32ce3edf42d/WindowsXP-KB936929-SP3-x86-ENU.exe" onclick="pageTracker._trackPageview('/outgoing/download.microsoft.com/download/d/3/0/d30e32d8-418a-469d-b600-f32ce3edf42d/WindowsXP-KB936929-SP3-x86-ENU.exe?referer=');">HERE</a></li>
<p></p>
<li>Copy: Copy the ENTIRE contents of your windows CD to a working directory. Â Your windows CD must have SP2 already. For this example we will make believe my CD is in my &#8220;E&#8221; drive and I am working out of a folder called &#8220;c:SP3_cd&#8221; Â I would copy everything from the E drive to c:sp3_cd, this can be done with drag and drop or by using xcopy:
<div class="box">xcopyÂ /e /r /y Â e:*.* c:sp3_cd</div>
</li>
<p><script type="text/javascript"><!--
google_ad_client = "pub-2740910196434334";
google_ad_slot = "5492961778";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
<br />
</p>
<li>Integrate: Â From command prompt CD to the location of your downloaded SP3 file and run theÂ integrateÂ command. Â For my example I will use:
<div class="box">Â WINDOWSXP-KB936929-SP3-X86-ENU.exe /integrate:c:sp3_cd</div>
</li>
<p></p>
<li>Rip: Using a utility called bbie (click <a title="BBIE link" href="http://69.90.47.6/mybootdisks.com/mybootdisks_com/nu2/bbie10.zip" onclick="pageTracker._trackPageview('/outgoing/69.90.47.6/mybootdisks.com/mybootdisks_com/nu2/bbie10.zip?referer=');">HERE</a>) rip the boot sector off your windows CD. Â Again from command line navigate to the location of your bbie andÂ simplyÂ input theÂ sourceÂ CD. Â To drop a file called &#8220;image1.bin&#8221; in the same directory as your bbie.exe I would run:
<div class="box"> bbie.exe e:</div>
</li>
<p></p>
<li>Make: Make a ISO with your folder and boot file. Â Use Nero, or Magic iso to burn the contents of your patched CD. Â Be sure to use the boot file we created. Â Select bootable form them menu. Â Alternitivly you can download barpe builder <a title="Bart pe" href="http://nu2.nu/pebuilder/" onclick="pageTracker._trackPageview('/outgoing/nu2.nu/pebuilder/?referer=');">HERE.</a> This package contains a file called mkisofs.exe from command line we can pass it a ton of arguments to make it output a iso.Â Change the colors to match your paths.<br />

<div class="box">
mkisofs.exe -force-uppercase -iso-level 4 -A mkisofs -sysid &#8220;dos&#8221; -b <span style="color: #993366;">c:image1.bin</span> -no-emul-boot -boot-load-size 4 -hide &#8220;boot.catalog&#8221; -oÂ <span style="color: #ff0000;"><span style="color: #00ffff;">c:SP3.iso </span><span style="color: #ff0000;">c:</span></span><span style="color: #ff0000;">sp3_cd</span></div>
</li>
<p></p>
<li>Rejoice: Â If you are like me and install windows a lot this will save you lots of time. Â </li>
<p>
</ol>
<p>Note: mkisofs is insanely complex switches. Â If you have nero or a application with a GUI to browse to the <span style="color: #ff0000;">source</span>, <span style="color: #993366;">boot image</span> and <span style="color: #00ffff;">output</span> it makes it much easier.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-2740910196434334";
google_ad_slot = "5492961778";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
]]></content:encoded>
			<wfw:commentRss>http://tehtech.com/integrating-service-pack-3-into-a-windows-cd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

