<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>Sys Admin Tales</title>
	
	<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>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/SysAdminTales" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="sysadmintales" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><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>Adding Windows XP Media Center to a Domain</title>
		<link>http://www.meltivore.com/2012/adding-windows-xp-media-center-to-a-domain/</link>
		<comments>http://www.meltivore.com/2012/adding-windows-xp-media-center-to-a-domain/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 19:53:26 +0000</pubDate>
		<dc:creator>Tom Thrush</dc:creator>
				<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[XP]]></category>

		<guid isPermaLink="false">http://www.meltivore.com/?p=859</guid>
		<description><![CDATA[During another domain migration yesterday, I came across a Windows XP Media Center PC in the workplace. This is certainly common with small companies, especially when they&#8217;re bootstrapping. You buy what you can afford and that usually means Home and Media editions of Windows. Those work great for a small network, but of course can&#8217;t be added to [...]]]></description>
			<content:encoded><![CDATA[<p>During another domain migration yesterday, I came across a <a title="Windows XP Media Center Edition" href="http://en.wikipedia.org/wiki/Windows_XP_Media_Center_Edition" target="_blank">Windows XP Media Center</a> PC in the workplace. This is certainly common with small companies, especially when they&#8217;re <a title="Bootstrapping Your Startup" href="http://www.entrepreneur.com/article/55776" target="_blank">bootstrapping</a>. You buy what you can afford and that usually means Home and Media editions of Windows. Those work great for a small network, but of course can&#8217;t be added to a domain, at least Home can&#8217;t. Luckily Windows XP Media Center can be hacked into joining a domain, because unlike XP Home Edition, <a title="Windows XP MCE - No Upgrades" href="http://support.microsoft.com/kb/292607" target="_blank">it won&#8217;t upgrade to XP Professional</a>.</p>
<p>So here&#8217;s the hack:</p>
<ol>
<li>If you haven&#8217;t already, <a title="How to install the Recovery Console " href="http://support.microsoft.com/kb/307654" target="_blank">install the Windows Recovery Console</a> (you&#8217;ll need your Windows XP disk for this)</li>
<li>Boot into the <strong>Microsoft Windows Recovery Console</strong> when prompted
<ol>
<li>Select the proper OS (usually <strong>1</strong>) and enter the <strong>Administrator</strong> password (if prompted)</li>
</ol>
</li>
<li>Copy the SYSTEM registry hive to C:\ <strong><span style="color: #800000;">copy c:\windows\system32\config\SYSTEM c:\</span></strong></li>
<li>Type <strong><span style="color: #800000;">exit</span></strong> and boot into your Windows XP Media Center system as an administrator</li>
<li>Open Registry Editor (<strong>Start</strong> &gt; <strong>Run&#8230;</strong> type <strong>regedit</strong>, click <strong>OK</strong>
<ol>
<li>Highlight <strong>HKEY_LOCAL_MACHINE</strong></li>
<li>Click <strong>File</strong> &gt; <strong>Load Hive&#8230;</strong></li>
<li>Browse and select <span style="color: #800000;">C:\SYSTEM</span></li>
<li>Enter your <strong><em>PC-name</em></strong> or anything really</li>
<li>Drill down to <strong>HKEY_LOCAL_MACHINE\<span style="color: #800000;"><em><span style="color: #000000;">PC-name</span></em></span>\WPA\MedCtrUpg</strong></li>
<li>Change the <strong>IsLegacyMCE</strong> key in the right pane to the number <strong>1</strong> (default is 0)</li>
<li>Highlight the <strong><em>PC-name</em></strong> under <strong>HKEY_LOCAL_MACHINE</strong> and click <strong>File</strong> &gt; <strong>Unload Hive&#8230;</strong>, click <strong>Yes</strong></li>
</ol>
</li>
<li>Reboot into the <strong>Microsoft Windows Recovery Console</strong> as in step 2
<ol>
<li>Copy the SYSTEM registry hive back <strong><span style="color: #800000;">copy c:\SYSTEM c:\winsows\system32\config\system</span></strong> enter <span style="color: #000000;"><strong>Y </strong></span>to overwrite</li>
<li>Rename the old SYSTEM hive on C:\ <span style="color: #800000;"><strong>ren c:\SYSTEM SYSTEM_old</strong></span></li>
<li>Type <strong><span style="color: #800000;">exit</span></strong> and reboot back into your Windows XP Media Center system as an administrator</li>
</ol>
</li>
<li>Now you should be able to add the system to the domain</li>
<li><em>Optional: delete c:\SYSTEM_old and </em><a title="Changing time for display of boot choices" href="http://vlaurie.com/computers2/Articles/bootini.htm" target="_blank"><em>change the boot selection time</em></a><em> from 30 seconds to 2 or 3 (now that the Recovery Console has been added)</em></li>
</ol>
<p>Thanks to Aaron Tiensivu, who&#8217;s <a title="Aaron Tiensivu's Blog Archive" href="http://blog.tiensivu.com/aaron/archives/29-Join-a-domain-with-Windows-Media-Center-Edition.html" target="_blank">article</a> helped me yesterday. I decided to make an abridged post here since I&#8217;m getting annoyed at having to find this hack every time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.meltivore.com/2012/adding-windows-xp-media-center-to-a-domain/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>Firing a SysAdmin</title>
		<link>http://www.meltivore.com/2012/firing-a-sysadmin/</link>
		<comments>http://www.meltivore.com/2012/firing-a-sysadmin/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 18:01:48 +0000</pubDate>
		<dc:creator>Tom Thrush</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Troubleshooting]]></category>

		<guid isPermaLink="false">http://www.meltivore.com/?p=827</guid>
		<description><![CDATA[Recently I had to replace an IT guy who&#8217;d gone off the rails. Something odd about this profession seems to cause an unusually high number of them (say, compared to other engineers) to drop off the radar and partially or completely disappear. It usually happens in one of two ways, they start with sporadic attendance, [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I had to replace an IT guy who&#8217;d gone off the rails. Something odd about this profession seems to cause an unusually high number of them (say, compared to other engineers) to drop off the radar and partially or completely disappear. It usually happens in one of two ways, they start with sporadic attendance, rarely answering phone calls and e-mail, then completely disappearing, or just the latter and they entirely stop all communications, possibly even leaving the area. Hard to say if it&#8217;s something psychologically different with SysAdmins (we can be quite an odd bunch) or if it&#8217;s the pressure and culture that spawns the flight response&#8230;</p>
<p>I&#8217;ve tried endless searches on &#8220;firing a sysadmin&#8221;, &#8220;locking out an IT guy&#8221;, etc., but nothing useful. So, I&#8217;ve compiled a list of things to examine when an IT guy goes AWOL and you need to lock them out, reclaim logins and check for holes.</p>
<ul>
<li>Firewall passwords &amp; rules</li>
<li>Router logins</li>
<li>Switch logins</li>
<li>VPN server login &amp; configuration</li>
<li>Domain Admin/root password</li>
<li>Group Membership (Domain Admins, Schema Admins, Enterprise Admins, Built-in administrators, Exchange admins, root, wheel, etc.)</li>
<li>Other domain admin accounts</li>
<li>Service accounts (check Services logon list)</li>
<li>User accounts (every employee should change password)</li>
<li>Local admin accounts on client systems</li>
<li>Hosting/DNS/Domain Name Services passwords
<ul>
<li>Web hosting logins</li>
<li>Registrar logins and contacts</li>
<li>Managed DNS</li>
</ul>
</li>
<li>Exchange/mail servers
<ul>
<li>Mailbox forwarding</li>
<li>Routing groups</li>
<li>Hosted spam filtering</li>
</ul>
</li>
<li>MS SQL/database accounts</li>
<li>Auto-logins, i.e. kiosk systems</li>
<li>Examine startup scripts and group policy</li>
<li>Examine scheduled tasks, at or cron jobs</li>
<li>Change wireless security key</li>
<li>Change remote access accounts, i.e. GoToMeeting, TeamViewer, etc.</li>
<li>Update 3rd party software passwords, i.e. anti-virus, backup, etc.</li>
<li>Update 3rd party hosted software, i.e. Amazon S3, Salesforce, etc.</li>
<li>Change vendor logins, i.e. CDW, Dell, Microsoft, Tigerdirect, etc.</li>
<li>Remote system logins/wireless</li>
<li>Check systems in the field for items above</li>
<li>Check for keyloggers on all systems</li>
<li>Phone system accounts and logins
<ul>
<li>Change all voice mail pins</li>
</ul>
</li>
<li>Update building alarm security codes
<ul>
<li>Contact for alarm company if the person is on the access list</li>
</ul>
</li>
<li>Update access information/logins at colocation facilities</li>
</ul>
<p>That&#8217;s what I came up with so far for a Windows-centric network. Anything you can add?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.meltivore.com/2012/firing-a-sysadmin/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>Activate Windows and Office at the Command Line</title>
		<link>http://www.meltivore.com/2012/activate-windows-and-office-at-the-command-line/</link>
		<comments>http://www.meltivore.com/2012/activate-windows-and-office-at-the-command-line/#comments</comments>
		<pubDate>Sun, 22 Jan 2012 01:31:15 +0000</pubDate>
		<dc:creator>Tom Thrush</dc:creator>
				<category><![CDATA[Office]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Server 2008]]></category>

		<guid isPermaLink="false">http://www.meltivore.com/?p=815</guid>
		<description><![CDATA[I was recently looking for a way to activate Windows 7 and Office 2010 at a command prompt; this is what I found&#8230; Since the release of Vista, you can use the command line utility slmgr for Windows activation when using a MAK (or Multiple Activation Key). Windows Activation Open a command window (as administrator) And run&#8230; slmgr -ipk xxxxx-xxxxx-xxxxx-xxxxx-xxxxx slmgr [...]]]></description>
			<content:encoded><![CDATA[<p>I was recently looking for a way to activate Windows 7 and Office 2010 at a command prompt; this is what I found&#8230;</p>
<p>Since the release of Vista, you can use the command line utility <strong>slmgr</strong> for Windows activation when using a MAK (or <a title="MAK" href="http://en.wikipedia.org/wiki/Multiple_activation_key" target="_blank">Multiple Activation Key</a>).</p>
<p><span style="color: #800000;"><strong>Windows Activation</strong></span></p>
<ol>
<li>Open a command window (<a title="Run As Administrator" href="http://en.wikipedia.org/wiki/Run_as_administrator" target="_blank">as administrator</a>)</li>
<li>And run&#8230;</li>
</ol>
<p><span style="font-weight: bold;">slmgr -ipk </span><span style="color: #800000;"><strong>xxxxx-xxxxx-xxxxx-xxxxx-xxxxx</strong></span><br />
<span style="font-weight: bold;">slmgr -ato</span></p>
<p><span style="color: #800000;"><strong>Office Activation</strong></span></p>
<ol>
<li><span style="color: #000000;">Open a command window (<a title="Run As Administrator" href="http://en.wikipedia.org/wiki/Run_as_administrator" target="_blank">as administrator</a>)</span></li>
<li><span style="color: #000000;">From </span><strong><em>C:\Program Files\Microsoft Office\Office14</em> </strong>run&#8230;</li>
</ol>
<p><strong>cscript ospp.vbs /inpkey:<span style="color: #800000;">xxxxx-xxxxx-xxxxx-xxxxx-xxxxx<br />
</span></strong><span style="font-weight: bold;">cscript ospp.vbs /act</span></p>
<p>Who needs all that pointing and clicking anyway?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.meltivore.com/2012/activate-windows-and-office-at-the-command-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exchange Maintenance Tasks</title>
		<link>http://www.meltivore.com/2012/exchange-maintenance-tasks/</link>
		<comments>http://www.meltivore.com/2012/exchange-maintenance-tasks/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 06:26:05 +0000</pubDate>
		<dc:creator>Tom Thrush</dc:creator>
				<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Exchange 2010]]></category>

		<guid isPermaLink="false">http://www.meltivore.com/?p=822</guid>
		<description><![CDATA[There isn&#8217;t really a lot to be done with Exchange these days. Since the advent of E12, the code name for Exchange 2007, the maintenance task list has shrunk quite a bit. The items that do need watching are just a subset of the &#8220;old days.&#8221; Maintain your daily backups &#8211; probably the most important [...]]]></description>
			<content:encoded><![CDATA[<p>There isn&#8217;t really a lot to be done with Exchange these days. Since the advent of E12, <a title="Exchange 2007" href="http://en.wikipedia.org/wiki/Microsoft_Exchange_Server#Exchange_Server_2007" target="_blank">the code name for Exchange 2007</a>, the maintenance task list has shrunk quite a bit.</p>
<p>The items that do need watching are just a subset of the &#8220;old days.&#8221;</p>
<ul>
<li>Maintain your daily backups &#8211; probably the most important thing you can do for Exchange</li>
<li>Examine your message queues for log jams or stuck messages</li>
<li>Check available disk space (but you&#8217;ve already automated this, right?)</li>
<li>Examine the event logs for errors and warnings</li>
<li>Make sure your anti-malware software is functioning properly, i.e. turned on and getting updates (some people host this service, so that would only leave four items :)</li>
</ul>
<p>Thanks to <a title="Jim McBee" href="http://mostlyexchange.blogspot.com/" target="_blank">Jim McBee</a> for providing guidance in his many excellent books.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.meltivore.com/2012/exchange-maintenance-tasks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>“Delivery has failed” error When Scheduling a Resource</title>
		<link>http://www.meltivore.com/2012/delivery-has-failed-error-when-scheduling-a-resource/</link>
		<comments>http://www.meltivore.com/2012/delivery-has-failed-error-when-scheduling-a-resource/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 19:37:31 +0000</pubDate>
		<dc:creator>Tom Thrush</dc:creator>
				<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Exchange 2003]]></category>
		<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[Troubleshooting]]></category>

		<guid isPermaLink="false">http://www.meltivore.com/?p=809</guid>
		<description><![CDATA[There are plenty of answers to the error message: &#8220;Delivery has failed to these recipients or distribution lists:   Jane Doe Your message wasn&#8217;t delivered because of security policies&#8230;&#8221; In our case, Jane Doe was no longer an employee and her account was disabled. The sender of the message was requesting a meeting with someone who had [...]]]></description>
			<content:encoded><![CDATA[<p>There are plenty of answers to the error message:</p>
<p><span style="color: #800000;"><span style="color: #000000;">&#8220;</span><strong>Delivery has failed to these recipients or distribution lists:<br />
</strong></span> <br />
<span style="color: #800000;"><span style="text-decoration: underline;">Jane Doe</span><br />
</span><span style="color: #800000;">Your message wasn&#8217;t delivered because of security policies&#8230;</span>&#8221;</p>
<p>In our case, <span style="color: #800000;">Jane Doe</span> was no longer an employee and her account was disabled. The sender of the message was requesting a meeting with someone who had Jane as his admin, so he had her as a <a title="Adding a Delegate" href="http://office.microsoft.com/en-us/outlook-help/allow-someone-else-to-manage-your-mail-and-calendar-HA010075081.aspx" target="_blank">Delegate</a><strong> </strong>for his Calendar. Once we removed her from his Outlook&#8217;s Delegate list, there were no more errors.</p>
<p>Pretty simple, but they&#8217;ve moved <strong>Delegate Access</strong> in Outlook 2010, now you go to <strong>File</strong> &gt; <strong>Account Settings</strong> &gt; <strong>Delegate Access</strong></p>
<p>For Outlook 2007 and earlier, go to <strong>Tools</strong> &gt; <strong>Options</strong> &gt; <strong>Delegates</strong> tab.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.meltivore.com/2012/delivery-has-failed-error-when-scheduling-a-resource/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Auto-complete Not Working After Outlook 2010 Upgrade</title>
		<link>http://www.meltivore.com/2012/auto-complete-not-working-after-outlook-2010-upgrade/</link>
		<comments>http://www.meltivore.com/2012/auto-complete-not-working-after-outlook-2010-upgrade/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 21:14:47 +0000</pubDate>
		<dc:creator>Tom Thrush</dc:creator>
				<category><![CDATA[Outlook]]></category>
		<category><![CDATA[Troubleshooting]]></category>

		<guid isPermaLink="false">http://www.meltivore.com/?p=801</guid>
		<description><![CDATA[You know you love it, being able to just start typing the first few characters of an address and Outlook &#8220;guesses&#8221; the rest for you. At least I think you love it, because every time someone&#8217;s Outlook is upgraded or they are moved to a new system, everyone notices it&#8217;s missing right off the bat. Prior to [...]]]></description>
			<content:encoded><![CDATA[<p>You know you love it, being able to just start typing the first few characters of an address and Outlook &#8220;guesses&#8221; the rest for you. At least I think you love it, because every time someone&#8217;s Outlook is upgraded or they are moved to a new system, everyone notices it&#8217;s missing right off the bat.</p>
<p>Prior to Outlook 2010 all this information was kept in a NK2 file, typically called Outlook.NK2. Previously you could just <a title="Moving the NK2 File" href="http://office.microsoft.com/en-us/outlook-help/copy-autocomplete-name-list-to-another-computer-HA001139451.aspx" target="_blank">copy this file</a> to the corresponding folder on a new machine and it worked almost like magic. With the new upgrade, not so much. It&#8217;s not a hard process to import the auto-complete data, but there are some additional steps.</p>
<ol>
<li>Copy your old *.NK2 file to <strong>C:\Users\%username%\AppData\Roaming\Microsoft\Outlook</strong></li>
<li>Ensure the name matches your current profile name, default is Outlook. <em>(Look in <strong>Control Panel</strong> &gt; <strong>Mail</strong> &gt; <strong>Show Profiles&#8230;</strong> to be sure.)</em></li>
<li>Now from the <strong>Run&#8230;</strong> prompt enter: <strong><span style="color: #800000;">outlook.exe /importnk2</span></strong> and click <strong>OK</strong>.</li>
<li>Once imported the NK2 file will have a <em><span style="color: #000000;"><strong>.old</strong></span></em> extension, remove that if you wish to run the import again.</li>
</ol>
<p>All auto-complete data is now kept within an Outlook 2010 mailbox, so no external files will be needed in the future.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.meltivore.com/2012/auto-complete-not-working-after-outlook-2010-upgrade/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>(Not so) New Folder Locations</title>
		<link>http://www.meltivore.com/2012/new-folder-locations/</link>
		<comments>http://www.meltivore.com/2012/new-folder-locations/#comments</comments>
		<pubDate>Wed, 04 Jan 2012 22:01:31 +0000</pubDate>
		<dc:creator>Tom Thrush</dc:creator>
				<category><![CDATA[Outlook]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Server 2008]]></category>

		<guid isPermaLink="false">http://www.meltivore.com/?p=795</guid>
		<description><![CDATA[Since the advent of Windows Vista, the usual folder locations don&#8217;t always apply. Take the Quick Launch or All Users Desktop, where did they go? Here&#8217;s a short list of what&#8217;s been moved around (and yes, I&#8217;m writing this as much for me as anyone else)&#8230; All Users: All Users Desktop, Favorites, Documents, Downloads, Music, [...]]]></description>
			<content:encoded><![CDATA[<p>Since the advent of Windows Vista, the usual folder locations don&#8217;t always apply. Take the Quick Launch or All Users Desktop, where did they go?</p>
<p>Here&#8217;s a short list of what&#8217;s been moved around (and yes, I&#8217;m writing this as much for me as anyone else)&#8230;</p>
<p><strong>All Users:</strong></p>
<ul>
<li><strong>All Users</strong> <em>Desktop, Favorites, Documents, Downloads, Music, Pictures &amp; Videos</em> &#8211; C:\Users\Public</li>
<li><strong>All Users Start Menu</strong> &#8211; C:\ProgramData\Microsoft\Windows\Start Menu</li>
<li><strong>Documents and Settings</strong> (just for completeness sake): C:\Users</li>
<li><strong>Templates</strong> &#8211; C:\ProgramData\Microsoft\Windows\Templates</li>
</ul>
<p><strong>User Specific:</strong></p>
<ul>
<li><strong>Cookies</strong> &#8211; C:\Users\%username%\AppData\Roaming\Microsoft\Windows\Cookies</li>
<li><strong>Default Outlook OST/PST folder</strong> &#8211; C:\Users\%username%\AppData\Local\Microsoft\Outlook</li>
<li><strong>Quick Launch</strong> &#8211; C:\Users\%username%\AppData\Roaming\Microsoft\Internet Explorer\Quick Launch</li>
<li><strong>Send To</strong> &#8211; C:\Users\%username%\AppData\Roaming\Microsoft\Windows\SendTo</li>
<li><strong>Start Menu </strong>- C:\Users\%username%\AppData\Roaming\Microsoft\Windows\Start Menu</li>
<li><strong>Temp</strong> &#8211; C:\Users\%username%\AppData\Local\Temp</li>
<li><strong>Temporary Internet Files</strong> &#8211; C:\Users\%username%\AppData\Local\Microsoft\Windows\Temporary Internet Files</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.meltivore.com/2012/new-folder-locations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

