<?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>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>
	<lastBuildDate>Wed, 03 Mar 2010 17:35:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Rename Local Administrator Password</title>
		<link>http://www.anoopgeorge.com/2010/03/03/rename-local-administrator-password/</link>
		<comments>http://www.anoopgeorge.com/2010/03/03/rename-local-administrator-password/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 17:35:08 +0000</pubDate>
		<dc:creator>Anoop</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.anoopgeorge.com/?p=685</guid>
		<description><![CDATA[here is a script to rename the local administrator password using powershell&#8230; it renames the administrator account to the &#8220;!computerName&#8221;&#8230;
Remember to run powershell as administrator.
$Bang = &#8220;!&#8221;
$NewComputerName = gc env:computername
$NewAdminAccount = $Bang+$NewComputerName $admin = [ADSI]&#8220;WinNT://./Administrator,user&#8221; $admin.psbase.Rename(&#8220;$NewAdminAccount&#8221;)
]]></description>
		<wfw:commentRss>http://www.anoopgeorge.com/2010/03/03/rename-local-administrator-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>powershell ping test</title>
		<link>http://www.anoopgeorge.com/2010/03/03/powershell-ping-test/</link>
		<comments>http://www.anoopgeorge.com/2010/03/03/powershell-ping-test/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 17:21:04 +0000</pubDate>
		<dc:creator>Anoop</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.anoopgeorge.com/?p=681</guid>
		<description><![CDATA[A way to test to see if the server is pingable
PS &#62; # Using .NET method to ping test the servers
PS &#62; $ping = new-object System.Net.NetworkInformation.Ping
PS &#62; $ping.send($strComputer)
Status        : Success
Address       : 192.168.1.1
RoundtripTime : 0
Options       : System.Net.NetworkInformation.PingOptions
Buffer        : {97, 98, 99, 100&#8230;}
 
# Using .NET method to ping test the servers
$ping = new-object System.Net.NetworkInformation.Ping
$Reply = $ping.send($strComputer)
if($Reply.status -eq [...]]]></description>
		<wfw:commentRss>http://www.anoopgeorge.com/2010/03/03/powershell-ping-test/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 jQuery Transition Effects: Moving Elements with Style</title>
		<link>http://www.anoopgeorge.com/2010/03/02/10-jquery-transition-effects-moving-elements-with-style/</link>
		<comments>http://www.anoopgeorge.com/2010/03/02/10-jquery-transition-effects-moving-elements-with-style/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 19:54:39 +0000</pubDate>
		<dc:creator>Anoop</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.anoopgeorge.com/?p=677</guid>
		<description><![CDATA[http://devsnippets.com/article/10-jquery-transition-effects.html
http://www.sohtanaka.com/web-design/automatic-image-slider-w-css-jquery/
]]></description>
		<wfw:commentRss>http://www.anoopgeorge.com/2010/03/02/10-jquery-transition-effects-moving-elements-with-style/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Compress Files with Windows PowerShell</title>
		<link>http://www.anoopgeorge.com/2010/01/21/compress-files-with-windows-powershell/</link>
		<comments>http://www.anoopgeorge.com/2010/01/21/compress-files-with-windows-powershell/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 22:35:17 +0000</pubDate>
		<dc:creator>Anoop</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.anoopgeorge.com/?p=667</guid>
		<description><![CDATA[Here are a few fuctions on how to create, update and extract a zip file within powershell. 
1. Create a New Zip
function New-Zip{
param([string]$zipfilename)
set-content $zipfilename (&#8220;PK&#8221; + [char]5 + [char]6 + (&#8220;$([char]0)&#8221; * 18))
(dir $zipfilename).IsReadOnly = $false
}
usage: new-zip c:\demo\myzip.zip
2. Add files to a zip via a pipeline
function Add-Zip
{
param([string]$zipfilename)
if(-not (test-path($zipfilename)))
{
set-content $zipfilename (&#8220;PK&#8221; + [char]5 + [char]6 + (&#8220;$([char]0)&#8221; [...]]]></description>
		<wfw:commentRss>http://www.anoopgeorge.com/2010/01/21/compress-files-with-windows-powershell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Council Mexico Mission Trip</title>
		<link>http://www.anoopgeorge.com/2009/10/27/council-mexico-mission-trip/</link>
		<comments>http://www.anoopgeorge.com/2009/10/27/council-mexico-mission-trip/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 18:39:55 +0000</pubDate>
		<dc:creator>Anoop</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.anoopgeorge.com/?p=664</guid>
		<description><![CDATA[]]></description>
		<wfw:commentRss>http://www.anoopgeorge.com/2009/10/27/council-mexico-mission-trip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
