<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Madras Techies</title>
	<atom:link href="http://gobal.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://gobal.wordpress.com</link>
	<description>It&#039;s all about sharing</description>
	<lastBuildDate>Fri, 02 Jul 2010 01:44:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='gobal.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/c0254f6c8e9562488f2125186ea5fb33?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Madras Techies</title>
		<link>http://gobal.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://gobal.wordpress.com/osd.xml" title="Madras Techies" />
	<atom:link rel='hub' href='http://gobal.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Immediate Window in Visual Studio</title>
		<link>http://gobal.wordpress.com/2009/07/31/immediate-window-in-visual-studio/</link>
		<comments>http://gobal.wordpress.com/2009/07/31/immediate-window-in-visual-studio/#comments</comments>
		<pubDate>Sat, 01 Aug 2009 02:20:11 +0000</pubDate>
		<dc:creator>Gobalakrishnan</dc:creator>
				<category><![CDATA[ASP.net]]></category>
		<category><![CDATA[debugging]]></category>
		<category><![CDATA[immediate window]]></category>

		<guid isPermaLink="false">http://gobal.wordpress.com/?p=129</guid>
		<description><![CDATA[The Immediate Window is your most valuable ally while debugging code. The Immediate Window is the equivalent of a debug window that allows you to watch the values of the variables in your code. (Bring up the Immediate Window by &#8230; <a href="http://gobal.wordpress.com/2009/07/31/immediate-window-in-visual-studio/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gobal.wordpress.com&amp;blog=5267733&amp;post=129&amp;subd=gobal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The Immediate Window is your most valuable ally while debugging code. The Immediate Window is the equivalent of a debug window that allows you to watch the values of the variables in your code. (Bring up the Immediate Window by clicking on the View/Immediate Window Menu Option for Access v 2.0; View/Debug Window Menu Option for Access v 8.0)</p>
<p>The Immediate Window can be used to return values, set values and test the validity of conditions.</p>
<p>1. Putting a question mark before a variable or condition (e.g. ?MyVar) returns the value of MyVar. But remember that MyVar must be a variable local to the procedure you are stepping through or it must be a global variable. Asking for the value of a variable that is not declared in the current procedure will give you an error.</p>
<p>2. To set the value of MyVar while stepping through your code, you can bring up the Immediate Window and set the value just like you would in the Access Basic code.</p>
<p>MyVar = &#8220;The new value of this variable&#8221;</p>
<p>3. You may terminate a program by typing</p>
<p>End</p>
<p>in the Immediate Window.</p>
<p>4. If you are a teeny bit lazy about typing in the variable names in the Immediate Window each time you want to check their values, you could use this alternative instead:</p>
<p>Debug.Print MyVar</p>
<p>If you put this line at strategic points in your code you can see your code run through uninterrupted and see the values in the Immediate Window!! Since there is always a downside to everything, there is one here too. This slows down the execution speed of your code tremendously. So if you do choose to use this then you either comment out these lines or delete them entirely from your modules.</p>
<p>5. (Access v 2.0 only) One trick is to ensure that there are at least two line breaks between each variable whose value you wish to check. You may have noticed that if you write in two consecutive lines like:</p>
<p>?MyVar</p>
<p>?MyOtherVar</p>
<p> </p>
<p>and if you put the cursor on the first line and hit &lt;Enter&gt; to check the value of MyVar again, then the second line is overwritten by the value of MyVar, even if it is empty. So, if you skip a line, you can keep using these two lines over and over again without having to retype them in every time you want to check the values.</p>
<p>(This does not happen in Access v 8.0)</p>
<p>We use the Immediate Window extensively while testing our code. To check values, to run functions. YES! You can execute functions or subroutines by &#8230;.</p>
<p>?MyFunction(Arg1, Arg2)</p>
<p>or</p>
<p>?MySub Arg1, Arg2</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gobal.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gobal.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gobal.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gobal.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gobal.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gobal.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gobal.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gobal.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gobal.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gobal.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gobal.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gobal.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gobal.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gobal.wordpress.com/129/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gobal.wordpress.com&amp;blog=5267733&amp;post=129&amp;subd=gobal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gobal.wordpress.com/2009/07/31/immediate-window-in-visual-studio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0297c69fd9c96acad22a01b84f243dac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gobal</media:title>
		</media:content>
	</item>
		<item>
		<title>IDENT_CURRENT, @@IDENTITY, SCOPE_IDENTITY</title>
		<link>http://gobal.wordpress.com/2009/07/24/ident_current-identity-scope_identity/</link>
		<comments>http://gobal.wordpress.com/2009/07/24/ident_current-identity-scope_identity/#comments</comments>
		<pubDate>Sat, 25 Jul 2009 05:45:53 +0000</pubDate>
		<dc:creator>Gobalakrishnan</dc:creator>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[@@identity]]></category>
		<category><![CDATA[Ident_current]]></category>
		<category><![CDATA[Scope_Identity]]></category>
		<category><![CDATA[session in sql]]></category>

		<guid isPermaLink="false">http://gobal.wordpress.com/?p=123</guid>
		<description><![CDATA[IDENT_CURRENT &#8211; returns the last identity value generated for a specific table in any session and any scope @@IDENTITY &#8211; returns the last identity value generated for any table in the current session, across all scopes  SCOPE_IDENTITY &#8211; returns the &#8230; <a href="http://gobal.wordpress.com/2009/07/24/ident_current-identity-scope_identity/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gobal.wordpress.com&amp;blog=5267733&amp;post=123&amp;subd=gobal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>IDENT_CURRENT &#8211; returns the last identity value generated for a specific table in any session and any scope</p>
<p>@@IDENTITY &#8211; returns the last identity value generated for any table in the current session, across all scopes </p>
<p>SCOPE_IDENTITY &#8211; returns the last identity value generated for any table in the current session and the current scope</p>
<p>Comparing identity values returned by IDENT_CURRENT, @@IDENTITY and SCOPE_IDENTITY</p>
<div>
<p>The following example shows the different identity values that are returned by <code>IDENT_CURRENT</code>, <code>@@IDENTITY</code>, and <code>SCOPE_IDENTITY</code>.</p>
<div id="ctl00_MTContentSelector1_mainContentContainer_ctl24_other">
<div>
<div>USE AdventureWorks;<br />
GO<br />
IF OBJECT_ID(N&#8217;t6&#8242;, N&#8217;U') IS NOT NULL<br />
    DROP TABLE t6;<br />
GO<br />
IF OBJECT_ID(N&#8217;t7&#8242;, N&#8217;U') IS NOT NULL<br />
    DROP TABLE t7;<br />
GO<br />
CREATE TABLE t6(id int IDENTITY);<br />
CREATE TABLE t7(id int IDENTITY(100,1));<br />
GO<br />
CREATE TRIGGER t6ins ON t6 FOR INSERT<br />
AS<br />
BEGIN<br />
   INSERT t7 DEFAULT VALUES<br />
END;<br />
GO<br />
&#8211;End of trigger definition</p>
<p>SELECT id FROM t6;<br />
&#8211;id is empty.</p>
<p>SELECT id FROM t7;<br />
&#8211;ID is empty.</p>
<p>&#8211;Do the following in Session 1<br />
INSERT t6 DEFAULT VALUES;<br />
SELECT @@IDENTITY;<br />
/*Returns the value 100. This was inserted by the trigger.*/</p>
<p>SELECT SCOPE_IDENTITY();<br />
/* Returns the value 1. This was inserted by the<br />
INSERT statement two statements before this query.*/</p>
<p>SELECT IDENT_CURRENT(&#8216;t7&#8242;);<br />
/* Returns value inserted into t7, that is in the trigger.*/</p>
<p>SELECT IDENT_CURRENT(&#8216;t6&#8242;);<br />
/* Returns value inserted into t6. This was the INSERT statement four statements before this query.*/</p>
<p>&#8211; Do the following in Session 2.<br />
SELECT @@IDENTITY;<br />
/* Returns NULL because there has been no INSERT action<br />
up to this point in this session.*/</p>
<p>SELECT SCOPE_IDENTITY();<br />
/* Returns NULL because there has been no INSERT action<br />
up to this point in this scope in this session.*/</p>
<p>SELECT IDENT_CURRENT(&#8216;t7&#8242;);<br />
/* Returns the last value inserted into t7.*/</p></div>
</div>
</div>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gobal.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gobal.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gobal.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gobal.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gobal.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gobal.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gobal.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gobal.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gobal.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gobal.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gobal.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gobal.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gobal.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gobal.wordpress.com/123/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gobal.wordpress.com&amp;blog=5267733&amp;post=123&amp;subd=gobal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gobal.wordpress.com/2009/07/24/ident_current-identity-scope_identity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0297c69fd9c96acad22a01b84f243dac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gobal</media:title>
		</media:content>
	</item>
		<item>
		<title>Computer Slow down Issues</title>
		<link>http://gobal.wordpress.com/2009/07/24/computer-slow-down-issues/</link>
		<comments>http://gobal.wordpress.com/2009/07/24/computer-slow-down-issues/#comments</comments>
		<pubDate>Sat, 25 Jul 2009 05:38:58 +0000</pubDate>
		<dc:creator>Gobalakrishnan</dc:creator>
				<category><![CDATA[Common Computing]]></category>
		<category><![CDATA[boot up slow]]></category>
		<category><![CDATA[Computer slow down]]></category>
		<category><![CDATA[low performance]]></category>

		<guid isPermaLink="false">http://gobal.wordpress.com/?p=120</guid>
		<description><![CDATA[My Windows computer boots up slow. Question: My Windows computer boots up slow. Answer: A slow Microsoft Windows boot up can be caused by a wide variety of issues. Below are various suggestions and tips that can help improve the &#8230; <a href="http://gobal.wordpress.com/2009/07/24/computer-slow-down-issues/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gobal.wordpress.com&amp;blog=5267733&amp;post=120&amp;subd=gobal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="text-decoration:underline;"></span></p>
<h1>My Windows computer boots up slow.</h1>
<h2>Question:</h2>
<p>My Windows computer boots up slow.</p>
<h2>Answer:</h2>
<p>A slow Microsoft Windows boot up can be caused by a wide variety of issues. Below are various suggestions and tips that can help improve the overall speed of your computers startup.</p>
<p><span>Disable startup programs</span></p>
<p>Programs that are loading up as the computer starts up to remain active in memory are often one of the main causes of a slow boot in Windows. Disabling programs you don&#8217;t often use from automatically starting up each time the computer boots can increase the boot time.</p>
<p>A program that makes managing your Windows startup programs easily is <a href="http://www.mlin.net/StartupCPL.shtml">Mike Lin&#8217;s Startup Control Panel</a>. Using this program you can disable any program in any of the locations programs use to start themselves automatically.</p>
<p>Additional information about disabling startup programs can also be found on <a href="http://gobal.wordpress.com/wp-admin/chtsr.htm">document CHTSR</a>.</p>
<p><span>Scandisk / Defrag</span></p>
<p>Running Microsoft <a href="http://gobal.wordpress.com/software/scandisk.htm">ScanDisk</a> and <a href="http://gobal.wordpress.com/software/defrag.htm">Defrag</a> or similar disk utilities on the computer can help verify the hard disk drive has no errors as well as make sure the data on the hard disk drive is organized in the most efficient method. We suggest running both of these utilities at least once every few months.</p>
<p><span>Hard disk drive space</span></p>
<p>If your computer does not have at least 250MB of free available hard disk drive space this can cause an overall slowdown with your computer as well as decrease the boot time. Make sure your computer hard disk drive has 250MB or more of available disk space. Additional information about determining available hard disk drive space can be found on <a href="http://gobal.wordpress.com/wp-admin/ch000369.htm">document CH000369</a>.</p>
<p><span>Add memory</span></p>
<p>Adding additional <a href="http://gobal.wordpress.com/jargon/m/memory.htm">memory</a> (RAM) to the computer will help increase the overall speed of the computer and in some cases can also increase the load times of your computer. Today, we suggest all computers be running a minimum of 1GB of memory in their computer. If your computer is running less than this it may be time to upgrade.</p>
<p><span>Update drivers and Windows</span></p>
<p>Corrupt, incorrect, and/or out-of-date drivers can cause a number of different issues. Make sure your computer has the latest drivers as well as any available Microsoft Windows updates.</p>
<p>See <a href="http://gobal.wordpress.com/wp-admin/ch000545.htm">document CH000545</a> for additional information and help with updating Windows.</p>
<p>Information about finding software and drivers updates can be found on <a href="http://gobal.wordpress.com/wp-admin/ch000644.htm">document CH000644</a>.</p>
<p><span>Registry cleaner</span></p>
<p>Although we don&#8217;t often recommend registry cleaners in some rare situations running cleaners can help improve the overall performance of Windows including the Windows startup. If you&#8217;ve run through all of the above recommendations you may want to clean your system registry.</p>
<p>Additional information on registry cleaners and recommendations can be found on <a href="http://gobal.wordpress.com/wp-admin/ch001077.htm">document CH001077</a>.</p>
<p><span>Format and reinstall</span></p>
<p>If after following all the above steps your computer still seems to be slow you may wan to erase everything from the computer and re-install Windows. This will clean your computer and make it like new. Additional information about how to do do this can be found on <a href="http://gobal.wordpress.com/wp-admin/ch000186.htm">document CH00186</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gobal.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gobal.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gobal.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gobal.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gobal.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gobal.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gobal.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gobal.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gobal.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gobal.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gobal.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gobal.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gobal.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gobal.wordpress.com/120/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gobal.wordpress.com&amp;blog=5267733&amp;post=120&amp;subd=gobal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gobal.wordpress.com/2009/07/24/computer-slow-down-issues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0297c69fd9c96acad22a01b84f243dac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gobal</media:title>
		</media:content>
	</item>
		<item>
		<title>Lost or forgotten Windows NT / 2000 / XP password</title>
		<link>http://gobal.wordpress.com/2009/07/24/lost-or-forgotten-windows-nt-2000-xp-password/</link>
		<comments>http://gobal.wordpress.com/2009/07/24/lost-or-forgotten-windows-nt-2000-xp-password/#comments</comments>
		<pubDate>Sat, 25 Jul 2009 04:16:37 +0000</pubDate>
		<dc:creator>Gobalakrishnan</dc:creator>
				<category><![CDATA[Common Computing]]></category>

		<guid isPermaLink="false">http://gobal.wordpress.com/?p=117</guid>
		<description><![CDATA[Lost or forgotten Windows NT / 2000 / XP password. Question: Lost or forgotten Windows NT / 2000 / XP password. Answer: Disclaimer: Gaining access to an account or computer that is not yours without permission by using any of &#8230; <a href="http://gobal.wordpress.com/2009/07/24/lost-or-forgotten-windows-nt-2000-xp-password/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gobal.wordpress.com&amp;blog=5267733&amp;post=117&amp;subd=gobal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h1>Lost or forgotten Windows NT / 2000 / XP password.</h1>
<h2>Question:</h2>
<p>Lost or forgotten Windows NT / 2000 / XP password.</p>
<h2>Answer:</h2>
<p><strong>Disclaimer:</strong> Gaining access to an account or computer that is not yours without permission by using any of the below steps is against the law. This document was created for users who&#8217;ve forgot their own computers Windows password. Additional legal information and policy information can be found on our <a href="http://gobal.wordpress.com/legal.htm">legal page</a>.</p>
<p>There are various utilities that enable a user to gain access to a computer they have forgotten the password to, below is a listing of some of the more popular utilities available.</p>
<p>Log into an alternate account</p>
<p>Often many users will leave the <a href="http://gobal.wordpress.com/jargon/r/root.htm">administrator</a> account alone and/or have other accounts with administrator rights. If you&#8217;re not logging into the computer as administrator or have other accounts follow the below steps to reset your other accounts password.</p>
<ol>
<li>Reboot the computer into Safe Mode. Additional information about getting into Safe Mode is found on <a href="http://gobal.wordpress.com/wp-admin/chsafe.htm">document CHSAFE</a>.</li>
<li>When logging into Safe Mode you should be prompted with an option to what account you wish to use. Select the Administrator account. If prompted for a password try simply pressing Enter on the keyboard for no password. If this does not work, try other passwords you may have used. If you&#8217;re unable to log into the Administrator account skip to the next suggestion.</li>
<li>Once you&#8217;ve logged into the Administrator account open <a href="http://gobal.wordpress.com/jargon/c/controlp.htm">Control Panel</a> and User Accounts.</li>
<li>In User Accounts select the account you wish to change the password for, click change password and then enter the new password or click remove the password to remove the password from the account.</li>
</ol>
<p>Windows XP users and Prevent a forgotten password option</p>
<p>If you have Windows XP and have gone through the &#8220;prevent a forgotten password option&#8221; and have created a diskette, use the diskette created to recover the forgotten password.</p>
<p>If you have not done this but would like information about how to do it, please see <a href="http://gobal.wordpress.com/wp-admin/ch000628.htm">document CH000628</a>.</p>
<p>Offline NT Password &amp; Registry editor</p>
<p>The offline NT password &amp; registry editor is a great utility that enables users to overwrite their Windows NT, 2000, and XP SAM file, the file containing their passwords, with a new password. This will not allow a user to view their previous password, however, it will allow the user to gain access to their unencrypted files again.</p>
<p>This utility is free and can be found on the below link.</p>
<p><a href="http://home.eunet.no/~pnordahl/ntpasswd/">http://home.eunet.no/~pnordahl/ntpasswd/</a> </p>
<p>Emergency Boot CD</p>
<p>In addition to several other features, the EMCD, or Emergency Boot CD, is capable of changing the passwords of any user, including the administrator password in Windows NT, 2000, and XP without needing to know the previous password.</p>
<p>This utility is free and can be found on the below link.</p>
<p><a href="http://ebcd.pcministry.com/">http://ebcd.pcministry.com/</a> </p>
<p>Other utilities</p>
<p>There are numerous other free and commercial utilities available for bypassing or changing an unknown password in Microsoft Windows NT, 2000, and XP. The above two utilities are the more popular solutions and are highly recommended. If these utilities do not suit your needs, you may also want to perform a quick search on your favorite <a href="http://gobal.wordpress.com/jargon/s/searengi.htm">search engine</a>. </p>
<p>Data recovery</p>
<p>If you have tried the above suggestions and are unable to gain access to the files you need to access, some data recovery companies may be able to access your data. Additional information about data recovery as well as links to companies specializing in this service can be found on <a href="http://gobal.wordpress.com/wp-admin/ch000342.htm">document CH000342</a>. </p>
<p>Format and reinstall Windows on the computer</p>
<p>Finally, if after the above steps you are still unable to gain access to your computer, or if you are unable to use any of the above utilities, unfortunately, your only alternative to getting access to your computer would be to erase everything on the computer and reinstall Windows. Any data you need access to will need to be restored from your backups.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gobal.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gobal.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gobal.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gobal.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gobal.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gobal.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gobal.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gobal.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gobal.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gobal.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gobal.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gobal.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gobal.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gobal.wordpress.com/117/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gobal.wordpress.com&amp;blog=5267733&amp;post=117&amp;subd=gobal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gobal.wordpress.com/2009/07/24/lost-or-forgotten-windows-nt-2000-xp-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0297c69fd9c96acad22a01b84f243dac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gobal</media:title>
		</media:content>
	</item>
		<item>
		<title>Password Protect my files and folders in Windows</title>
		<link>http://gobal.wordpress.com/2009/07/24/password-protect-my-files-and-folders-in-windows/</link>
		<comments>http://gobal.wordpress.com/2009/07/24/password-protect-my-files-and-folders-in-windows/#comments</comments>
		<pubDate>Sat, 25 Jul 2009 04:12:10 +0000</pubDate>
		<dc:creator>Gobalakrishnan</dc:creator>
				<category><![CDATA[Common Computing]]></category>

		<guid isPermaLink="false">http://gobal.wordpress.com/?p=115</guid>
		<description><![CDATA[How do I password protect my files and folders in Windows? Question: How do I password protect my files and folders in Windows? Answer: Tip: Before password protecting any document you may wish to create a backup of the non-password &#8230; <a href="http://gobal.wordpress.com/2009/07/24/password-protect-my-files-and-folders-in-windows/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gobal.wordpress.com&amp;blog=5267733&amp;post=115&amp;subd=gobal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h1>How do I password protect my files and folders in Windows?</h1>
<h2>Question:</h2>
<p>How do I password protect my files and folders in Windows?</p>
<h2>Answer:</h2>
<p><strong>Tip:</strong> Before password protecting any document you may wish to create a backup of the non-password protected folder and files in case you forget the password in the future.</p>
<p>The majority of Microsoft Windows operating systems do not come with a method of password protecting your sensitive files and/or folders. If you&#8217;re using Microsoft <a href="http://gobal.wordpress.com/win3x.htm">Windows 3.x</a>, <a href="http://gobal.wordpress.com/win95.htm">Windows 95</a>, <a href="http://gobal.wordpress.com/win98.htm">Windows 98</a>, you will need to download or purchase a third-party program to password protect your files and folders in Windows; skip down to the <a href="http://gobal.wordpress.com/wp-admin/#other">other security solutions section</a> if you&#8217;re using one of these operating systems.</p>
<p><strong><a href="http://gobal.wordpress.com/wp-admin/#1">Microsoft Windows XP professional users</a><br />
<a href="http://gobal.wordpress.com/wp-admin/#2">Microsoft Windows XP home users<br />
</a><a href="http://gobal.wordpress.com/wp-admin/#other">Other security solutions for protecting your files and folders in Windows<br />
</a><a href="http://gobal.wordpress.com/wp-admin/#final">Things to remember when encrypting or password protecting files and folders</a></strong></p>
<p><a name="1"></a>Microsoft Windows XP professional users</p>
<p>The below steps for encrypting the files on Windows XP professional applies to users who are using a computer that has different accounts. If you&#8217;re using a single account for all users who use the computer you will need to see the below <a href="http://gobal.wordpress.com/wp-admin/#other">other security solutions section</a>.</p>
<ol>
<li>Select the <a href="http://gobal.wordpress.com/jargon/f/folder.htm">folder</a> you wish to encrypt.</li>
<li>Right-click the folder and click <strong>Properties</strong>.</li>
<li>Click the <strong>Advanced</strong> button.</li>
<li>Check &#8220;<strong>Encrypt contents to secure data</strong>&#8221; option.</li>
<li>Click <strong>Apply</strong> and then <strong>Ok</strong>.</li>
</ol>
<p><strong>Encrypt contents to secure data is grayed out</strong></p>
<p>This will be grayed out if you&#8217;re using the home edition of Microsoft Windows XP. See the below steps for securing the contents of your folders in Windows XP home.</p>
<p><strong>Show &#8220;Encrypt&#8221; on the context menu</strong></p>
<p>The newest version of <a href="http://gobal.wordpress.com/jargon/t/tweakui.htm">TweakUI</a> also enables you to show the Encrypt option in the context menu. To do this, follow the below steps.</p>
<ol>
<li><strong>Open TweakUI</strong>. If you do not have TweakUI you can find additional details about getting and installing TweakUI in <a href="http://gobal.wordpress.com/wp-admin/ch000141.htm">document CH000141</a>.</li>
<li>In the TweakUI window, select <strong>Explorer</strong></li>
<li>In the right side of the window under Settings, locate <strong>Show &#8216;Encrypt&#8217; on context menu</strong> and check the box. This option should be below <strong>Prefix &#8216;shortcut to&#8217; on new shortcuts</strong> and above <strong>Show &#8216;View workgroup computers&#8217; in NetPlaces</strong>.</li>
</ol>
<p>If you&#8217;re missing this option, see <a href="http://gobal.wordpress.com/wp-admin/ch000711.htm">document CH000711</a> for additional information.</p>
<p><a name="2"></a>Microsoft Windows XP home users</p>
<ol>
<li>Select the <a href="http://gobal.wordpress.com/jargon/f/folder.htm">folder</a> you wish to encrypt.</li>
<li>Right-click the folder and click <strong>Properties</strong>.</li>
<li>Click the <strong>Sharing tab</strong>.</li>
<li>Check the box <strong>Make this folder private</strong></li>
<li>Click <strong>Apply</strong> and then <strong>Ok</strong>.</li>
</ol>
<p><strong>Make this folder private is grayed out</strong></p>
<p>In order for this option to work in Microsoft Windows XP home you must meet the below requirements.</p>
<ol>
<li>The hard disk drive must be formatted in <a href="http://gobal.wordpress.com/jargon/n/ntfs.htm">NTFS</a> and not FAT32. Additional information about determining the type of file system your hard disk drive is running can be found on <a href="http://gobal.wordpress.com/wp-admin/ch000713.htm">document CH000713</a>.</li>
<li>The folder you&#8217;re attempting to encrypt must be in your own personal folder. For example, if your name is bob, you must be encrypting a folder that is or that is contained within the below folder:
<p>C:\Documents and Settings\Bob\</p>
<p>You cannot encrypt any folders outside of this folder. If you wish to encrypt outside this folder see the below <a href="http://gobal.wordpress.com/wp-admin/#other">other security solutions</a>.</li>
</ol>
<p><a name="other"></a>Other security solutions for protecting your files and folders in Windows</p>
<p><strong>File and folders not frequently used</strong></p>
<p>If you need to password protect files and/or folders that you do not frequently use, one of the simplest ways is to compress the folder and files with a compression utility and password protect the compressed file. However, each time you wish to work or modify the files you will need to uncompress the files using the password.</p>
<p><strong>Windows ME and Windows XP users</strong> &#8211; Microsoft Windows ME and Windows XP come with their own compression utility. This utility can also be used to compress and password protect files.</p>
<p><strong>Tip:</strong> When a file is compressed, users can still view a listing of the files in the compressed file. If you wish for both your file names and the contents to be hidden, move all the files into a single folder and password protect that folder.  </p>
<p><strong>File and folders frequently used or accessed</strong></p>
<p>If you need to password protect and/or encrypt data you frequently use, you will need to install a third-party program that will enable you to protect your files and folders. Below are some free and commercial solutions.</p>
<ul>
<li><a href="http://axcrypt.sourceforge.net/"><strong>AxCrypt</strong></a> &#8211; An excellent free encryption utility that enables users to encrypt all files within a folder and not allow those files to be viewed unless a passphrase (password) is known.</li>
<li><strong><a href="http://www.wincry.com/">WinCry</a></strong> &#8211; A freeware utility that enables your files to be encrypted, secure deletion, as well as other helpful methods of protecting your files.</li>
<li><strong><a href="http://www.winability.com/folderguard/">Folder Guard</a></strong> &#8211; A commercial version of a password protection software that enables you to password protect files, folders, and other Windows resources.</li>
</ul>
<p><a href="http://www.computerhope.com/cgi-bin/google.pl?password+protect+files+and+folders+in+windows">Click here</a> to search for more solutions to password protect files and folders in Windows.</p>
<p><a name="final"></a>Things to remember when encrypting or password protecting files and folders</p>
<ol>
<li>There is no such thing as a 100% protected file. There are numerous tools, utilities, and instructions for how to break a lot of the encryption and passwords on files. However, the protection methods listed above will protect your files from the majority of users who may encounter them. If you&#8217;re working with really sensitive data we suggest a commercial product for protecting your files and data.</li>
<li>Even though a file or folder may be password protected it still can be deleted (unless the program supports the ability to protect files from being deleted). Always remember to backup all your files, even those protected by passwords.</li>
<li>If you forget the password, unless you&#8217;re willing to spend the time attempting to break it or pay someone else to break the password, all your file data will be lost. Unless you&#8217;ve made a backup of the non-password protected data.</li>
</ol>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gobal.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gobal.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gobal.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gobal.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gobal.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gobal.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gobal.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gobal.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gobal.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gobal.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gobal.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gobal.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gobal.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gobal.wordpress.com/115/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gobal.wordpress.com&amp;blog=5267733&amp;post=115&amp;subd=gobal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gobal.wordpress.com/2009/07/24/password-protect-my-files-and-folders-in-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0297c69fd9c96acad22a01b84f243dac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gobal</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL Backup &#8211; Enable Agent XP&#8217;s</title>
		<link>http://gobal.wordpress.com/2009/03/27/sql-backup-enable-agent-xps/</link>
		<comments>http://gobal.wordpress.com/2009/03/27/sql-backup-enable-agent-xps/#comments</comments>
		<pubDate>Sat, 28 Mar 2009 06:00:18 +0000</pubDate>
		<dc:creator>Gobalakrishnan</dc:creator>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[Enable Agent XP's]]></category>
		<category><![CDATA[Schedule SQL Backup]]></category>
		<category><![CDATA[SQL Backup]]></category>

		<guid isPermaLink="false">http://gobal.wordpress.com/?p=104</guid>
		<description><![CDATA[SQL Backup: &#8212;&#8212;&#8212;&#8212;&#8212; When you are think about sql backup, you have lot of options to do within your SQL Studio. Simple &#38; Immediate Backup: &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; This is quite simple and this backup won&#8217;t recur. This is will do the &#8230; <a href="http://gobal.wordpress.com/2009/03/27/sql-backup-enable-agent-xps/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gobal.wordpress.com&amp;blog=5267733&amp;post=104&amp;subd=gobal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>SQL Backup:<br />
&#8212;&#8212;&#8212;&#8212;&#8212;<br />
When you are think about sql backup, you have lot of options to do within your SQL Studio.</p>
<p>Simple &amp; Immediate Backup:<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
This is quite simple and this backup won&#8217;t recur. This is will do the backup for this instance.</p>
<p>Todo this,<br />
-&gt; Extract Database<br />
-&gt; Right click on the database which you want to backup<br />
-&gt; Tasks -&gt; Backup</p>
<p>-&gt; On the Backup Database window show the location and get the backup</p>
<p>Scheduling Backup:<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
This is most used and required one. You can schedule the back up here.</p>
<p>Todo this,<br />
-&gt; In Object Explorer, Extract Management Folder<br />
-&gt; Right Click Maintenance Plans</p>
<p>If you get any error message, that suppose to be a Agent XP&#8217;s issues. You need to enable this by running the following query:</p>
<p>sp_configure &#8216;show advanced options&#8217;, 1;<br />
GO<br />
RECONFIGURE;<br />
GO<br />
sp_configure &#8216;Agent XPs&#8217;, 1;<br />
GO<br />
RECONFIGURE<br />
GO</p>
<p>Once you done this you will get the wizard and follow the wizard schedule your backup.</p>
<p>Article Based: SQL Server 2005<br />
Backup Tested: Windows Server 2003</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gobal.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gobal.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gobal.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gobal.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gobal.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gobal.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gobal.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gobal.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gobal.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gobal.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gobal.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gobal.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gobal.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gobal.wordpress.com/104/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gobal.wordpress.com&amp;blog=5267733&amp;post=104&amp;subd=gobal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gobal.wordpress.com/2009/03/27/sql-backup-enable-agent-xps/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0297c69fd9c96acad22a01b84f243dac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gobal</media:title>
		</media:content>
	</item>
		<item>
		<title>Add Favicon to Your Web</title>
		<link>http://gobal.wordpress.com/2009/03/09/add-favicon-to-your-web/</link>
		<comments>http://gobal.wordpress.com/2009/03/09/add-favicon-to-your-web/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 04:33:20 +0000</pubDate>
		<dc:creator>Gobalakrishnan</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[favicon]]></category>
		<category><![CDATA[icon]]></category>
		<category><![CDATA[url icon]]></category>
		<category><![CDATA[web icon]]></category>

		<guid isPermaLink="false">http://gobal.wordpress.com/?p=94</guid>
		<description><![CDATA[  What is favicon? &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- A favicon (short for favorites icon), also known as a website icon, shortcut icon, url icon, or bookmark icon is a 16&#215;16 pixel square icon associated with a particular website or webpage. A web designer &#8230; <a href="http://gobal.wordpress.com/2009/03/09/add-favicon-to-your-web/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gobal.wordpress.com&amp;blog=5267733&amp;post=94&amp;subd=gobal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p> </p>
<div id="attachment_95" class="wp-caption alignnone" style="width: 26px"><img class="size-full wp-image-95" title="favicon" src="http://gobal.files.wordpress.com/2009/03/myfavicon.jpeg?w=640" alt="favicon.cio"   /><p class="wp-caption-text">favicon.ico</p></div>
<p>What is favicon?<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
A favicon (short for favorites icon), also known as a website icon, shortcut icon, url icon, or bookmark icon is a 16&#215;16 pixel square icon associated with a particular website or webpage. A web designer can create such an icon and install it into a website (or webpage) by several means, and most graphical web browsers will then make use of it. Browsers that provide favicon support typically display a page&#8217;s favicon in the browser&#8217;s Address bar and next to the page&#8217;s name in a list of bookmarks. Browsers that support a tabbed document interface typically show a page&#8217;s favicon next to the page&#8217;s title. The Microsoft Windows Shell also uses favicons to represent &#8220;Internet shortcuts&#8221; to web pages</p>
<p>Use of favicon:<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
-&gt; It doesn&#8217;t provide anything better in functionality<br />
-&gt; But instead of showing the internet explorers icon in the Address bar and your Tab, You can have your own icon<br />
-&gt; This podcasts your logo with more effective way</p>
<p>Add favicon.ico to your web<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
-&gt; The image size should be 16X16 (will be better)<br />
-&gt; The image should be converted from your own format(png,jpg,gif) to .ico<br />
-&gt; You can use the following tools to make your image as favicon.ico &#8211; <a href="http://www.favicon.cc">http://www.favicon.cc</a>, <a href="http://www.favicon.co.uk/">http://www.favicon.co.uk/</a>, <a href="http://www.favicongenerator.com/">http://www.favicongenerator.com/</a> or you can use own paint tool, if you have such a advanced paint tool.<br />
-&gt; Place your favicon image to your web directory<br />
-&gt; Add the following tag &#8220;&lt;link rel=&#8221;shortcut icon&#8221; href=&#8221;<a href="http://www.sellwincreation.com/favicon.ico">http://www.sellwincreation.com/favicon.ico</a>&#8221; /&gt;&#8221; inside the &lt;head&gt;&lt;/head&gt; tag</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gobal.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gobal.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gobal.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gobal.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gobal.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gobal.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gobal.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gobal.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gobal.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gobal.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gobal.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gobal.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gobal.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gobal.wordpress.com/94/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gobal.wordpress.com&amp;blog=5267733&amp;post=94&amp;subd=gobal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gobal.wordpress.com/2009/03/09/add-favicon-to-your-web/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0297c69fd9c96acad22a01b84f243dac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gobal</media:title>
		</media:content>

		<media:content url="http://gobal.files.wordpress.com/2009/03/myfavicon.jpeg" medium="image">
			<media:title type="html">favicon</media:title>
		</media:content>
	</item>
		<item>
		<title>Block Internet Access Using Content Advisor</title>
		<link>http://gobal.wordpress.com/2009/03/08/block-internet-access-using-content-advisor/</link>
		<comments>http://gobal.wordpress.com/2009/03/08/block-internet-access-using-content-advisor/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 05:49:37 +0000</pubDate>
		<dc:creator>Gobalakrishnan</dc:creator>
				<category><![CDATA[Common Computing]]></category>
		<category><![CDATA[Block Internet]]></category>
		<category><![CDATA[enable content advisor]]></category>
		<category><![CDATA[limit internet]]></category>
		<category><![CDATA[Password Protect Internet Explorer]]></category>

		<guid isPermaLink="false">http://gobal.wordpress.com/?p=82</guid>
		<description><![CDATA[Blocking Internet Access through Content Advisor: &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; We have seen before about blocking internet through very simple method like host editing. Here we have another option called &#8220;Content Advisor&#8221;, which is better than all other methods. And basic security is &#8230; <a href="http://gobal.wordpress.com/2009/03/08/block-internet-access-using-content-advisor/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gobal.wordpress.com&amp;blog=5267733&amp;post=82&amp;subd=gobal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Blocking Internet Access through Content Advisor:<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>We have seen before about blocking internet through very simple method like host editing. Here we have another option called &#8220;Content Advisor&#8221;, which is better than all other methods. And basic security is ensured by this method. The only drawback is, it will works fine with only Internet Explorer. Other Browsers we have to check it about equivalent feature.</p>
<p>To enable this feature, You need to log on using administrator account. Follow the below steps to activate Content Advisor:</p>
<p>Step1: Open Internet Explorer<br />
Step2: Go to Tools-&gt;Internet Options. Click Content Tab<br />
Step3: On Content Advisor, Click Settings and General Tab<br />
Step4: On General Tab set supervisor password, click ok and close<br />
Step5: Again on Internet Options, below Content Advisor click the Enable Button. It will ask you for supervisor password which you set it before. Click Ok and Clsoe.<br />
Step6: Restart the Internet Explorer.</p>
<p>So thats it. Now if you try to access any of the website, it will block you and ask for supervisor password to access that particular page.</p>
<p>Check this blog in certain period. I will update you about more security tips. Thank you!!!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gobal.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gobal.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gobal.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gobal.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gobal.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gobal.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gobal.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gobal.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gobal.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gobal.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gobal.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gobal.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gobal.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gobal.wordpress.com/82/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gobal.wordpress.com&amp;blog=5267733&amp;post=82&amp;subd=gobal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gobal.wordpress.com/2009/03/08/block-internet-access-using-content-advisor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0297c69fd9c96acad22a01b84f243dac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gobal</media:title>
		</media:content>
	</item>
		<item>
		<title>Thumbs.db</title>
		<link>http://gobal.wordpress.com/2009/03/08/thumbsdb/</link>
		<comments>http://gobal.wordpress.com/2009/03/08/thumbsdb/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 05:37:52 +0000</pubDate>
		<dc:creator>Gobalakrishnan</dc:creator>
				<category><![CDATA[Common Computing]]></category>
		<category><![CDATA[Cache File]]></category>
		<category><![CDATA[Image Cache]]></category>
		<category><![CDATA[Thumbs]]></category>
		<category><![CDATA[Thumbs.db]]></category>

		<guid isPermaLink="false">http://gobal.wordpress.com/?p=78</guid>
		<description><![CDATA[I&#8217;m sure everyone using Windows XP, VISTA or FTP Server has seen a small file in some directories called thumbs.db. Many of thm may fed up with this file. This thumbs.db will be created, where you have images or other multimedia files. Although &#8230; <a href="http://gobal.wordpress.com/2009/03/08/thumbsdb/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gobal.wordpress.com&amp;blog=5267733&amp;post=78&amp;subd=gobal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;"><span style="font-size:x-small;font-family:Arial;"><img class="size-thumbnail wp-image-79  aligncenter" title="Thumbs" src="http://gobal.files.wordpress.com/2009/03/thumbdb.gif?w=128&#038;h=59" alt="Thumbs.db" width="128" height="59" /></span></p>
<p><span style="font-size:x-small;font-family:Arial;">I&#8217;m sure everyone using Windows XP, VISTA or FTP Server has seen a small file in some directories called thumbs.db. Many of thm may fed up with this file. This thumbs.db will be created, where you have images or other multimedia files. Although you delete this file, It will create it back. Well! So what is Thumbs.db? </span></p>
<p><span style="font-size:x-small;font-family:Arial;">Thumbs.db is a cache of the thumbnail pictures in a directory. It speeds up the showing of thumbnails when you are viewing a folder in Thumbnail view. It just for Thumbnail View of your folder and saves the time to recount the total number of pictures and loading thumbnail view.</span></p>
<p><span style="font-size:x-small;font-family:Arial;">To turn this feature off, do the following:</span></p>
<p><span style="font-size:x-small;font-family:Arial;">1) Open My Computer<br />
2) Click on Tools<br />
3) Click on Folder Options<br />
4) Click on the View Tab<br />
5) Place a check in the option &#8220;Do not cache thumbnails&#8221;<br />
6) Click Ok<br />
7) Close My Computer</span></p>
<p><span style="font-size:x-small;font-family:Arial;">The only drawback of the thumbs.db file is that it takes up disk space. Although this space is very small in most cases, if you have a lot of thumbs.db files littering your hard drive you may be able to save some valuable space by removing them. Follow the steps below to turn off the creation of this file and delete the thumbs.db files that are on your hard drive.</span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gobal.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gobal.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gobal.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gobal.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gobal.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gobal.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gobal.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gobal.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gobal.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gobal.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gobal.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gobal.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gobal.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gobal.wordpress.com/78/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gobal.wordpress.com&amp;blog=5267733&amp;post=78&amp;subd=gobal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gobal.wordpress.com/2009/03/08/thumbsdb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0297c69fd9c96acad22a01b84f243dac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gobal</media:title>
		</media:content>

		<media:content url="http://gobal.files.wordpress.com/2009/03/thumbdb.gif?w=128" medium="image">
			<media:title type="html">Thumbs</media:title>
		</media:content>
	</item>
		<item>
		<title>Send Form Information Via Email &#8211; HTML</title>
		<link>http://gobal.wordpress.com/2009/02/19/send-form-information-via-email-html/</link>
		<comments>http://gobal.wordpress.com/2009/02/19/send-form-information-via-email-html/#comments</comments>
		<pubDate>Thu, 19 Feb 2009 10:27:51 +0000</pubDate>
		<dc:creator>Gobalakrishnan</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[Send a Form to email in HTML website]]></category>
		<category><![CDATA[Send Email from HTML]]></category>
		<category><![CDATA[Use Forms in HTML]]></category>

		<guid isPermaLink="false">http://gobal.wordpress.com/?p=70</guid>
		<description><![CDATA[To send a Form Via Email in your WebPage: &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; This below page will allow you to send a user form via email to us. You must the place which is action=&#8221;", This will vary according to the ISP. The &#8230; <a href="http://gobal.wordpress.com/2009/02/19/send-form-information-via-email-html/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gobal.wordpress.com&amp;blog=5267733&amp;post=70&amp;subd=gobal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>To send a Form Via Email in your WebPage:<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>This below page will allow you to send a user form via email to us. You must the place which is action=&#8221;", This will vary according to the ISP. The below will work, if you hosted with Yahoo Server. For Godaddy you may have to use the built in script like gdform.aspx which comes along with the host. Like each provider there would be some script or any solution would be available to send email.</p>
<p>&lt;html&gt;<br />
&lt;head&gt;&lt;/head&gt;<br />
&lt;body&gt;</p>
<p>&lt;h3&gt;E-Mail Form:&lt;/h3&gt;   <br />
&lt;form method=&#8221;post&#8221; action=&#8221;<a href="http://webhosting.yahoo.com/forms?login=YourLoginName">http://webhosting.yahoo.com/forms?login=YourLoginName</a>&#8220;&gt;<br />
&lt;input type=&#8221;hidden&#8221; name=&#8221;Subject&#8221; value=&#8221;Submission From Intranet&#8221;/&gt;<br />
&lt;input type=&#8221;hidden&#8221; name=&#8221;Redirect&#8221; value=&#8221;ThankYou.aspx&#8221;/&gt;<br />
&lt;span class=&#8221;style4&#8243;&gt;<br />
&lt;font color=&#8221;#0000FF&#8221;&gt;Your Name:&lt;/font&gt;&lt;/span&gt;&lt;br&gt;<br />
&lt;input type=&#8221;text&#8221; name=&#8221;Name&#8221; value=&#8221;" size=&#8221;20&#8243; style=&#8221;width: 254px&#8221;&gt;&lt;br/&gt;<br />
&lt;span class=&#8221;style4&#8243;&gt;&amp;nbsp;&lt;font color=&#8221;#0000FF&#8221;&gt;Your E-Mail:&lt;/font&gt;&lt;/span&gt;&lt;br/&gt;<br />
&lt;input type=&#8221;text&#8221; name=&#8221;Email&#8221; value=&#8221;" size=&#8221;20&#8243; style=&#8221;width: 254px&#8221;&gt;<br />
&lt;span class=&#8221;style4&#8243;&gt;<br />
&lt;br/&gt;<br />
&lt;font color=&#8221;#0000FF&#8221;&gt;Message:&lt;/font&gt;&lt;/span&gt;&lt;br&gt;<br />
&lt;input type=&#8221;text&#8221; name=&#8221;Comment&#8221; value=&#8221;" size=&#8221;40&#8243; style=&#8221;width: 254px; height: 79px&#8221;&gt;&lt;br/&gt;&lt;br/&gt;<br />
&lt;font color=&#8221;#000080&#8243;&gt;<br />
&lt;input type=&#8221;submit&#8221; value=&#8221;Send&#8221; style=&#8221;background-color:blue;width:76px&#8221;&gt;&lt;/font&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;<br />
&lt;font color=&#8221;#000080&#8243;&gt;<br />
&lt;input type=&#8221;reset&#8221; value=&#8221;Reset&#8221; style=&#8221;background-color:blue;width:76px&#8221;&gt;&lt;/font&gt;<br />
&lt;/form&gt;</p>
<p>&lt;/body&gt;&lt;/html&gt;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gobal.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gobal.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gobal.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gobal.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gobal.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gobal.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gobal.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gobal.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gobal.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gobal.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gobal.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gobal.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gobal.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gobal.wordpress.com/70/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gobal.wordpress.com&amp;blog=5267733&amp;post=70&amp;subd=gobal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gobal.wordpress.com/2009/02/19/send-form-information-via-email-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0297c69fd9c96acad22a01b84f243dac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gobal</media:title>
		</media:content>
	</item>
	</channel>
</rss>
