<?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>Read, Deploy, Enjoy!</title>
	<atom:link href="http://www.kevintaber.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kevintaber.com</link>
	<description>IT done stress free: A great place to share configurations and discover best practices</description>
	<lastBuildDate>Thu, 26 Jan 2012 17:09:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Upgrading ShoreTel V series switches broke voice mail</title>
		<link>http://www.kevintaber.com/2012/01/26/upgrading-shoretel-v-series-switches-broke-voice-mail/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=upgrading-shoretel-v-series-switches-broke-voice-mail</link>
		<comments>http://www.kevintaber.com/2012/01/26/upgrading-shoretel-v-series-switches-broke-voice-mail/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 16:57:19 +0000</pubDate>
		<dc:creator>ktaber</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.kevintaber.com/?p=733</guid>
		<description><![CDATA[
After upgrading our ShoreTel 11.1 system to the latest version, 12.1, the sites with Voice series switches no longer had voice mail capabilities. If you missed a call the link would just ring 4 times and go to dead air.
Knowing that V series ShoreGear switches were sensitive to NTP for voice mai [...]]]></description>
			<content:encoded><![CDATA[<div>
<p>After upgrading our ShoreTel 11.1 system to the latest version, 12.1, the sites with Voice series switches no longer had voice mail capabilities. If you missed a call the link would just ring 4 times and go to dead air.</p>
<p>Knowing that V series ShoreGear switches were sensitive to NTP for voice mail to function, it was time to check the switch configuration.</p>
<p>When connecting via SSH using admin/ShoreTel as my login/password, I noticed the configuration showed the following <em>incorrect</em> NTP info:</p>
<p><strong>Time server IP address = 132.163.4.101</strong></p>
<p>However, when I tried to change the time server IP I received this message:</p>
<p><strong>please use Director&#8217;s Sites page to set Time Server (NTP) Ip Address</strong></p>
<p>Logging into Director&#8217;s Sites page and inputting the Network Time Protocol Server <strong>and rebooting</strong> the switch did the trick.</p>
<p><strong>ShoreWare Director &gt; Administration &gt; Sites &gt; My specific site:</strong></p>
</div>
<div><a href="http://www.kevintaber.com/wp-content/uploads/2012/01/shoretel-network-time-server.png"><img class="alignnone size-full wp-image-735" title="shoretel network time server" src="http://www.kevintaber.com/wp-content/uploads/2012/01/shoretel-network-time-server.png" alt="" width="507" height="116" /></a></div>
<div>So just know going forward, time is set from ShoreWare Director instead of on the ShoreGear switch directly like it used to be.</div>
]]></content:encoded>
			<wfw:commentRss>http://www.kevintaber.com/2012/01/26/upgrading-shoretel-v-series-switches-broke-voice-mail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cisco ASA DNS inspection for DSNSSEC</title>
		<link>http://www.kevintaber.com/2012/01/20/cisco-asa-dns-inspection-for-dsnssec/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=cisco-asa-dns-inspection-for-dsnssec</link>
		<comments>http://www.kevintaber.com/2012/01/20/cisco-asa-dns-inspection-for-dsnssec/#comments</comments>
		<pubDate>Fri, 20 Jan 2012 19:08:13 +0000</pubDate>
		<dc:creator>ktaber</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.kevintaber.com/?p=717</guid>
		<description><![CDATA[It is important to use DNS inspection and update it for up coming DNSSEC. Here is how to enable your ASA to work with DNSSEC.
Required: Cisco ASA running software version 8.2.2 or later
Cisco Documentation
CLI Configuration:
ciscoasa# configure terminal
ciscoasa(config)# policy-map type inspect [...]]]></description>
			<content:encoded><![CDATA[<p>It is important to use DNS inspection and update it for up coming DNSSEC. Here is how to enable your ASA to work with DNSSEC.</p>
<p>Required: Cisco ASA running software version 8.2.2 or later<br />
<a href="http://www.cisco.com/web/about/security/intelligence/dnssec.html" target="_blank">Cisco Documentation</a></p>
<p>CLI Configuration:</p>
<p><strong>ciscoasa# configure terminal</strong><br />
<strong>ciscoasa(config)# policy-map type inspect dns preset_dns_map</strong><br />
<strong>ciscoasa(config-pmap)# parameters</strong><br />
<strong>ciscoasa(config-pmap-p)# message-length maximum client auto</strong><br />
<strong>ciscoasa(config-pmap-p)# write memory</strong></p>
<p>You can now exit your SSH connection.</p>
<p><strong>ciscoasa# show running-config</strong></p>
<p>You should see this somewhere in your configuration now:</p>
<p>!<br />
policy-map type inspect dns preset_dns_map<br />
parameters<br />
<strong>message-length maximum client auto</strong><br />
<strong> message-length maximum 512</strong><br />
policy-map global-policy<br />
class global-class<br />
inspect ftp<br />
inspect icmp<br />
inspect dns preset_dns_map<br />
!</p>
<p>&nbsp;</p>
<p>Note: The <strong>message-length maximum 512</strong> should already be there from the inspection defaults.</p>
<p>&nbsp;</p>
<p>ASDM Configuration:</p>
<p><a href="http://www.kevintaber.com/wp-content/uploads/2012/01/asa-1.jpg"><img class="alignnone size-full wp-image-730" title="asa-1" src="http://www.kevintaber.com/wp-content/uploads/2012/01/asa-1.jpg" alt="" width="800" height="615" /></a></p>
<p><a href="http://www.kevintaber.com/wp-content/uploads/2012/01/asa-2.jpg"><img class="alignnone size-full wp-image-725" title="asa-2" src="http://www.kevintaber.com/wp-content/uploads/2012/01/asa-2.jpg" alt="" width="304" height="487" /></a></p>
<p><a href="http://www.kevintaber.com/wp-content/uploads/2012/01/asa-3.jpg"><img class="alignnone size-full wp-image-726" title="asa-3" src="http://www.kevintaber.com/wp-content/uploads/2012/01/asa-3.jpg" alt="" width="800" height="499" /></a></p>
<p><a href="http://www.kevintaber.com/wp-content/uploads/2012/01/asa-4.jpg"><img class="alignnone size-full wp-image-731" title="asa-4" src="http://www.kevintaber.com/wp-content/uploads/2012/01/asa-4.jpg" alt="" width="800" height="615" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevintaber.com/2012/01/20/cisco-asa-dns-inspection-for-dsnssec/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu boots to initramfs BusyBox message</title>
		<link>http://www.kevintaber.com/2012/01/10/ubuntu-boots-to-initramfs-busybox-message/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ubuntu-boots-to-initramfs-busybox-message</link>
		<comments>http://www.kevintaber.com/2012/01/10/ubuntu-boots-to-initramfs-busybox-message/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 04:32:23 +0000</pubDate>
		<dc:creator>ktaber</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.kevintaber.com/?p=702</guid>
		<description><![CDATA[Thinking that installing a virtual kernel for Ubuntu 11.04 would allow my VM to run as paravirtualized (PV) and allow my XenServer Tools to work, I was sadly mistaken.
Once the XenServer Ubuntu VM rebooted, I was no longer able to boot and just received a BusyBox initramfs prompt.

Grub2  [...]]]></description>
			<content:encoded><![CDATA[<p>Thinking that installing a virtual kernel for Ubuntu 11.04 would allow my VM to run as paravirtualized (PV) and allow my XenServer Tools to work, I was sadly mistaken.</p>
<p>Once the XenServer Ubuntu VM rebooted, I was no longer able to boot and just received a BusyBox initramfs prompt.</p>
<p><a href="http://www.kevintaber.com/wp-content/uploads/2012/01/BusyBox.png"><img class="alignnone size-full wp-image-715" title="BusyBox" src="http://www.kevintaber.com/wp-content/uploads/2012/01/BusyBox.png" alt="" width="401" height="161" /></a></p>
<p>Grub2 is supposed to allow you to hold Shift to get to the grub menu but this did not work at all for me. Just kept seeing a blank screen and eventually the initramfs screen. I think this is a XenServer limitation, as I was trying from the VM console.</p>
<p>The version of grub2 is 1.99 beginning with Ubuntu 11.04 and we can boot with the LiveCD to ChRoot and remove the wrong kernel. Older versions should work too, but I am just letting you know what I was facing.</p>
<p>Boot the appropriate Ubuntu LiveCD (needs to be the exact same bit/version of your installed OS).</p>
<p>Next, mount your disk assuming your /boot partition is not on a separate partition:</p>
<p style="padding-left: 30px;"><strong>sudo mount /dev/sda1 /mnt</strong><br />
<strong>for i in /dev /dev/pts /proc /sys; do sudo mount -B $i /mnt$i; done</strong><br />
<strong>sudo chroot /mnt</strong></p>
<p>Once ChRooted run apt-get remove linux-image-&lt;your-version-to-remove&gt; (<strong>review boot/grub/grub.cfg</strong> to see what the version is you want to remove: vmlinuz<strong>-2.6.32-13-virtual</strong>):</p>
<p style="padding-left: 30px;"><strong>apt-get remove linux-image-2.6.38-13-virtual</strong><br />
exit chroot by pressing<strong> CTRL-D</strong><br />
<strong>for i in /sys /proc /dev/pts /dev; do sudo umount /mnt$i; done</strong><br />
<strong>sudo umount /mnt</strong><br />
<strong>sudo reboot</strong></p>
<p>For further details please review the <a href="https://help.ubuntu.com/community/Grub2#ChRoot" target="_blank">Ubuntu Community Help on ChRoot</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevintaber.com/2012/01/10/ubuntu-boots-to-initramfs-busybox-message/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get Windows 7 to display Installing Managed Software message like XP</title>
		<link>http://www.kevintaber.com/2012/01/03/get-windows-7-to-display-installing-managed-software-message-like-xp/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=get-windows-7-to-display-installing-managed-software-message-like-xp</link>
		<comments>http://www.kevintaber.com/2012/01/03/get-windows-7-to-display-installing-managed-software-message-like-xp/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 22:55:54 +0000</pubDate>
		<dc:creator>ktaber</dc:creator>
				<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.kevintaber.com/?p=695</guid>
		<description><![CDATA[When pushing applications via Group Policy (GPO), Windows XP displays a message Installing Managed Software but Windows 7 doesn&#8217;t by default. There is, however, a way to enable this feature.
Use Group Policy Management  and set the following:
Computer Configuration &#62; Policies &#62; Administrativ [...]]]></description>
			<content:encoded><![CDATA[<p>When pushing applications via Group Policy (GPO), Windows XP displays a message Installing Managed Software but Windows 7 doesn&#8217;t by default. There is, however, a way to enable this feature.</p>
<p>Use Group Policy Management  and set the following:</p>
<p><strong>Computer Configuration &gt; Policies &gt; Administrative Templates &gt; System &gt; Verbose vs normal status messages &gt; Enabled</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevintaber.com/2012/01/03/get-windows-7-to-display-installing-managed-software-message-like-xp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install Adobe Flash Player on CentOS</title>
		<link>http://www.kevintaber.com/2011/12/30/install-adobe-flash-player-on-centos/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=install-adobe-flash-player-on-centos</link>
		<comments>http://www.kevintaber.com/2011/12/30/install-adobe-flash-player-on-centos/#comments</comments>
		<pubDate>Sat, 31 Dec 2011 01:56:09 +0000</pubDate>
		<dc:creator>ktaber</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.kevintaber.com/?p=689</guid>
		<description><![CDATA[After installing CentOS 6.2 you will want to make Firefox happier and get Adobe Flash Player.

Visit http://get.adobe.com/flashplayer/otherversions/
Select Linux (64bit or 32bit depending on what version of CentOS you installed)
Select (.rpm)
Click Download now


Once finished, select op [...]]]></description>
			<content:encoded><![CDATA[<p>After installing CentOS 6.2 you will want to make Firefox happier and get Adobe Flash Player.</p>
<ul>
<li>Visit <a href="http://get.adobe.com/flashplayer/otherversions/" target="_blank">http://get.adobe.com/flashplayer/otherversions/</a></li>
<li>Select Linux (64bit or 32bit depending on what version of CentOS you installed)</li>
<li>Select (.rpm)</li>
<li>Click Download now</li>
</ul>
<p><a href="http://www.kevintaber.com/wp-content/uploads/2011/12/adobe.png"><img class="alignnone size-full wp-image-690" title="adobe" src="http://www.kevintaber.com/wp-content/uploads/2011/12/adobe.png" alt="" width="776" height="441" /></a></p>
<p>Once finished, select open with Package Installer, press OK, and input your root password when prompted.</p>
<p><a href="http://www.kevintaber.com/wp-content/uploads/2011/12/rpm.png"><img class="alignnone size-full wp-image-691" title="rpm" src="http://www.kevintaber.com/wp-content/uploads/2011/12/rpm.png" alt="" width="459" height="342" /></a></p>
<p>Exit Firefox and reopen it and you&#8217;re done.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevintaber.com/2011/12/30/install-adobe-flash-player-on-centos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Extract ShoreTel Communicator msi from Setup.exe</title>
		<link>http://www.kevintaber.com/2011/12/28/extract-shoretel-communicator-msi-from-setup-exe/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=extract-shoretel-communicator-msi-from-setup-exe</link>
		<comments>http://www.kevintaber.com/2011/12/28/extract-shoretel-communicator-msi-from-setup-exe/#comments</comments>
		<pubDate>Thu, 29 Dec 2011 02:08:43 +0000</pubDate>
		<dc:creator>ktaber</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.kevintaber.com/?p=682</guid>
		<description><![CDATA[Point your browser to http://servername/ShorewareResources/ClientInstall to find the download link for the ShoreTel Communicator.
In an Administrator command prompt, run Setup.exe /b&#8221;C:\extracted&#8221;  (note there is intentionally not a colon after /b)
The GUI installer will decompress the .msi an [...]]]></description>
			<content:encoded><![CDATA[<p>Point your browser to http://servername/ShorewareResources/ClientInstall to find the download link for the ShoreTel Communicator.</p>
<p>In an Administrator command prompt, run <strong>Setup.exe /b&#8221;C:\extracted&#8221;</strong>  (note there is intentionally not a colon after /b)</p>
<p>The GUI installer will decompress the .msi and 1033.mst files to the path specified, and present you with Next or Cancel. <strong>Choose Cancel and then Finish</strong>. (1033.MST is just an English language transform that is not really needed.)</p>
<p>You now have your files extracted from the Installshield exe so that you can use to deploy ShoreTel Communicator via a Group Policy Object. (GPO)</p>
<p>Unfortunately running Setup.exe /? will not help you. I found the /b in an Installshield manual. The files are also extracted to a GUID named folder in %temp% too, but this is a safer bet.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevintaber.com/2011/12/28/extract-shoretel-communicator-msi-from-setup-exe/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Update the Updates folder for Office 2010</title>
		<link>http://www.kevintaber.com/2011/12/23/update-the-updates-folder-for-office-2010/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=update-the-updates-folder-for-office-2010</link>
		<comments>http://www.kevintaber.com/2011/12/23/update-the-updates-folder-for-office-2010/#comments</comments>
		<pubDate>Fri, 23 Dec 2011 16:05:16 +0000</pubDate>
		<dc:creator>ktaber</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://www.kevintaber.com/?p=676</guid>
		<description><![CDATA[If you are like me and have used a network installation point for Office 2010, then there is an easy way to have a fresh install with all the updates. Here are the steps:

Install Office 2010 to your liking on a PC
Use Microsoft Update to install all the needed updates for that PC
 [...]]]></description>
			<content:encoded><![CDATA[<p>If you are like me and have used a network installation point for Office 2010, then there is an easy way to have a fresh install with all the updates. Here are the steps:</p>
<ul>
<li>Install Office 2010 to your liking on a PC</li>
<li>Use Microsoft Update to install all the needed updates for that PC</li>
<li>Use CollectUpdates.vbs to gather all installed Office updates and service packs (<a href="http://technet.microsoft.com/en-us/library/cc178995.aspx#TestVerifyMSP" target="_blank">see TechNet</a>)</li>
<li>Copy the collected updates from %Temp%\Updates to the network installation point&#8217;s Updates folder</li>
</ul>
<p>That&#8217;s it. Next time you install Office 2010 it will install all those updates during the initial installation. *This method has replaced slip streaming.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevintaber.com/2011/12/23/update-the-updates-folder-for-office-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exchange 2010 OAB GAL not updating</title>
		<link>http://www.kevintaber.com/2011/12/09/exchange-2010-oab-gal-not-updating/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=exchange-2010-oab-gal-not-updating</link>
		<comments>http://www.kevintaber.com/2011/12/09/exchange-2010-oab-gal-not-updating/#comments</comments>
		<pubDate>Fri, 09 Dec 2011 16:39:32 +0000</pubDate>
		<dc:creator>ktaber</dc:creator>
				<category><![CDATA[Exchange Server]]></category>

		<guid isPermaLink="false">http://www.kevintaber.com/?p=658</guid>
		<description><![CDATA[After migrating from Exchange 2007 to 2010 and running co-existance for a bit, users noticed that their GAL was missing new addresses.
&#160;
Trying to download the Address Book: Produces an Outlook client error 0&#215;80200049 The operation failed.
You will notice that the OAB / GAL in cached mode is out  [...]]]></description>
			<content:encoded><![CDATA[<p>After migrating from Exchange 2007 to 2010 and running co-existance for a bit, users noticed that their GAL was missing new addresses.</p>
<p>&nbsp;</p>
<p>Trying to download the Address Book: Produces an Outlook client error 0&#215;80200049 The operation failed.</p>
<p>You will notice that the OAB / GAL in cached mode is out of date, but the OAB / GAL in online mode is correct.</p>
<p>Note: This article assumes you have already created a Public folder database on Exchange 2010.</p>
<p>&nbsp;</p>
<p>HOW TO FIX THIS</p>
<p>First check that your databases are pointing to the correct 2010 server for Default public folder database and Offline address book.</p>
<p>&nbsp;</p>
<p><strong>In EMC</strong></p>
<p>Organization Configuration &gt; Mailbox &gt; Database Management tab &gt; Properties on a DB &gt; Client Settings tab</p>
<p>&nbsp;</p>
<p><strong>In Windows Explorer</strong></p>
<p>Delete all files/directories INSIDE but not the directories themselves:</p>
<p>C:\Program Files\Microsoft\Exchange Server\V14\ExchangeOAB</p>
<p>C:\Program Files\Microsoft\Exchange Server\V14\ClientAccess\OAB</p>
<p>&nbsp;</p>
<p><strong>In EMC</strong></p>
<p>Server Configuration &gt; Client Access &gt; select SERVER &gt; In action pane: Reset Virtual Directory&#8230;</p>
<p>Browse&#8230; &gt; select OAB (Default Web Site) and click OK.</p>
<p>Click Next, when prompted choose Yes to All and choose Finish when complete.</p>
<p>Wait 30 sec for AD to replicate the changes.</p>
<p>&nbsp;</p>
<p><strong>In a command prompt</strong></p>
<p>iisreset (/noforce is optional, MS support never had me use it)</p>
<p>&nbsp;</p>
<p><strong>In Exchange Management Shell</strong></p>
<p>Set-OABVirtualDirectory -Identity &#8220;OAB (Default Web Site)&#8221; -RequireSSL $true -ExternalURL &#8220;https://exchange.contoso.com/OAB&#8221;</p>
<p>Get-OABVirtualDirectory |fl</p>
<p>Verify your InternalURL (http) and ExternalURL (https) and RequireSSL True</p>
<p>&nbsp;</p>
<p><strong>In EMC</strong></p>
<p>Organization Configuration &gt; Mailbox &gt; Offline Address Book tab &gt; Properties on Default Offline Address Book &gt; Distribution tab &gt; Enable Web-based distribution &gt; Add&#8230; &gt; Choose your OAB on Exchange 2010 &gt; Apply/OK</p>
<p>Right-click Default Offline Address Book &gt; Update &gt; Yes</p>
<p>&nbsp;</p>
<p><strong>In Services MMC</strong></p>
<p>Restart the service: Microsoft Exchange File Distribution</p>
<p>(This will populate the OAB guid in C:\Program Files\Microsoft\Exchange Server\V14\ClientAccess\OAB)</p>
<p>&nbsp;</p>
<p><strong>In a command prompt</strong></p>
<p>iisreset (/noforce is optional, again MS support never had me use it)</p>
<p>&nbsp;</p>
<p>Here is this entire documentation in <a href="http://www.kevintaber.com/wp-content/uploads/2011/12/OAB-not-updating.pdf" target="_blank">PDF</a> format with screenshots to help.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevintaber.com/2011/12/09/exchange-2010-oab-gal-not-updating/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create a Windows 7 DVD with slipstreamed drivers</title>
		<link>http://www.kevintaber.com/2011/11/28/create-a-windows-7-dvd-with-slipstreamed-drivers/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=create-a-windows-7-dvd-with-slipstreamed-drivers</link>
		<comments>http://www.kevintaber.com/2011/11/28/create-a-windows-7-dvd-with-slipstreamed-drivers/#comments</comments>
		<pubDate>Mon, 28 Nov 2011 22:11:16 +0000</pubDate>
		<dc:creator>ktaber</dc:creator>
				<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.kevintaber.com/?p=647</guid>
		<description><![CDATA[Here is the process to create a bootable Windows 7 DVD with your mass storage driver pre-loaded, or slipstreamed, into the media. This is along the lines of the old XP F6 way of loading a driver, except here we put the driver right into the installation media. To get started you need to perform a  [...]]]></description>
			<content:encoded><![CDATA[<p>Here is the process to create a bootable Windows 7 DVD with your mass storage driver pre-loaded, or slipstreamed, into the media. This is along the lines of the old XP F6 way of loading a driver, except here we put the driver right into the installation media. To get started you need to perform a few preperation steps:</p>
<ul>
<li>Install the WAIK for Windows 7</li>
<li>Create C:\test\offline and C:\drivers directories</li>
<li>Copy from Windows 7 DVD/ISO sources dir: the boot.wim and install.wim to C:\</li>
<li>Copy/extract your mass storage drivers to C:\drivers (OCZ Revo 3 in this case)</li>
</ul>
<p>&nbsp;</p>
<p>Open the <em>Deployment Tools Command Prompt</em> as an Administrator, and run the following commands.</p>
<p>&nbsp;</p>
<p><strong>Install.wim portion:</strong></p>
<ol>
<li>Dism /Mount-Wim /WimFile:C:\install.wim /Index:1 /MountDir:C:\test\offline</li>
<li>Dism /Image:C:\test\offline /Add-Driver /Driver:C:\drivers\ocz10xx-1.2.0.10490\amd64 /Recurse /ForceUnsigned</li>
<li>Dism /Unmount-Wim /MountDir:C:\test\offline /Commit</li>
</ol>
<p>&nbsp;</p>
<p><strong>Boot.wim portion (only needed for F6 type drivers used during initial setup):</strong></p>
<ol>
<li>Dism /Mount-Wim /WimFile:C:\boot.wim /Index:2 /MountDir:C:\test\offline     <strong>(note: This must be /Index:2 and is the part that replaces the old F6 method like in XP)</strong></li>
<li>Dism /Image:C:\test\offline /Add-Driver /Driver:C:\drivers\ocz10xx-1.2.0.10490\amd64 /Recurse /ForceUnsigned</li>
<li>Dism /Unmount-Wim /MountDir:C:\test\offline /Commit</li>
</ol>
<p><em>The steps above in each portion mount the image, add the driver, and then save/unmount the image.</em></p>
<p>&nbsp;</p>
<p>Finally, use UltraISO (not free) and open the <em>original</em> ISO and drag and drop your new .wim files to the sources dir <em>within</em> UltraISO. When prompted, choose Yes to replace the files. After that you can burn the ISO. There is a command line utility called oscdimg that can be used to create ISO files for free, but that is beyond the scope of this article. Google is your friend in that case.</p>
<p>You can add other drivers but only the storage, OCZ in this example, really needs to be in the boot.wim file so you can install Windows to your SSD.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevintaber.com/2011/11/28/create-a-windows-7-dvd-with-slipstreamed-drivers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Skype Full Install Link</title>
		<link>http://www.kevintaber.com/2011/11/24/skype-full-install-link/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=skype-full-install-link</link>
		<comments>http://www.kevintaber.com/2011/11/24/skype-full-install-link/#comments</comments>
		<pubDate>Thu, 24 Nov 2011 15:44:58 +0000</pubDate>
		<dc:creator>ktaber</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.kevintaber.com/?p=643</guid>
		<description><![CDATA[Look no further for the Skype full install executable (also known as an offline installer):
http://download.skype.com/SkypeSetupFull.exe
Note: Sometimes there is an auto update after installing the latest full version. This is normal behavior.
It would be nice if Skype made this easier to find  [...]]]></description>
			<content:encoded><![CDATA[<p>Look no further for the Skype full install executable (also known as an offline installer):</p>
<p><a title="Skype Full Setup" href="http://download.skype.com/SkypeSetupFull.exe" target="_blank">http://download.skype.com/SkypeSetupFull.exe</a></p>
<p>Note: Sometimes there is an auto update after installing the latest full version. This is normal behavior.</p>
<p>It would be nice if Skype made this easier to find on their site. This file comes in handy in case the normal Setup.exe fails to install.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevintaber.com/2011/11/24/skype-full-install-link/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

