<?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>mike says things sometimes &#187; computers</title>
	<atom:link href="http://blueglowy.com/category/computers/feed/" rel="self" type="application/rss+xml" />
	<link>http://blueglowy.com</link>
	<description>omg where am I I AM NOT GOOD WITH COMPUTERS</description>
	<lastBuildDate>Fri, 29 Apr 2011 04:15:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Switching users print servers with Powershell</title>
		<link>http://blueglowy.com/2011/04/01/switching-users-print-servers-with-powershell/</link>
		<comments>http://blueglowy.com/2011/04/01/switching-users-print-servers-with-powershell/#comments</comments>
		<pubDate>Fri, 01 Apr 2011 17:44:21 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[nerdery]]></category>
		<category><![CDATA[Powershell]]></category>

		<guid isPermaLink="false">http://blueglowy.com/2011/04/01/switching-users-print-servers-with-powershell/</guid>
		<description><![CDATA[&#160; So we recently setup a new Win2k8 R2 print server to replace our aging 2k3 server, and I needed a way to easily switch a whole bunch of users over to the printer mappings on the new server.&#160; After some digging, I came up with this method of switching everyone over at login with [...]]]></description>
			<content:encoded><![CDATA[<p>&#160;</p>
<p>So we recently setup a new Win2k8 R2 print server to replace our aging 2k3 server, and I needed a way to easily switch a whole bunch of users over to the printer mappings on the new server.&#160; After some digging, I came up with this method of switching everyone over at login with Powershell:</p>
<p>&#160;</p>
<p>&lt;#</p>
<p>.SYNOPSIS   <br />This is a Powershell script to remove the old &lt;printserver&gt; printers and replace them with Printers mapped to &lt;newprintserver&gt;</p>
<p>.DESCRIPTION   <br />This script will run at logon, and accomplish the following tasks:     <br />1) Sets ErrorAction to Silently Continue to hide any red errors if a printer connection doesn&#8217;t exist    <br />2) Gets the machines list of installed printers and passes it to the $localprinters variable    <br />3) Searches the $localprinters variable for the printer names and declares them    <br />4) Tests each variable for existence, and if it exists removes the old &lt;printserver&gt; version and installs the &lt;newprintserver&gt; version    <br />5) Checks what the original default printer was, and if it was a &lt;printserver&gt; one changes it to the new &lt;newprintserver&gt; version</p>
<p>.NOTES   <br />This script is fairly easy to modify and tailor to a different site by modifying the what is searched for via -pattern, and adjusting the printer connections in each test case.</p>
<p>.LINK   <br /><a href="http://www.blueglowy.com">http://www.blueglowy.com</a></p>
<p>#&gt;   <br />$ErrorActionPreference = &quot;SilentlyContinue&quot;</p>
<p>$localprinters = Get-WmiObject -Class Win32_Printer -ComputerName ${env:computername}</p>
<p>$defaultprt = Get-WMIObject -class Win32_Printer -computer ${env:computername} -Filter Default=True | Select Name,Default</p>
<p>$test = Select-String -inputObject $localprinters -pattern &quot;&lt;printer1&gt;&quot; -quiet   <br />$test2 = Select-String -inputObject $localprinters -pattern &quot;&lt;printer2&gt;&quot; -quiet    <br />$test3 = Select-String -inputObject $localprinters -pattern &quot;&lt;printer3&gt;&quot; -quiet    <br />$test4 = Select-String -inputObject $localprinters -pattern &quot;&lt;printer4&gt;&quot; -quiet</p>
<p>$prt1 = Select-String -inputObject $defaultprt -pattern &quot;&lt;printer1&gt;&quot; -quiet    <br />$prt2 = Select-String -inputObject $defaultprt -pattern &quot;&lt;printer2&gt;&quot; -quiet    <br />$prt3 = Select-String -inputObject $defaultprt -pattern &quot;&lt;printer3&gt;&quot; -quiet    <br />$prt4 = Select-String -inputObject $defaultprt -pattern &quot;&lt;printer4&gt;&quot; -quiet</p>
<p>if ($test -eq &quot;True&quot;) {(New-Object -ComObject WScript.Network).RemovePrinterConnection(&quot;\\&lt;printserver&gt;\&lt;printer1&gt;&quot;)   <br />&#160;&#160;&#160; (New-Object -ComObject WScript.Network).AddWindowsPrinterConnection(&quot;\\&lt;newprintserver&gt;\&lt;printer1&gt;&quot;)}    <br />&#160;&#160;&#160; else {&quot;&quot;}    <br />&#160;&#160;&#160; <br />if ($test2 -eq &quot;True&quot;) {(New-Object -ComObject WScript.Network).RemovePrinterConnection(&quot;\\&lt;printserver&gt;\&lt;printer2&gt;&quot;)    <br />&#160;&#160;&#160; (New-Object -ComObject WScript.Network).AddWindowsPrinterConnection(&quot;\\&lt;newprintserver&gt;\&lt;printer2&gt;&quot;)}    <br />&#160;&#160;&#160; else {&quot;&quot;}    <br />&#160;&#160;&#160; <br />if ($test3 -eq &quot;True&quot;) {(New-Object -ComObject WScript.Network).RemovePrinterConnection(&quot;\\&lt;printserver&gt;\&lt;printer3&gt;&quot;)    <br />&#160;&#160;&#160; (New-Object -ComObject WScript.Network).AddWindowsPrinterConnection(&quot;\\&lt;newprintserver&gt;\&lt;printer3&gt;&quot;)}    <br />&#160;&#160;&#160; else {&quot;&quot;}    <br />&#160;&#160;&#160; <br />if ($test4 -eq &quot;True&quot;) {(New-Object -ComObject WScript.Network).RemovePrinterConnection(&quot;\\&lt;printserver&gt;\&lt;printer4&gt;&quot;)    <br />&#160;&#160;&#160; (New-Object -ComObject WScript.Network).AddWindowsPrinterConnection(&quot;\\&lt;newprintserver&gt;\&lt;printer4&gt; PCL5&quot;)}    <br />&#160;&#160;&#160; else {&quot;&quot;}</p>
<p>#Check for default printer and reset it to users original choice if printer was removed   <br />if ($prt1 -eq &quot;True&quot;) {($Printer = Get-WmiObject win32_printer&#160; | where {$_.name -match &quot;&lt;printer1&gt;&quot;})}    <br />&#160;&#160;&#160; Elseif ($prt2 -eq &quot;True&quot;) {($Printer = Get-WmiObject win32_printer&#160; | where {$_.name -match &quot;&lt;printer2&gt;&quot;})}    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Elseif ($prt3 -eq &quot;True&quot;) {($Printer = Get-WmiObject win32_printer&#160; | where {$_.name -match &quot;&lt;printer3&gt;&quot;})}    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Elseif ($prt4 -eq &quot;True&quot;) {($Printer = Get-WmiObject win32_printer&#160; | where {$_.name -match &quot;&lt;printer4&gt; PCL5&quot;})}    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Else {$Printer = &quot;&quot;}</p>
<p>$Printer.SetDefaultPrinter()   <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />Printer Check Complete</p>
]]></content:encoded>
			<wfw:commentRss>http://blueglowy.com/2011/04/01/switching-users-print-servers-with-powershell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Standards People</title>
		<link>http://blueglowy.com/2010/06/17/standards-people/</link>
		<comments>http://blueglowy.com/2010/06/17/standards-people/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 22:51:47 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[computers]]></category>
		<category><![CDATA[nerdery]]></category>
		<category><![CDATA[piracy]]></category>
		<category><![CDATA[itunes; apple; zune;]]></category>

		<guid isPermaLink="false">http://blueglowy.com/2010/06/17/standards-people/</guid>
		<description><![CDATA[I completely regret ever purchasing video from the itunes store now. So i like a good consumer I updated my itunes to 9.2 today, and after it completed, 88 files are missing, 564 tv shows are showing as unplayed, and some of my music is now gone.&#160; Thankfully the music had already been copied over [...]]]></description>
			<content:encoded><![CDATA[<p>I completely regret ever purchasing video from the itunes store now. </p>
<p>So i like a good consumer I updated my itunes to 9.2 today, and after it completed, 88 files are missing, 564 tv shows are showing as unplayed, and some of my music is now gone.&#160; Thankfully the music had already been copied over to my Zune library, but the problem is that I HAVE NO IDEA WHAT HAPPENED. Its just gone.</p>
<p>Frankly though, my greater concern is the fact that even if I want to move to a computer’s product, like oh say….Zune, I can’t take my media with me.&#160; Due to drm and failure to adhere to standards, Apple has assured that I will forever have to use this apple TV they don’t really want to support to view the files.&#160; The container Apple uses for MP4 is an M4V with AC3 passthru, which is an unsupported hack to the MP4 codec container, therefore most other software won’t read it.&#160; Combined with the DRM, you are locked forever into using this thing, no matter how laggy and crappy it is, since Apple doesn’t wanna actually upgrade the device.&#160; </p>
<p>The lesson I’ve learned here is this, if you want interoperability and you want to insure your investment in media isn’t destroyed by a shitty software update….PIRATE.&#160; </p>
<p>And they wonder why they can’t beat piracy?</p>
]]></content:encoded>
			<wfw:commentRss>http://blueglowy.com/2010/06/17/standards-people/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>embarq&#8217;s epic fail</title>
		<link>http://blueglowy.com/2009/10/12/embarqs-epic-fail/</link>
		<comments>http://blueglowy.com/2009/10/12/embarqs-epic-fail/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 19:39:14 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[Clear]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[ISP]]></category>
		<category><![CDATA[WiMax]]></category>

		<guid isPermaLink="false">http://blueglowy.com/2009/10/12/embarqs-epic-fail/</guid>
		<description><![CDATA[So for the last week or so, my Embarq DSL has been acting wonky. Multiple outtages, now stretching into multiple DAYS worth of outtages, and they seem completely unable to resolve this. Iâ€™ve finally given up, and am trying out Clear WiMax.Â  Since my DSL was stagnant at 3MB/768kb anyhow, Clear is saying they can [...]]]></description>
			<content:encoded><![CDATA[<p>So for the last week or so, my Embarq DSL has been acting wonky. Multiple outtages, now stretching into multiple DAYS worth of outtages, and they seem completely unable to resolve this.</p>
<p>Iâ€™ve finally given up, and am trying out Clear WiMax.Â  Since my DSL was stagnant at 3MB/768kb anyhow, Clear is saying they can offer 6MB/1MB Home AND Mobile internet for LESS than Iâ€™m paying for Embarqâ€™s DSL service, and Iâ€™m getting it for half off for 6 months.Â  My equipment should be arriving this afternoon, so hopefully Iâ€™ll actually have internet again at home tonight, and then I can just cancel embarqâ€™s craptastic service.Â  Iâ€™ll post some updates as to how Clearâ€™s service is.</p>
]]></content:encoded>
			<wfw:commentRss>http://blueglowy.com/2009/10/12/embarqs-epic-fail/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Win7 Install</title>
		<link>http://blueglowy.com/2009/09/09/win7-install/</link>
		<comments>http://blueglowy.com/2009/09/09/win7-install/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 03:30:47 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[win7]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://blueglowy.com/2009/09/09/win7-install/</guid>
		<description><![CDATA[I just really wanted to mention how much I &#60;3 the win7 installer.&#160; Iâ€™ve got a GX620 optiplex in the house that I realized had no cd-rom, and wouldnâ€™t boot from a flash drive, so i copied the win7 install files from my flash drive to an NTFS formatted usb hard drive, and it installed [...]]]></description>
			<content:encoded><![CDATA[<p>I just really wanted to mention how much I &lt;3 the win7 installer.&#160; Iâ€™ve got a GX620 optiplex in the house that I realized had no cd-rom, and wouldnâ€™t boot from a flash drive, so i copied the win7 install files from my flash drive to an NTFS formatted usb hard drive, and it installed wicked fast.</p>
<p>Win7 is full of win and love and butter.</p>
]]></content:encoded>
			<wfw:commentRss>http://blueglowy.com/2009/09/09/win7-install/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RPC over HTTP with Outlook 2k7 and Vista</title>
		<link>http://blueglowy.com/2009/08/17/rpc-over-http-with-outlook-2k7-and-vista/</link>
		<comments>http://blueglowy.com/2009/08/17/rpc-over-http-with-outlook-2k7-and-vista/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 02:43:54 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[exchange]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[outlook]]></category>
		<category><![CDATA[RPC]]></category>

		<guid isPermaLink="false">http://blueglowy.com/2009/08/17/rpc-over-http-with-outlook-2k7-and-vista/</guid>
		<description><![CDATA[Ok, so after many days of frustration and troubleshooting, I think I have this problem licked. First off, setup your network to enable RPC over HTTP, and confirm it works with Outlook 2k3. Keep in mind you WILL need a valid SSL cert from a trusted authority.&#160; I recommend a cheap cert from godaddy, as [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, so after many days of frustration and troubleshooting, I think I have this problem licked.</p>
<p>First off, setup your network to enable RPC over HTTP, and confirm it works with Outlook 2k3.</p>
<p>Keep in mind you WILL need a valid SSL cert from a trusted authority.&#160; I recommend a cheap cert from godaddy, as they can be had for between 13-30 bucks if you catch a sale.</p>
<p>Once you have your cert, follow the instructions here:</p>
<p><a href="http://www.petri.co.il/how-can-i-configure-rpc-over-https-on-exchange-2003-single-server-scenario.htm">http://www.petri.co.il/how-can-i-configure-rpc-over-https-on-exchange-2003-single-server-scenario.htm</a></p>
<p>And make sure you test your exchange connectivity, and make sure RPC over HTTP is working for a standard Outlook 2k3 install.</p>
<p>Once youâ€™ve followed those steps, test your configuration here:</p>
<p><a title="https://www.testexchangeconnectivity.com/" href="https://www.testexchangeconnectivity.com/">https://www.testexchangeconnectivity.com/</a></p>
<p>All green? Gooooood.</p>
<p>Now, this is where it gets weird. In your Outlook 2k7/Vista machine, go to control panel-mail, and setup your new profile.&#160; </p>
<p>For your Exchange server, enter the INTERNAL FQDN of your mail server, ie servername.domain.local, selected cached mode so you can get decent performance out of your setup, and enter your username.</p>
<p>Select more settings, go to Security, and set it to Kerberos for now. (Weâ€™ll come back to this.) </p>
<p>Go to the Connection tab, and under Outlook Anywhere put a check in â€œconnect to Microsoft Exchange using HTTPâ€, and then click the Exchange Proxy Settings button</p>
<p>Under connection seetings, enter the URL for your OWA server, and put a check Connect using SSL only.&#160; Also check both â€œOn fast networksâ€â€¦ and â€œOn slow networksâ€¦â€&#160; Set your Proxy Authentication settings to Basic authentication.</p>
<p>Click OK, and then OK again, at which point you should get a pop up warning about using Kerberos from outside a firewall.&#160; Hit ok and continue.&#160; Go ahead an open outlook, enter your username as Domain.local\username&#160; and password, and outlook should probably fail.&#160; At this point go back to your exchange settings, and change you Logon security back to NTLM instead of Kerberos.&#160; Reopen Outlook, and you should now connect.</p>
<p>Stupid and crazy compared to every other version of Outlook\Entourage, but there you go, it worked for me <img src='http://blueglowy.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blueglowy.com/2009/08/17/rpc-over-http-with-outlook-2k7-and-vista/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dear Guy Using Lynx to access my site</title>
		<link>http://blueglowy.com/2008/11/10/dear-guy-using-lynx-to-access-my-site/</link>
		<comments>http://blueglowy.com/2008/11/10/dear-guy-using-lynx-to-access-my-site/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 20:31:53 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[computers]]></category>

		<guid isPermaLink="false">http://blueglowy.com/?p=204</guid>
		<description><![CDATA[You&#8217;re awesome. Â  Love, Able-X]]></description>
			<content:encoded><![CDATA[<p>You&#8217;re awesome.</p>
<p>Â </p>
<p>Love,</p>
<p>Able-X</p>
]]></content:encoded>
			<wfw:commentRss>http://blueglowy.com/2008/11/10/dear-guy-using-lynx-to-access-my-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ipod &#8220;Do Not Disconnect&#8221;</title>
		<link>http://blueglowy.com/2008/08/14/ipod-do-not-disconnect/</link>
		<comments>http://blueglowy.com/2008/08/14/ipod-do-not-disconnect/#comments</comments>
		<pubDate>Thu, 14 Aug 2008 13:48:33 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[ipod]]></category>

		<guid isPermaLink="false">http://blueglowy.com/?p=150</guid>
		<description><![CDATA[Learn something new everyday.Â  I have a 5g Ipod Video 30GB, and disk use is NOT enabled, and it auto syncs playlists.Â  In this configuration it generally syncs when i plug it in, then un mounts itself and I get the happy &#8220;Ok To Disconnect&#8221; message.Â  Well today, it wouldn&#8217;t get out of &#8220;Do Not [...]]]></description>
			<content:encoded><![CDATA[<p>Learn something new everyday.Â  I have a 5g Ipod Video 30GB, and disk use is NOT enabled, and it auto syncs playlists.Â  In this configuration it generally syncs when i plug it in, then un mounts itself and I get the happy &#8220;Ok To Disconnect&#8221; message.Â  Well today, it wouldn&#8217;t get out of &#8220;Do Not Disconnect&#8221;.</p>
<p>Turns out the issue was the ipod itself.Â  Hold down &#8216;Menu&#8217; and the center button to reset the ipod, then after it restarts put it in the dock and it should start behaving normally!</p>
<p>Happy ipodding <img src='http://blueglowy.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blueglowy.com/2008/08/14/ipod-do-not-disconnect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Offline Files &#8211; &#8220;The Parameter Is Incorrect&#8221;</title>
		<link>http://blueglowy.com/2008/08/06/offline-files-the-parameter-is-incorrect/</link>
		<comments>http://blueglowy.com/2008/08/06/offline-files-the-parameter-is-incorrect/#comments</comments>
		<pubDate>Thu, 07 Aug 2008 02:05:06 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[offline files]]></category>
		<category><![CDATA[windows xp]]></category>

		<guid isPermaLink="false">http://blueglowy.com/?p=142</guid>
		<description><![CDATA[Another odd one.Â  A user was having problems syncing his my docs, and kept receiving a strange error that &#8220;The Parameter Is Incorrect&#8221;. Well, here&#8217;s what I did to fix it: Go to the offline files tab in windows explorer, hold downÂ  ctrl+shift at the same time that you click the &#8220;Delete Files&#8230;&#8221; button. I [...]]]></description>
			<content:encoded><![CDATA[<p>Another odd one.Â  A user was having problems syncing his my docs, and kept receiving a strange error that &#8220;The Parameter Is Incorrect&#8221;. Well, here&#8217;s what I did to fix it:</p>
<p>Go to the offline files tab in windows explorer, hold downÂ  ctrl+shift at the same time that you click the &#8220;Delete Files&#8230;&#8221; button. I know it&#8217;s kind of an unusual method for Windows but it does seem to solve the problem most times. It should pop up with a warning message and Yes or No buttons. Click Yes, reboot, and resync and all should be well.</p>
<p>If not, try the following (although I can&#8217;t say that I&#8217;ve tried it myself):</p>
<p>1. Disable Offline Files withÂ  csccmd.exe /disable</p>
<p>3. Reboot into Safe Mode and delete all content under %SystemRoot%\CSC</p>
<p>4. Reboot again and re-enable Offline Files.</p>
<p>After this is done, try the Ctrl+Shift+click method again.</p>
<p>Also, be aware that the offline file database has a path name limitation. I don&#8217;t know what it is &#8211; but if your path\file name is too long it will corrupt the database and cause the &#8220;The Parameter is Incorrect&#8221; error.<br />
Make sure that your file and folder names are kept reasonable. I also recommend not using special characters for any folder or file names.</p>
<p>Hope it helps!</p>
]]></content:encoded>
			<wfw:commentRss>http://blueglowy.com/2008/08/06/offline-files-the-parameter-is-incorrect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Contacts Missing in Outlook 2003</title>
		<link>http://blueglowy.com/2008/08/06/contacts-missing-in-outlook-2003/</link>
		<comments>http://blueglowy.com/2008/08/06/contacts-missing-in-outlook-2003/#comments</comments>
		<pubDate>Thu, 07 Aug 2008 01:49:58 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[outlook]]></category>

		<guid isPermaLink="false">http://blueglowy.com/?p=140</guid>
		<description><![CDATA[So a user got a new laptop, and everything seemed ok.Â  Until he went to send an email and get an address from his contacts list.Â  IT WAS MISSING.Â  So, after a bit of google-fu, i was led to the following solution which worked like champ: Step 1: Install the Outlook Address Book service http://support.microsoft.com/kb/287563/ [...]]]></description>
			<content:encoded><![CDATA[<p>So a user got a new laptop, and everything seemed ok.Â  Until he went to send an email and get an address from his contacts list.Â  IT WAS MISSING.Â  So, after a bit of google-fu, i was led to the following solution which worked like champ:</p>
<p>Step 1: Install the Outlook Address Book service</p>
<p>http://support.microsoft.com/kb/287563/</p>
<p>To do this, follow these steps, as appropriate for the version of Outlook that you are running.<br />
Microsoft Outlook 2002 and Microsoft Office Outlook 2003</p>
<p>1.Â Â Â  On the Tools menu, click E-mail Accounts.<br />
2.Â Â Â  Click to select View or change existing directories or address books, and then click Next.<br />
3.Â Â Â  If your Outlook Address Book is listed, click Cancel, and then go to the steps in the &#8220;How to Mark Your Contact Folder for Use with Your Address Book&#8221; section.<br />
4.Â Â Â  If your Outlook Address Book is not listed, click Add.<br />
5.Â Â Â  Click to select Additional Address Books, and then click Next.<br />
6.Â Â Â  Click to select Outlook Address Book, and then click Next.<br />
7.Â Â Â  Click OK when you receive the prompt that the address book you added will not start until you click Exit from the File menu.<br />
8.Â Â Â  Click Finish.<br />
9.Â Â Â  Click Exit from the File menu, and then restart Outlook.</p>
<p>My google-fu is strong.</p>
]]></content:encoded>
			<wfw:commentRss>http://blueglowy.com/2008/08/06/contacts-missing-in-outlook-2003/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>rrrraaaaaaarrrrrrrrr</title>
		<link>http://blueglowy.com/2008/07/18/rrrraaaaaaarrrrrrrrr/</link>
		<comments>http://blueglowy.com/2008/07/18/rrrraaaaaaarrrrrrrrr/#comments</comments>
		<pubDate>Sat, 19 Jul 2008 03:22:18 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[lusers]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://blueglowy.com/?p=134</guid>
		<description><![CDATA[Today was full of suck, with many users being very needy, and day 2 of no long distance in the office, so I spent all day on the phone with vendors.Â  Oh, and one of our sites backups hadn&#8217;t worked properly since last july.Â  And some shadow copies were disappearing faster than I could recover [...]]]></description>
			<content:encoded><![CDATA[<p>Today was full of suck, with many users being very needy, and day 2 of no long distance in the office, so I spent all day on the phone with vendors.Â  Oh, and one of our sites backups hadn&#8217;t worked properly since last july.Â  And some shadow copies were disappearing faster than I could recover data from them.<br />
And I found Limewire on a users machine who is always bitching about how her compy doesn&#8217;t work.<br />
And a hard drive died.Â  So yeah, suck ass.</p>
]]></content:encoded>
			<wfw:commentRss>http://blueglowy.com/2008/07/18/rrrraaaaaaarrrrrrrrr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

