<?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/"
	>

<channel>
	<title>AnoopGeorge.com</title>
	<atom:link href="http://www.anoopgeorge.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.anoopgeorge.com</link>
	<description>Website of One Anoop George</description>
	<pubDate>Fri, 02 Jan 2009 07:50:25 +0000</pubDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Welcome to AnoopGeorge.com</title>
		<link>http://www.anoopgeorge.com/2008/05/welcome/</link>
		<comments>http://www.anoopgeorge.com/2008/05/welcome/#comments</comments>
		<pubDate>Sat, 10 May 2008 08:44:25 +0000</pubDate>
		<dc:creator>Anoop</dc:creator>
		
		<category><![CDATA[content]]></category>

		<category><![CDATA[welcome]]></category>

		<guid isPermaLink="false">http://www.anoopgeorge.com/2008/02/25/welcome-to-anoopgeorgecom</guid>
		<description><![CDATA[I am glad you stoped by AnoopGeorge.com
This is my personal site which I use to post personal pictures and share them with friends and family.

]]></description>
		<wfw:commentRss>http://www.anoopgeorge.com/2008/05/welcome/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Internet&#8217;s Underworld</title>
		<link>http://www.anoopgeorge.com/2008/12/the-internets-underworld/</link>
		<comments>http://www.anoopgeorge.com/2008/12/the-internets-underworld/#comments</comments>
		<pubDate>Wed, 31 Dec 2008 05:27:04 +0000</pubDate>
		<dc:creator>Anoop</dc:creator>
		
		<category><![CDATA[technology]]></category>

		<category><![CDATA[Cloud]]></category>

		<guid isPermaLink="false">http://www.anoopgeorge.com/?p=172</guid>
		<description><![CDATA[The UK Guardian newspaper has a great diagram of ‘the internet’s undersea world‘ online.
]]></description>
		<wfw:commentRss>http://www.anoopgeorge.com/2008/12/the-internets-underworld/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Powershell Script to Connect to SQL Server and get some information</title>
		<link>http://www.anoopgeorge.com/2008/12/powershell-script-to-connect-to-sql-server-and-get-some-information/</link>
		<comments>http://www.anoopgeorge.com/2008/12/powershell-script-to-connect-to-sql-server-and-get-some-information/#comments</comments>
		<pubDate>Mon, 22 Dec 2008 22:01:42 +0000</pubDate>
		<dc:creator>Anoop</dc:creator>
		
		<category><![CDATA[technology]]></category>

		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://www.anoopgeorge.com/?p=164</guid>
		<description><![CDATA[A quick script to connect to an sql sserver and get the information from a table.  In this case find the SQL Proxy accounts from the msdb database.
 # SQL Server and Database Information
 $SqlServer = &#8220;.&#8221;;
 $SqlCatalog = &#8220;msdb&#8221;;
 # SQL Query Statement
 $q= &#8220;EXEC dbo.sp_help_proxy&#8221;
 $cn = new-object system.data.SqlClient.SqlConnection(&#8221;Data Source=$SqlServer;Integrated Security=SSPI;Initial Catalog=$SqlCatalog&#8221;);
 $ds = new-object &#8220;System.Data.DataSet&#8221; &#8220;dbo&#8221;
 $da = new-object &#8220;System.Data.SqlClient.SqlDataAdapter&#8221; [...]]]></description>
		<wfw:commentRss>http://www.anoopgeorge.com/2008/12/powershell-script-to-connect-to-sql-server-and-get-some-information/feed/</wfw:commentRss>
		</item>
		<item>
		<title>PowerShell Script to compare two lists</title>
		<link>http://www.anoopgeorge.com/2008/12/powershell-script-to-compare-two-lists/</link>
		<comments>http://www.anoopgeorge.com/2008/12/powershell-script-to-compare-two-lists/#comments</comments>
		<pubDate>Mon, 22 Dec 2008 21:43:27 +0000</pubDate>
		<dc:creator>Anoop</dc:creator>
		
		<category><![CDATA[technology]]></category>

		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://www.anoopgeorge.com/?p=162</guid>
		<description><![CDATA[A quick script to compare two arrays.
$arrFirst = get-content First.txt
$arrSecond = get-content Second.txt
New-Item &#8220;C:\Myworkplace\ps\FirstInSecond.txt&#8221; -Type file
New-Item &#8220;C:\Myworkplace\ps\FirstNotInSecond&#8221; -Type file
Foreach ($First in $arrFirst)
{
If ($arrSecond -contains $First)
{Add-content &#8220;C:\Myworkplace\ps\FirstInsecond.txt&#8221; $First}
Else
{Add-content &#8220;C:\Myworkplace\ps\FirstNotInSecond.txt&#8221; $First}

]]></description>
		<wfw:commentRss>http://www.anoopgeorge.com/2008/12/powershell-script-to-compare-two-lists/feed/</wfw:commentRss>
		</item>
		<item>
		<title>PowerShell script to add/remove a domain user to the Local Administrators group on a remote machine</title>
		<link>http://www.anoopgeorge.com/2008/12/powershell-script-to-addremove-a-domain-user-to-the-local-administrators-group-on-a-remote-machine/</link>
		<comments>http://www.anoopgeorge.com/2008/12/powershell-script-to-addremove-a-domain-user-to-the-local-administrators-group-on-a-remote-machine/#comments</comments>
		<pubDate>Mon, 22 Dec 2008 21:06:38 +0000</pubDate>
		<dc:creator>Anoop</dc:creator>
		
		<category><![CDATA[technology]]></category>

		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://www.anoopgeorge.com/?p=155</guid>
		<description><![CDATA[Here is a PowerShell script to add/remove a domain user to the Local Administrators group on a remote machine and you can easily make it to work on multiple remote machines using the technique in my previous script
# if your user name is whatever\test
$domain = &#8220;whatever&#8221;
$strComputer = &#8220;XYZ&#8221;
$username = &#8220;test&#8221;
$computer = [ADSI](&#8221;WinNT://&#8221; + $strComputer + &#8220;,computer&#8221;)
$computer.name
$Group [...]]]></description>
		<wfw:commentRss>http://www.anoopgeorge.com/2008/12/powershell-script-to-addremove-a-domain-user-to-the-local-administrators-group-on-a-remote-machine/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ripping DVDs</title>
		<link>http://www.anoopgeorge.com/2008/11/ripping-dvds/</link>
		<comments>http://www.anoopgeorge.com/2008/11/ripping-dvds/#comments</comments>
		<pubDate>Wed, 26 Nov 2008 06:04:09 +0000</pubDate>
		<dc:creator>Anoop</dc:creator>
		
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://www.anoopgeorge.com/2008/11/paul-thurrotts-supersite-for-windows-digital-media-core-ripping-dvds/</guid>
		<description><![CDATA[
This is an excellent article on WinSuperSite explaining how to rip DVDs.  I am in the process of converting all of my DVD collection to MP4.  This article was written for handbrake version 9.2 but as 9.3 is available some of the steps are a little simpler.
]]></description>
		<wfw:commentRss>http://www.anoopgeorge.com/2008/11/ripping-dvds/feed/</wfw:commentRss>
		</item>
		<item>
		<title>HP offers MediaSmart Server for $449</title>
		<link>http://www.anoopgeorge.com/2008/11/hp-offers-mediasmart-server-for-449/</link>
		<comments>http://www.anoopgeorge.com/2008/11/hp-offers-mediasmart-server-for-449/#comments</comments>
		<pubDate>Wed, 26 Nov 2008 02:37:27 +0000</pubDate>
		<dc:creator>Anoop</dc:creator>
		
		<category><![CDATA[technology]]></category>

		<category><![CDATA[Home Server]]></category>

		<category><![CDATA[HP MediaSmart Server]]></category>

		<category><![CDATA[sale]]></category>

		<guid isPermaLink="false">http://www.anoopgeorge.com/2008/11/hp-offers-mediasmart-server-for-449/</guid>
		<description><![CDATA[It looks like HPShopping.com is selling HP MediaSmart EX470 servers for $449.  This is an excellent price for a MediaSmart Server as the retail price is $549.
]]></description>
		<wfw:commentRss>http://www.anoopgeorge.com/2008/11/hp-offers-mediasmart-server-for-449/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to use an Apple keyboard with Windows</title>
		<link>http://www.anoopgeorge.com/2008/03/how-to-use-an-apple-keyboard-with-windows/</link>
		<comments>http://www.anoopgeorge.com/2008/03/how-to-use-an-apple-keyboard-with-windows/#comments</comments>
		<pubDate>Sun, 23 Mar 2008 00:47:51 +0000</pubDate>
		<dc:creator>Anoop George</dc:creator>
		
		<category><![CDATA[technology]]></category>

		<category><![CDATA[Apple]]></category>

		<category><![CDATA[How TO]]></category>

		<category><![CDATA[Keyboard]]></category>

		<guid isPermaLink="false">http://www.anoopgeorge.com/?p=74</guid>
		<description><![CDATA[I have always envied the thin mac keyboards and I finally got me one.  Couple of customizations are very useful when using it with a PC.  Alt and Windows key are in the wrong order as you are used to on a windows keyboard.  So here is how i did it&#8230;
Introducing AutoHotKey
AutoHotKey is freeware software [...]]]></description>
		<wfw:commentRss>http://www.anoopgeorge.com/2008/03/how-to-use-an-apple-keyboard-with-windows/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Installing PHP for IIS on Windows Home Server</title>
		<link>http://www.anoopgeorge.com/2008/03/installing-php-for-iis-on-windows-home-server/</link>
		<comments>http://www.anoopgeorge.com/2008/03/installing-php-for-iis-on-windows-home-server/#comments</comments>
		<pubDate>Mon, 03 Mar 2008 01:02:48 +0000</pubDate>
		<dc:creator>Anoop George</dc:creator>
		
		<category><![CDATA[technology]]></category>

		<category><![CDATA[Home Server]]></category>

		<category><![CDATA[IIS]]></category>

		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.anoopgeorge.com/?p=73</guid>
		<description><![CDATA[If you’re interested in running a website from your home server, you may have considered various options, including running PHP. But running PHP with IIS can be fraught with problems - or at least was, until WGS reader, Christopher Courtney, wrote the following guide to installing PHP for IIS on Windows Home Server. Over to [...]]]></description>
		<wfw:commentRss>http://www.anoopgeorge.com/2008/03/installing-php-for-iis-on-windows-home-server/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to download and install Zune 2.2 firmware when your HTTP Proxy Requires Authentication?</title>
		<link>http://www.anoopgeorge.com/2007/11/how-to-download-and-install-zune-22-firmware-when-your-http-proxy-requires-authentication/</link>
		<comments>http://www.anoopgeorge.com/2007/11/how-to-download-and-install-zune-22-firmware-when-your-http-proxy-requires-authentication/#comments</comments>
		<pubDate>Wed, 14 Nov 2007 08:05:34 +0000</pubDate>
		<dc:creator>Anoop</dc:creator>
		
		<category><![CDATA[content]]></category>

		<guid isPermaLink="false">http://www.anoopgeorge.com/2007/11/14/how-to-download-and-install-zune-22-firmware-when-your-http-proxy-requires-authentication</guid>
		<description><![CDATA[Symptoms:
Returns the error id: &#8220;C00D11CD&#8221; when trying to install the zune 2.2 firmware.
Cause:
This is caused beacused BITS does not like being behind a HTTP proxy server that requires authentication. By default, BITS doesn&#8217;t automatically provide your domain user information to the proxy server. so, when the zune software attempts to use the BITS to download [...]]]></description>
		<wfw:commentRss>http://www.anoopgeorge.com/2007/11/how-to-download-and-install-zune-22-firmware-when-your-http-proxy-requires-authentication/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
