<?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>Sys Admin Tales &#187; Hardware</title>
	<atom:link href="http://www.meltivore.com/category/hardware/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.meltivore.com</link>
	<description>The endless search for the Any key</description>
	<lastBuildDate>Sat, 04 Feb 2012 00:32:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
		<item>
		<title>Cisco ASA 5505 Initial Configuration Commands</title>
		<link>http://www.meltivore.com/2012/cisco-asa-5505-initial-configuration-commands/</link>
		<comments>http://www.meltivore.com/2012/cisco-asa-5505-initial-configuration-commands/#comments</comments>
		<pubDate>Sat, 04 Feb 2012 00:32:29 +0000</pubDate>
		<dc:creator>Tom Thrush</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Troubleshooting]]></category>

		<guid isPermaLink="false">http://www.meltivore.com/?p=844</guid>
		<description><![CDATA[One thing I can say about the Startup Wizard in the Cisco ASA 5505, is that it would be kicked out of Hogwarts. Lame joke sure, but so is Cisco for selling something so complex to small businesses. What my customer of eight employees needs is a firewall with the robust dependability of a Cisco PIX with [...]]]></description>
			<content:encoded><![CDATA[<p>One thing I can say about the Startup Wizard in the <a title="Cisco ASA 5505 on CDW (Cisco site sucks)" href="http://www.cdw.com/shop/products/Cisco-ASA-5505-Unlimited-User-Bundle/1058198.aspx" target="_blank">Cisco ASA 5505</a>, is that it would be kicked out of <a title="Harry Potter's School" href="http://en.wikipedia.org/wiki/Hogwarts" target="_blank">Hogwarts</a>. Lame joke sure, but so is Cisco for selling something so complex to small businesses. What my customer of eight employees needs is a firewall with the robust dependability of a Cisco PIX with the simplicity of a <a title="Linksys" href="http://en.wikipedia.org/wiki/Linksys" target="_blank">Linksys</a>. Seems like a no brainer, but since the 2003 purchase, I don&#8217;t think Cisco hasn&#8217;t done anything even close. Enough of my rant&#8230;</p>
<p>Some of the Startup Wizard went okay (like changing the external IP and enable password only), but when it came to changing the inside network, it hung a number of times, once for over 30 minutes, before I turned it off. Turned out I needed to actually change the internal IP address via the command line, but not before wiping out DHCP, because that locks the internal subnet from being changed. Oh yeah, don&#8217;t forget to change the subnet from which you can access the internal web server, otherwise you&#8217;re locked out of that as well. And yes, I attempted to do this via the <a title="Adaptive Security Device Manager" href="http://www.cisco.com/en/US/products/ps6121/index.html" target="_blank">ASDM</a>, but it hung every time I tried to change the internal IP address. Sorry, I guess my ranting wasn&#8217;t done.</p>
<p>Below are the commands I used to complete the above tasks&#8230;</p>
<p><strong>Note:</strong> All of these require you to be logged into the &#8220;enable&#8221; account, i.e. type <strong><span style="color: #800000;">enable</span></strong> at the command-line in your terminal window and enter the <strong><span style="color: #800000;"><em>password</em></span></strong></p>
<p><strong>Turn DHCP off:<br />
</strong>ciscoasa# <span style="color: #800000;">config term</span><br />
ciscoasa(config)# <span style="color: #800000;">no dhcpd enable inside</span></p>
<p><strong>Updating your internal IP address/subnet</strong> (assuming it&#8217;s VLAN 1)<br />
ciscoasa# <span style="color: #800000;">config term</span><br />
ciscoasa(config)#<span style="color: #800000;"> interface Vlan 1<br />
</span>ciscoasa(config-if)# <span style="color: #800000;">ip address 10.0.1.1 255.255.255.0</span><br />
ciscoasa(config-if)#<span style="color: #800000;"> no shut</span></p>
<p><strong>Adding an outside route</strong> (<em>your gateway address (and why isn&#8217;t this in the wizard?!?!)</em>)<br />
ciscoasa# <span style="color: #800000;">config term</span><br />
ciscoasa(config)# <span style="color: #800000;">route outside 0.0.0.0 0.0.0.0 76.176.56.86 1</span></p>
<p><strong>Update access to the ADSM</strong> (so you can reach it from your new network listed above)<br />
ciscoasa# <span style="color: #800000;">config term</span><br />
ciscoasa(config)# <span style="color: #800000;">http 10.0.1.0 255.255.255.0 inside</span><br />
ciscoasa(config)# <span style="color: #800000;">exit</span><br />
ciscoasa# <span style="color: #800000;">show run | include http</span><br />
<em>http 10.0.1.0 255.255.255.0 inside</em> <strong><em>(this shows your new network has access)</em><br />
</strong><em>http 192.168.1.0 255.255.255.0 inside</em></p>
<p><strong>Turn on DHCP and configure for use</strong><br />
ciscoasa# <span style="color: #800000;">config term</span><br />
ciscoasa(config)# <span style="color: #800000;">dhcpd address 10.0.1.201-10.0.1.240 inside</span><br />
ciscoasa(config)# <span style="color: #800000;">dhcpd dns 10.0.1.10 10.0.1.11</span><br />
ciscoasa(config)# <span style="color: #800000;">dhcpd wins 10.0.1.10<br />
</span>ciscoasa(config)# <span style="color: #800000;">dhcpd lease 3000<br />
</span>ciscoasa(config)# <span style="color: #800000;">dhcpd domain contoso.com</span><br />
ciscoasa(config)# <span style="color: #800000;">dhcpd enable inside</span></p>
<p><strong>Write running config to flash </strong>(saving all of your changes)<br />
ciscoasa# <span style="color: #800000;">write memory</span></p>
<p><strong>Restarting your Cisco ASA from command line<br />
</strong>ciscoasa# <span style="color: #800000;">reload noconfirm</span></p>
<p><span style="color: #000000;">Should you post any questions, I&#8217;ll be happy to try and help, but I can&#8217;t promise anything&#8230;</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.meltivore.com/2012/cisco-asa-5505-initial-configuration-commands/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Optimize Windows Settings for SSD</title>
		<link>http://www.meltivore.com/2012/optimize-windows-settings-for-ssd/</link>
		<comments>http://www.meltivore.com/2012/optimize-windows-settings-for-ssd/#comments</comments>
		<pubDate>Sun, 29 Jan 2012 21:03:26 +0000</pubDate>
		<dc:creator>Tom Thrush</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[XP]]></category>

		<guid isPermaLink="false">http://www.meltivore.com/?p=745</guid>
		<description><![CDATA[So you got a shiny new SSD for your Windows system. As you may or may not know, there is only a finite number of writes to each sector before it becomes unusable, eventually causing the disk to be unusable. So what can you go to make sure it lasts as long as it can? I&#8217;ve [...]]]></description>
			<content:encoded><![CDATA[<p>So you got a shiny new SSD for your Windows system. As you may or may not know, there is only a <a title="SSD Endurance (and more)" href="http://www.storagesearch.com/ssd-jargon.html" target="_blank">finite number of writes</a> to each sector before it becomes unusable, eventually causing the disk to be unusable.</p>
<p>So what can you go to make sure it lasts as long as it can? I&#8217;ve gathered a few tips from around the web to help.</p>
<ul>
<li><a title="Stop paging!" href="http://techgage.com/article/disabling_windows_pagefile_hibernation_to_reclaim_ssd_space/" target="_blank">Go without a pagefile</a> (if you have at least 2GB of RAM)</li>
<li><a title="Turn off auto-defrag" href="http://malektips.com/vista-disable-automatic-defragmenter.html" target="_blank">Disable automatic disk defragmentation</a> (only Vista and Win 7)</li>
<li><a title="Same page as Going w/o a Pagefile" href="http://techgage.com/article/disabling_windows_pagefile_hibernation_to_reclaim_ssd_space/" target="_blank">Turn off hibernation</a></li>
<li><a title="Turning off prefetching (all Win versions)" href="http://www.tomshardware.com/forum/19542-45-turn-prefetch" target="_blank">Put a halt to prefetching</a></li>
<li>If this is a system with two drives move the location of your <a title="Move your Temp directory (all Windows versions)" href="http://www.ghacks.net/2007/07/11/speed-up-windows-by-moving-the-temp-folder/" target="_blank">Temp directory path</a> (and<a title="Move the Pagefile (all Windows versions)" href="http://windowsdevcenter.com/pub/a/windows/2004/04/27/pagefile.html" target="_blank"> move the pagefile</a> rather than disabling it as above).</li>
</ul>
<p>Versions after Windows XP actually do make some changes to optimize, but it doesn&#8217;t hurt to check. And have fun with your new found (or bought) speed!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.meltivore.com/2012/optimize-windows-settings-for-ssd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cisco ASA 5505 Software Upgrade</title>
		<link>http://www.meltivore.com/2012/cisco-asa-5505-software-upgrade/</link>
		<comments>http://www.meltivore.com/2012/cisco-asa-5505-software-upgrade/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 00:30:54 +0000</pubDate>
		<dc:creator>Tom Thrush</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Troubleshooting]]></category>

		<guid isPermaLink="false">http://www.meltivore.com/?p=842</guid>
		<description><![CDATA[So you&#8217;re looking to upgrade your Cisco ASA 5505 to the latest and greatest firmware? Well take it from me, don&#8217;t update the ASA software first. If the ASDM software is not compatible with the updated ASA version, you will get locked out and have to get out your console cable. Not so bad, but [...]]]></description>
			<content:encoded><![CDATA[<p>So you&#8217;re looking to upgrade your <a title="Cisco ASA 5505 on CDW (Cisco site sucks)" href="http://www.cdw.com/shop/products/Cisco-ASA-5505-Unlimited-User-Bundle/1058198.aspx" target="_blank">Cisco ASA 5505</a> to the latest and greatest firmware? Well take it from me, don&#8217;t update the ASA software first. <em>If the </em><a title="Adaptive Security Device Manager" href="http://www.cisco.com/en/US/products/ps6121/index.html" target="_blank"><em>ASDM</em></a><em> software is not compatible with the updated ASA version, you will get locked out and have to get out your console cable.</em></p>
<p>Not so bad, but if your server room is actually a storage closet with the rack eight feet in the air so you have to stand crooked on a ladder, it&#8217;s a pain in the back (and a lower, rear facing location as well).</p>
<p>The upgrade process is in fact, quite painless.</p>
<ol>
<li>Just fire up your <strong>ASDM</strong></li>
<li>Go to <strong>Tools</strong> &gt;<strong> Upload Software from Local Computer&#8230;</strong></li>
<li>Choose your <strong>Image to Upload:</strong> (<strong>ADSM</strong> first, then <strong>ASA</strong> later)</li>
<li><strong>Browse Local Files&#8230;</strong> to add the image (.bin file)</li>
<li>Click <strong>Upload Image</strong> and follow the prompts to finish (they vary depending on image uploaded)</li>
</ol>
<p>Following the process above for our brand new firewall, the ASDM image reloaded properly to the latest version while the device was running, the ASA software however, did not. Rebooting the ASA loaded everything properly and I was on my way. (Or was I? That&#8217;s blog entry to come&#8230;)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.meltivore.com/2012/cisco-asa-5505-software-upgrade/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disable Prius Beeping when in Reverse</title>
		<link>http://www.meltivore.com/2011/disable-prius-beeping-when-in-reverse/</link>
		<comments>http://www.meltivore.com/2011/disable-prius-beeping-when-in-reverse/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 18:34:52 +0000</pubDate>
		<dc:creator>Tom Thrush</dc:creator>
				<category><![CDATA[Gear]]></category>
		<category><![CDATA[Hardware]]></category>

		<guid isPermaLink="false">http://www.meltivore.com/?p=781</guid>
		<description><![CDATA[If you have a Prius, there&#8217;s a good chance you are annoyed by the constant beeping when you put the car in reverse. I can understand if it&#8217;s heard outside the car, since it&#8217;s almost completely silent when in electric mode, but it only alerts the passengers in the vehicle. Since selling my Corvette, I&#8217;ve [...]]]></description>
			<content:encoded><![CDATA[<p>If you have a <a title="Toyota Prius" href="http://www.toyota.com/prius-hybrid/" target="_blank">Prius</a>, there&#8217;s a good chance you are annoyed by the constant beeping when you put the car in reverse. I can understand if it&#8217;s heard outside the car, since it&#8217;s almost completely silent when in electric mode, but it only alerts the passengers in the vehicle. Since selling my <a title="2006 Corvette Z06" href="http://www.insideline.com/chevrolet/corvette/2006/first-drive-2006-chevrolet-corvette-z06.html" target="_blank">Corvette</a>, I&#8217;ve been driving my wife&#8217;s Prius a lot and the beeping was beginning to really grate on me&#8230;</p>
<p>After a few searches, here&#8217;s what I found (<em><span style="color: #800000;">read the steps once before attempting, some of them are time dependent</span></em>).</p>
<ol>
<li>Start the car with your foot on the brake as usual.</li>
<li>Press the <strong>ODO</strong> button until &#8220;<strong>ODO</strong>&#8221; appears on the dash display. (If it&#8217;s already present, cycle around once to display it again.)</li>
<li>Turn the car off.</li>
<li>Again with your foot on the brake, press <strong>POWER </strong>to restart your Prius.</li>
<li>Within 6 seconds of starting, press and hold the <strong>ODO</strong> button for 10 seconds and don&#8217;t release it.</li>
<li><em>You&#8217;re still holding the <strong>ODO</strong> button after 10 seconds, right?</em> Now shift the car into <strong>R</strong>everse and quickly press the <strong>P</strong>ark<strong> </strong>button. You may now release the <strong>ODO</strong> button.</li>
<li>The odometer display should now show &#8220;<strong>b on</strong>&#8221; (if not, start over).</li>
<li>Press the <strong>ODO</strong> button until the display shows &#8220;<strong>b off</strong>.&#8221;</li>
<li>Turn the car off by pressing the <strong>POWER </strong>button.</li>
<li>Start your Prius now, put it reverse and enjoy the silence.</li>
</ol>
<p><em><span style="color: #800000;">Note: This is supposed to work only with US models, so if you&#8217;re abroad it&#8217;s up to the kindness of your dealer. And I&#8217;ve only tested this on a 2009 Prius, so your mileage may vary :)</span></em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.meltivore.com/2011/disable-prius-beeping-when-in-reverse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>So how much does my Nook weigh?</title>
		<link>http://www.meltivore.com/2011/so-how-much-does-my-nook-weigh/</link>
		<comments>http://www.meltivore.com/2011/so-how-much-does-my-nook-weigh/#comments</comments>
		<pubDate>Fri, 04 Nov 2011 22:58:11 +0000</pubDate>
		<dc:creator>Tom Thrush</dc:creator>
				<category><![CDATA[Gear]]></category>
		<category><![CDATA[Hardware]]></category>

		<guid isPermaLink="false">http://www.meltivore.com/?p=582</guid>
		<description><![CDATA[I knew it! Every time I put content on my Nook Color it becomes heavier and heavier. I already have 4GB of data on it and the extra .000000000000000001 grams is killing me. (It weighs 15.8 ounces, before adding all that heavy content.) And this is precisely why I have an eReader. The Nook Color allows me to [...]]]></description>
			<content:encoded><![CDATA[<p>I knew it! Every time I put content on my <a title="Nook Color" href="http://www.barnesandnoble.com/nookcolor" target="_blank">Nook Color</a> it becomes <a title="Evidence!" href="http://www.nytimes.com/2011/10/25/science/25qna.html?_r=2&amp;scp=1&amp;sq=Kubiatowicz&amp;st=cse" target="_blank">heavier and heavier</a>. I already have 4GB of data on it and the extra .000000000000000001 grams is killing me. <em><span style="color: #993300;">(It weighs 15.8 ounces, before adding all that heavy content.)</span></em></p>
<p>And this is precisely why I have an eReader. The Nook Color allows me to carry a whole library of IT titles as well as works from every spectrum of printed media, without braking my back or ruining my gas mileage (a former colleague carried about fifteen fat UNIX books in the back of his car everywhere).</p>
<p>I&#8217;m not saying that the Nook Color is the best choice, but when I bought mine, it was the only color, non-iPad choice at (or under) $250 that was <a title="The awful Pandigital" href="http://www.meltivore.com/2010/pandigital-novel/" target="_blank">worth anything</a>. Given a choice today, it would be the <a title="Kindle Fire" href="http://www.amazon.com/Kindle-Fire-Color/dp/B0051VVOB2" target="_blank">Kindle Fire</a>, although <a title="B &amp; N" href="http://www.barnesandnoble.com/" target="_blank">Barnes &amp; Noble</a> does have an <a title="B&amp;N Announcement" href="http://www.cnn.com/2011/11/04/tech/gaming-gadgets/nook-tablet-november/index.html" target="_blank">announcement pending&#8230;</a> (Maybe my wife would like a slightly used <em>and loaded</em> Nook Color, it&#8217;s not very heavy.)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.meltivore.com/2011/so-how-much-does-my-nook-weigh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pandigital Novel</title>
		<link>http://www.meltivore.com/2010/pandigital-novel/</link>
		<comments>http://www.meltivore.com/2010/pandigital-novel/#comments</comments>
		<pubDate>Wed, 15 Dec 2010 21:30:28 +0000</pubDate>
		<dc:creator>Tom Thrush</dc:creator>
				<category><![CDATA[Gear]]></category>
		<category><![CDATA[Hardware]]></category>

		<guid isPermaLink="false">http://www.meltivore.com/?p=482</guid>
		<description><![CDATA[I must say I didn&#8217;t have the highest hopes for the Pandigital Novel eReader at $149, but I at least expected it to function for reading. The out of the box experience was fine. Everything worked and the device&#8217;s battery was charged to 97%. It detected my wireless and authenticated effortlessly, no issues with connecting with [...]]]></description>
			<content:encoded><![CDATA[<p>I must say I didn&#8217;t have the highest hopes for the <a title="Pandigital Novel" href="http://www.pandigital.net/pandigitalnovel" target="_blank">Pandigital Novel</a> eReader at $149, but I at least expected it to function for reading.</p>
<p>The out of the box experience was fine. Everything worked and the device&#8217;s battery was charged to 97%. It detected my wireless and authenticated effortlessly, no issues with connecting with my Windows 7 laptop, upgrading to the latest firmware or copying epub and pdf files to the file system, which showed up like another drive.</p>
<p>The browser was lackluster and the device settings were limited, but all I really wanted was a device that I could use for reading. It displayed my files correctly and the night-time reading mode was pleasant, since it shows the text in negative (great for reading in bed with the lights out). And this is where I was mostly disappointed&#8230;</p>
<p>My problems were the accelerometer, which kept changing from portrait to landscape when at a mild angle or slight turning motion and the less than sensitive touch-screen. I was slowly adjusting to the auto-rotation &#8220;feature&#8221; by moving the device as little as possible, but the touch screen is what killed it for me. Turning pages can only be accomplished via the touch screen, which took two to five &#8220;swipes&#8221; each time; which of course takes you out of the material you&#8217;re reading and involves far more movement than a light-sleeping spouse would prefer.</p>
<p>Two things on the settings screen would have kept this device in my home: a checkbox to turn off the auto-rotation and the ability to remap the analog rocker switch (the only switch aside from the power) to page turning instead of adjusting the volume (which was available via the touch screen).</p>
<p>I returned the device to <a title="Best Buy" href="http://www.bestbuy.com/" target="_blank">Best Buy</a> yesterday and will be likely be purchasing a <a title="B&amp;N NOOKcolor" href="http://www.barnesandnoble.com/nookcolor/index.asp" target="_blank">NOOKcolor</a> in the coming weeks.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.meltivore.com/2010/pandigital-novel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eee PC 2.00 GB (767 MB usable)</title>
		<link>http://www.meltivore.com/2010/eee-pc-2-00-gb-767-mb-usable/</link>
		<comments>http://www.meltivore.com/2010/eee-pc-2-00-gb-767-mb-usable/#comments</comments>
		<pubDate>Tue, 22 Jun 2010 06:05:11 +0000</pubDate>
		<dc:creator>Tom Thrush</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Troubleshooting]]></category>

		<guid isPermaLink="false">http://www.meltivore.com/?p=446</guid>
		<description><![CDATA[Today there was a curious case where someone&#8217;s Windows 7 Eee PC had 2 GB of RAM, which the operating system was aware of, but only listed as 767 MB available for use. It turns out that if the Boot Booster is enabled in the BIOS, it limits the amount of usable RAM. To fix this, [...]]]></description>
			<content:encoded><![CDATA[<p>Today there was a curious case where someone&#8217;s Windows 7 <a title="Eee PC" href="http://en.wikipedia.org/wiki/Asus_Eee_PC" target="_blank">Eee PC</a> had 2 GB of RAM, which the operating system was aware of, but only listed as 767 MB available for use.</p>
<p>It turns out that if the Boot Booster is enabled in the BIOS, it limits the amount of usable RAM. To fix this, press <strong>F2</strong> during boot-up, go to the <strong>Boot</strong> menu, use the arrow keys to highlight <strong>Boot Booster</strong> and press <strong>Enter</strong> to change it to <strong>Disabled</strong>. Next press <strong>F10</strong> to save, then reboot and you are done.</p>
<p>Note: You may still only have 1.75 GB usable, but that can be blamed on the leeching onboard video.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.meltivore.com/2010/eee-pc-2-00-gb-767-mb-usable/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What&#8217;s in my backpack?</title>
		<link>http://www.meltivore.com/2010/whats-in-my-backpack/</link>
		<comments>http://www.meltivore.com/2010/whats-in-my-backpack/#comments</comments>
		<pubDate>Mon, 17 May 2010 04:09:44 +0000</pubDate>
		<dc:creator>Tom Thrush</dc:creator>
				<category><![CDATA[Gear]]></category>
		<category><![CDATA[Hardware]]></category>

		<guid isPermaLink="false">http://www.meltivore.com/?p=442</guid>
		<description><![CDATA[Every time I&#8217;m heading out the door, I throw a heavy backpack over my shoulder and drop it into my car with a thud. What&#8217;s in this bag I lug around to each client? Of course there&#8217;s my HP tc4400 Tablet PC and battery charger, but there&#8217;s a whole lot more, in no particular order: [...]]]></description>
			<content:encoded><![CDATA[<p>Every time I&#8217;m heading out the door, I throw a heavy backpack over my shoulder and drop it into my car with a thud.</p>
<p>What&#8217;s in this bag I lug around to each client? Of course there&#8217;s my <a title="HP tc4400 Tablet PC" href="http://en.wikipedia.org/wiki/HP_Compaq_TC4400" target="_blank">HP tc4400 Tablet PC</a> and battery charger, but there&#8217;s a whole lot more, in no particular order:</p>
<ul>
<li>Small TechNet binder (Contents will be another post).</li>
<li>An assortment of small screwdrivers for laptops and PCs alike</li>
<li>Cables: 7&#8242; Ethernet, Cisco serial, USB to PS2 converter, USB to serial, iPhone charger</li>
<li>160 external hard drive, USB (for moving files and dumping images)</li>
<li><a title="Leatherman Juice CS4" href="http://www.leatherman.com/products/product.asp?id=18&amp;f" target="_blank">Leatherman</a></li>
<li>A small handful of unlabeled customer access badges and keys</li>
<li>Three USB thumbdrives (1GB, 2GB (<a title="BitLocker Drive Encyption" href="http://en.wikipedia.org/wiki/BitLocker_Drive_Encryption" target="_blank">BitLockered</a>) and 32GB)</li>
<li>Small metal business card holder</li>
<li><a title="Sharpie Permanent Marker" href="http://www.sharpie.com/enUS/Product/Sharpie_Fine_Point_Permanent_Marker.html" target="_blank">Sharpie</a> and blue pen</li>
<li>Tape measure</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.meltivore.com/2010/whats-in-my-backpack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HP tc4400 and Windows 7 Boot Failure</title>
		<link>http://www.meltivore.com/2010/hp-tc4400-and-windows-7-boot-failure/</link>
		<comments>http://www.meltivore.com/2010/hp-tc4400-and-windows-7-boot-failure/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 05:54:57 +0000</pubDate>
		<dc:creator>Tom Thrush</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.meltivore.com/?p=435</guid>
		<description><![CDATA[I&#8217;ve been using an HP tc4400 Tablet PC with Windows Vista for quite some time now and thought it was about time I started using Windows 7 for work and not just home. Don&#8217;t get me wrong, I do like Vista (I think I may be only one of eight people), but as an IT [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using an <a title="HP tc4400" href="http://en.wikipedia.org/wiki/HP_Compaq_TC4400" target="_blank">HP tc4400 Tablet PC</a> with Windows Vista for quite some time now and thought it was about time I started using Windows 7 for work and not just home.</p>
<p>Don&#8217;t get me wrong, I do like Vista (I think I may be only one of eight people), but as an IT professional I should be using the latest operating system.</p>
<p>So I got started with swapping out the hard drive to start with a fresh install (always the best way to go), and tossed in the install DVD. The install went flawlessly and I followed with <a title="Windows Update" href="http://en.wikipedia.org/wiki/Windows_Update" target="_blank">Windows Update</a>, as one always should. Upon rebooting the system, it failed to start.</p>
<p>What followed was a large pain in the posterior: After attempting to do a <a title="System Restore" href="http://windows.microsoft.com/en-US/windows7/products/features/system-restore" target="_blank">System Restore</a> (it failed, of course), I reinstalled. This time during Windows Update, I deselected some of the likely updates that may have caused the boot failure issue, same result. This process went on five times before I found the (in)correct update:<strong>Intel Corp &#8211; Display &#8211; Mobile Intel(R) 945 Express Chipset Family 16.6MB</strong>. Not surprising that it&#8217;s a video driver, since those are typically the drivers that will hose a Windows system most often (rather embarrassed it took five tries to find out the obvious). Anyway, the update was released in September, 2009 and is one version behind what is available on the <a title="Intel 945GM Driver" href="http://downloadcenter.intel.com/SearchResult.aspx?lang=eng&amp;ProductFamily=Graphics&amp;ProductLine=Laptop+graphics+controllers&amp;ProductProduct=Mobile+Intel%c2%ae+945GM+Express+Chipset+Family" target="_blank">Intel website</a>.</p>
<p>Once I skipped the Windows Update version of the driver and installed latest display driver from Intel, I was in <a title="Windows Vista Business Edition" href="http://www.microsoft.com/windows/windows-vista/compare-editions/business.aspx" target="_blank">business</a>, actually Windows 7 Professional (can&#8217;t MS marketing decide on a consistent nomenclature?).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.meltivore.com/2010/hp-tc4400-and-windows-7-boot-failure/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Network Printer Offline</title>
		<link>http://www.meltivore.com/2010/network-printer-offline/</link>
		<comments>http://www.meltivore.com/2010/network-printer-offline/#comments</comments>
		<pubDate>Sat, 09 Jan 2010 06:10:18 +0000</pubDate>
		<dc:creator>Tom Thrush</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 2000]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Server 2003]]></category>
		<category><![CDATA[Windows Server 2008]]></category>
		<category><![CDATA[XP]]></category>

		<guid isPermaLink="false">http://www.meltivore.com/?p=423</guid>
		<description><![CDATA[Yesterday I was at a client site where everyone prints directly to the printers, rather than sharing via a print server. One of the PCs kept showing a printer as offline, even though everyone else was printing to it. From the PC you could ping the printer and even browse to the builtin web server [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I was at a client site where everyone prints directly to the printers, rather than sharing via a print server. One of the PCs kept showing a printer as offline, even though everyone else was printing to it. From the PC you could ping the printer and even browse to the builtin web server to see that it was low on cyan.</p>
<p>After chewing on this for quite a while, I found the issue: a checkbox on the Ports tab &#8220;SNMP Status Enabled&#8221;, which when checked (along with SNMP turned off on the print device) will result in the printer being listed as Offline. Once the box was unchecked, it was back online and the customer was back to printing once again.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.meltivore.com/2010/network-printer-offline/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

