<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>AskSHANK.com - Finding solutions to your IT problems</title>
	
	<link>http://www.askshank.com</link>
	<description>...Just ask shank</description>
	<lastBuildDate>Fri, 02 Jul 2010 16:04:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/askshank/Xgnk" /><feedburner:info uri="askshank/xgnk" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><geo:lat>43.078646</geo:lat><geo:long>-89.377276</geo:long><item>
		<title>Installing Subversion on Windows</title>
		<link>http://feedproxy.google.com/~r/askshank/Xgnk/~3/vCDZYcDLpO0/</link>
		<comments>http://www.askshank.com/2010/07/installing-subversion-on-windows/#comments</comments>
		<pubDate>Fri, 02 Jul 2010 16:04:18 +0000</pubDate>
		<dc:creator>Shankaran</dc:creator>
				<category><![CDATA[windows 2003]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[ssl]]></category>
		<category><![CDATA[subversion]]></category>

		<guid isPermaLink="false">http://www.askshank.com/?p=231</guid>
		<description><![CDATA[Subversion is an open-source version control system. It is used in production by many companies. There are other software products such as Collabnet that utilize this with it&#8217;s own features. It is supposed on windows, unix, and mac os x. Today we&#8217;re going to install Subversion on a windows environment. THE FOLLOWING ARE THE SYSTEM [...]


Related posts:<ol><li><a href='http://www.askshank.com/2008/02/apache-web-server-on-windows-how-to-password-protect-directory/' rel='bookmark' title='Permanent Link: Apache web server on windows, how to password protect directory'>Apache web server on windows, how to password protect directory</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Subversion is an open-source version control system. It is used in production by many companies. There are other software products such as Collabnet that utilize this with it&#8217;s own features. It is supposed on windows, unix, and mac os x. Today we&#8217;re going to install Subversion on a windows environment.</p>
<p style="padding-left: 30px;"><strong>THE FOLLOWING ARE THE SYSTEM SPECS I AM  USING<br />
</strong></p>
<ul style="padding-left: 30px;">
<li>Microsoft Windows 2008 x64 Enterprise Edition</li>
<li>1GB RAM</li>
<li>25GB HD space</li>
<li>Apache 2.2.11</li>
<li>Subversion 1.6.5</li>
</ul>
<p style="padding-left: 30px;"><strong>FILE PREREQUISITES<br />
</strong></p>
<ul style="padding-left: 30px;">
<li><a href="http://www.askshank.com/Downloads/Subversion/apache_2.2.11-win32-x86-openssl-0.9.8i.msi">Apache 2.2.11 with open SSL support</a></li>
</ul>
<ul style="padding-left: 30px;">
<li> <a href="http://www.askshank.com/Downloads/Subversion/Setup-Subversion-1.6.5.msi">Subversion 1.6.5</a></li>
</ul>
<p style="padding-left: 30px;">Now, I am  using these specific versions that you can download and use. But if you want to get the latest versions, then you will want to go to the following sites.</p>
<p style="padding-left: 30px;">http://httpd.apache.org/</p>
<p style="padding-left: 30px;">http://subversion.apache.org/</p>
<p style="padding-left: 30px;"><strong>FILE DIRECTORY LOCATIONS</strong><br />
Apache: E:\apache2.2<br />
Subversion: E:\subversion<br />
Repositories: E:\SVN<br />
Password file: E:\subversion\subpass<br />
Access permissions: e:\subversion\svn-acl</p>
<p style="padding-left: 30px;"><strong>INSTALLATION</strong></p>
<ol style="padding-left: 30px;">
<li>Install Apache</li>
<li>Install Subversion</li>
<li>Copy the following files from the E:\subversion\Bin directory to E:\apache2.2\modules
<ul>
<li>mod_authz_svn.so</li>
<li>mod_dav_svn.so</li>
</ul>
</li>
<li>Edit E:\apache2.2\conf\httpd.conf
<ul>
<li>Uncomment the line</li>
<pre class="brush: php;">loadmodule dav_module</pre>
<li>Add the following 2 lines in the same section
<pre class="brush: php;">LoadModule  dav_svn_module modules/mod_dav_svn.so
LoadModule authz_svn_module modules/mod_authz_svn.so</pre>
</li>
<li>Add the following to the end of the file
<ul>
<pre class="brush: php;">include e:/subversion/subversion.conf</pre>
</ul>
</li>
</ul>
</li>
<li>Create the directory for the repositories
<ul>
<li>E:\SVN</li>
</ul>
</li>
<li>Create a TEST project1
<ul>
<li>svnadmin create e:\svn\project1</li>
</ul>
</li>
<li>Add a test user to the project1 repository
<ul>
<li>e:\apache2.2\bin\htpasswd -cm e:\subversion subpass test</li>
<li>The first time you run this command you use -c because it creates the password file</li>
<li>-m is the option that tells htpasswd command to use MD5 algorithm for encryption</li>
</ul>
</li>
<li>Now create e:\subversion\svn-acl to hold access permissions
<ol>
<li>Add the following into this file</li>
<pre class="brush: php;">#
# specify groups here
#

[groups]
team1 = test

#
# team1 group has a read/write access to test repository
# all subdirectories
# all others have read access only
#

[test:/]
@team1 = rw
* = r
</pre>
</ol>
</li>
<li>Now create e:\subversion\subversion.conf which will link subversion to apache</li>
<pre class="brush: php;">&lt;Location /project1&gt;
  DAV svn
  SVNPath e:/svn/project1

  AuthType Basic
  AuthName &quot;Subversion test project repository&quot;
  AuthUserFile e:/subversion/subpass

  Require valid-user

  AuthzSVNAccessFile e:/subversion/svn-acl
&lt;/Location&gt;
</pre>
<li>Restart Apache</li>
</ol>


<p>Related posts:<ol><li><a href='http://www.askshank.com/2008/02/apache-web-server-on-windows-how-to-password-protect-directory/' rel='bookmark' title='Permanent Link: Apache web server on windows, how to password protect directory'>Apache web server on windows, how to password protect directory</a></li>
</ol></p><img src="http://feeds.feedburner.com/~r/askshank/Xgnk/~4/vCDZYcDLpO0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.askshank.com/2010/07/installing-subversion-on-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.askshank.com/2010/07/installing-subversion-on-windows/</feedburner:origLink></item>
		<item>
		<title>How to create multiple lines in a single cell in excel</title>
		<link>http://feedproxy.google.com/~r/askshank/Xgnk/~3/0yLRX0nYnec/</link>
		<comments>http://www.askshank.com/2010/06/how-to-create-multiple-lines-in-a-single-cell-in-excel/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 13:44:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Microsoft Office]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[excel]]></category>

		<guid isPermaLink="false">http://www.askshank.com/?p=282</guid>
		<description><![CDATA[I&#8217;m sure there have been many times where you wanted to insert a line in an excel spreadsheet. In Word you were used to using shift+enter to give you a once space line. For excel it is different. Use ALT + ENTER Related posts:Word 2007 always save as 2003 format Remove multiple files/folders from DOS


Related posts:<ol><li><a href='http://www.askshank.com/2009/04/word-2007-always-save-as-2003-format/' rel='bookmark' title='Permanent Link: Word 2007 always save as 2003 format'>Word 2007 always save as 2003 format</a></li>
<li><a href='http://www.askshank.com/2009/01/remove-multiple-filesfolders-from-dos/' rel='bookmark' title='Permanent Link: Remove multiple files/folders from DOS'>Remove multiple files/folders from DOS</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m sure there have been many times where you wanted to insert a line in an excel spreadsheet. In Word you were used to using shift+enter to give you a once space line. For excel it is different.</p>
<p>Use ALT + ENTER</p>


<p>Related posts:<ol><li><a href='http://www.askshank.com/2009/04/word-2007-always-save-as-2003-format/' rel='bookmark' title='Permanent Link: Word 2007 always save as 2003 format'>Word 2007 always save as 2003 format</a></li>
<li><a href='http://www.askshank.com/2009/01/remove-multiple-filesfolders-from-dos/' rel='bookmark' title='Permanent Link: Remove multiple files/folders from DOS'>Remove multiple files/folders from DOS</a></li>
</ol></p><img src="http://feeds.feedburner.com/~r/askshank/Xgnk/~4/0yLRX0nYnec" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.askshank.com/2010/06/how-to-create-multiple-lines-in-a-single-cell-in-excel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.askshank.com/2010/06/how-to-create-multiple-lines-in-a-single-cell-in-excel/</feedburner:origLink></item>
		<item>
		<title>Check for failed drive on HP-UX</title>
		<link>http://feedproxy.google.com/~r/askshank/Xgnk/~3/l3FLxX5P6jE/</link>
		<comments>http://www.askshank.com/2010/06/check-for-failed-drive-on-hp-ux/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 13:43:34 +0000</pubDate>
		<dc:creator>Shankaran</dc:creator>
				<category><![CDATA[unix]]></category>
		<category><![CDATA[hp ux]]></category>

		<guid isPermaLink="false">http://www.askshank.com/?p=284</guid>
		<description><![CDATA[I wanted to see if I had any failed drives on my HP-UX software raid mirrors. The command to use is. vgdisplay -v To narrow it down you can use vgdisplay -v &#124;grep -i &#8220;LV Status&#8221; You should see a result of available/syncd if things are okay. available/stale means you got an issue. Related posts:Dell [...]


Related posts:<ol><li><a href='http://www.askshank.com/2009/07/dell-powerconnect-6248-port-monitor/' rel='bookmark' title='Permanent Link: Dell PowerConnect 6248 port monitor'>Dell PowerConnect 6248 port monitor</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I wanted to see if I had any failed drives on my HP-UX software raid mirrors. The command to use is.</p>
<p>vgdisplay -v</p>
<p>To narrow it down you can use</p>
<p>vgdisplay -v |grep -i &#8220;LV Status&#8221;</p>
<p>You should see a result of available/syncd if things are okay. available/stale means you got an issue.</p>


<p>Related posts:<ol><li><a href='http://www.askshank.com/2009/07/dell-powerconnect-6248-port-monitor/' rel='bookmark' title='Permanent Link: Dell PowerConnect 6248 port monitor'>Dell PowerConnect 6248 port monitor</a></li>
</ol></p><img src="http://feeds.feedburner.com/~r/askshank/Xgnk/~4/l3FLxX5P6jE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.askshank.com/2010/06/check-for-failed-drive-on-hp-ux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.askshank.com/2010/06/check-for-failed-drive-on-hp-ux/</feedburner:origLink></item>
		<item>
		<title>UNMOUNTABLE_BOOT_VOLUME Blue screen</title>
		<link>http://feedproxy.google.com/~r/askshank/Xgnk/~3/r-ziyz83FSs/</link>
		<comments>http://www.askshank.com/2010/04/unmountable_boot_volume-blue-screen/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 13:22:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[windows xp]]></category>
		<category><![CDATA[crash]]></category>

		<guid isPermaLink="false">http://www.askshank.com/?p=249</guid>
		<description><![CDATA[The infamous blue screen of death (BSOD) is what appears when you turn on your computer. Immediately you suspect a hard drive failure or data loss. This is not necessarily true. Remember, a BSOD is given by windows. So it must have at least read the hard drive to get the BSOD to show. So [...]


Related posts:<ol><li><a href='http://www.askshank.com/2010/03/windows-program-crashes-as-soon-as-you-run-it/' rel='bookmark' title='Permanent Link: Windows program crashes as soon as you run it'>Windows program crashes as soon as you run it</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>The infamous blue screen of death (BSOD) is what appears when you turn on your computer. Immediately you suspect a hard drive failure or data loss. This is not necessarily true. Remember, a BSOD is given by windows. So it must have at least read the hard drive to get the BSOD to show. So what do we do to try and fix this error.</p>
<p>You need your Windows XP CD handy</p>
<ol>
<li>Boot with Windows XP CD</li>
<li>After the CD loads, press R to repair</li>
<li>In the command prompt, enter <em>chkdsk /r</em></li>
<li>When complete, type in <em>exit</em> and reboot</li>
</ol>
<p>If this fails, then check out this software, <a href="http://www.runtime.org" target="_blank">getdataback </a>for about $80. I&#8217;ve used it a few times, and it works wonders. But, you&#8217;re disk has to be somewhat accessible. My windows machine was unable to access the drive. Whenever you click on it in my computer, it says it needs to be formatted. So this software was able to restore my data.</p>


<p>Related posts:<ol><li><a href='http://www.askshank.com/2010/03/windows-program-crashes-as-soon-as-you-run-it/' rel='bookmark' title='Permanent Link: Windows program crashes as soon as you run it'>Windows program crashes as soon as you run it</a></li>
</ol></p><img src="http://feeds.feedburner.com/~r/askshank/Xgnk/~4/r-ziyz83FSs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.askshank.com/2010/04/unmountable_boot_volume-blue-screen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.askshank.com/2010/04/unmountable_boot_volume-blue-screen/</feedburner:origLink></item>
		<item>
		<title>Free diskimage utility</title>
		<link>http://feedproxy.google.com/~r/askshank/Xgnk/~3/jtaj9INhVPw/</link>
		<comments>http://www.askshank.com/2010/04/free-diskimage-utility/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 15:00:53 +0000</pubDate>
		<dc:creator>Shankaran</dc:creator>
				<category><![CDATA[applications]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://www.askshank.com/?p=251</guid>
		<description><![CDATA[If you&#8217;re a nerd, you are familiar with Symantec Ghost. There is a product out there that everything and more. PING. This software is a bootable Linux OS, and allows you to backup and restore partitions. You can do this locally, or from a network share. PXE and RIS environments are supported. Don&#8217;t worry if [...]


Related posts:<ol><li><a href='http://www.askshank.com/2010/02/great-free-open-source-monitoring/' rel='bookmark' title='Permanent Link: Great Free Open Source Monitoring'>Great Free Open Source Monitoring</a></li>
<li><a href='http://www.askshank.com/2008/10/arcgis-unable-to-locate-source-error-1706/' rel='bookmark' title='Permanent Link: ArcGIS Unable to locate source Error 1706'>ArcGIS Unable to locate source Error 1706</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re a nerd, you are familiar with Symantec Ghost. There is a product out there that everything and more. PING. This software is a bootable Linux OS, and allows you to backup and restore partitions. You can do this locally, or from a network share. PXE and RIS environments are supported. Don&#8217;t worry if your hard drive is large. CD and DVD disk spanning is supported. </p>
<p>Definitely worth checking out. It&#8217;s <a href="http://ping.windowsdream.com/ping.html">here</a></p>


<p>Related posts:<ol><li><a href='http://www.askshank.com/2010/02/great-free-open-source-monitoring/' rel='bookmark' title='Permanent Link: Great Free Open Source Monitoring'>Great Free Open Source Monitoring</a></li>
<li><a href='http://www.askshank.com/2008/10/arcgis-unable-to-locate-source-error-1706/' rel='bookmark' title='Permanent Link: ArcGIS Unable to locate source Error 1706'>ArcGIS Unable to locate source Error 1706</a></li>
</ol></p><img src="http://feeds.feedburner.com/~r/askshank/Xgnk/~4/jtaj9INhVPw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.askshank.com/2010/04/free-diskimage-utility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.askshank.com/2010/04/free-diskimage-utility/</feedburner:origLink></item>
		<item>
		<title>How to list user’s domain group memberships</title>
		<link>http://feedproxy.google.com/~r/askshank/Xgnk/~3/PM6zlqenGQM/</link>
		<comments>http://www.askshank.com/2010/03/how-to-list-users-domain-group-memberships/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 14:30:15 +0000</pubDate>
		<dc:creator>Shankaran</dc:creator>
				<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Server 2008]]></category>
		<category><![CDATA[vista]]></category>
		<category><![CDATA[windows 2003]]></category>
		<category><![CDATA[windows xp]]></category>

		<guid isPermaLink="false">http://www.askshank.com/?p=247</guid>
		<description><![CDATA[Today I had to figure out what domain groups a user was a part of.  I had to find out if a particular user was part of a specific domain group or not, so that I could verify if that group was part of the server&#8217;s local administrators group. And if it wasn&#8217;t, then I [...]


Related posts:<ol><li><a href='http://www.askshank.com/2008/10/how-to-force-group-policy/' rel='bookmark' title='Permanent Link: How to force group policy'>How to force group policy</a></li>
<li><a href='http://www.askshank.com/2008/06/the-computer-did-not-resync-because-no-time-date-was-available/' rel='bookmark' title='Permanent Link: The computer did not resync because no time date was available'>The computer did not resync because no time date was available</a></li>
<li><a href='http://www.askshank.com/2008/09/esri-arcgis-93-windows-server-2008-unable-to-change-user-store/' rel='bookmark' title='Permanent Link: ESRI ArcGIS 9.3 Windows Server 2008 Unable to change user store'>ESRI ArcGIS 9.3 Windows Server 2008 Unable to change user store</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Today I had to figure out what domain groups a user was a part of.  I had to find out if a particular user was part of a specific domain group or not, so that I could verify if that group was part of the server&#8217;s local administrators group. And if it wasn&#8217;t, then I would add that user specifically. Yeah I could explicitly list the user regardless, but I was looking for neatness and not redundancy of privileges. I didn&#8217;t  have access to the Active Directory Users and Computers MMC so I need another way.</p>
<p>A great command line tool to know is GPRESULT.EXE.  This tool querys the Resultant Set of Policy (RSoP).  So what is RSoP? Glad you asked. Basically, this tool querys group policy settings. You can use this tool to see how group policy affects a certain user or certain machine. To run rsop, just run rsop from the command line or run line.</p>
<p>Now back to gpresult. Running just gpresult.exe will give you the list of options. If you are on the computer and logged in as the user you want to check the domain groups, then the only command you would need to run is gpresult /r</p>


<p>Related posts:<ol><li><a href='http://www.askshank.com/2008/10/how-to-force-group-policy/' rel='bookmark' title='Permanent Link: How to force group policy'>How to force group policy</a></li>
<li><a href='http://www.askshank.com/2008/06/the-computer-did-not-resync-because-no-time-date-was-available/' rel='bookmark' title='Permanent Link: The computer did not resync because no time date was available'>The computer did not resync because no time date was available</a></li>
<li><a href='http://www.askshank.com/2008/09/esri-arcgis-93-windows-server-2008-unable-to-change-user-store/' rel='bookmark' title='Permanent Link: ESRI ArcGIS 9.3 Windows Server 2008 Unable to change user store'>ESRI ArcGIS 9.3 Windows Server 2008 Unable to change user store</a></li>
</ol></p><img src="http://feeds.feedburner.com/~r/askshank/Xgnk/~4/PM6zlqenGQM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.askshank.com/2010/03/how-to-list-users-domain-group-memberships/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.askshank.com/2010/03/how-to-list-users-domain-group-memberships/</feedburner:origLink></item>
		<item>
		<title>How to disable Internet Explorer Enhanced Security Configuration (IE ESC) in Windows Server 2003/2008</title>
		<link>http://feedproxy.google.com/~r/askshank/Xgnk/~3/WsBdvWzkrVA/</link>
		<comments>http://www.askshank.com/2010/03/how-to-disable-internet-explorer-enhanced-security-configuration-ie-esc-in-windows-server-20032008/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 19:56:47 +0000</pubDate>
		<dc:creator>Shankaran</dc:creator>
				<category><![CDATA[Windows Server 2008]]></category>
		<category><![CDATA[windows 2003]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.askshank.com/?p=245</guid>
		<description><![CDATA[Windows Server comes with Internet Explorer Enhanced Security Configuration enabled by default for both users and administrators. It is annoying. Its purpose is to prevent scripts and certain content to decrease server threat. But having this enabled, you may see some web sites that fail to load. I personally disable this, because I don&#8217;t use [...]


Related posts:<ol><li><a href='http://www.askshank.com/2008/06/arcgis-server-issues-not-loading-with-internet-explorer-7/' rel='bookmark' title='Permanent Link: ArcGIS Server issues, not loading with Internet Explorer 7'>ArcGIS Server issues, not loading with Internet Explorer 7</a></li>
<li><a href='http://www.askshank.com/2008/09/esri-arcgis-93-windows-server-2008-unable-to-change-user-store/' rel='bookmark' title='Permanent Link: ESRI ArcGIS 9.3 Windows Server 2008 Unable to change user store'>ESRI ArcGIS 9.3 Windows Server 2008 Unable to change user store</a></li>
<li><a href='http://www.askshank.com/2008/02/slow-rdp-into-windows-server-2003-sp2-x64-using-vista-64/' rel='bookmark' title='Permanent Link: Slow RDP into Windows Server 2003 SP2 x64 using Vista 64'>Slow RDP into Windows Server 2003 SP2 x64 using Vista 64</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Windows Server comes with Internet Explorer Enhanced Security Configuration enabled by default for both users and administrators. It is annoying. Its purpose is to prevent scripts and certain content to decrease server threat. But having this enabled, you may see some web sites that fail to load. I personally disable this, because I don&#8217;t use my servers to browse the web. Well, I do, but only for testing say a web server on the local server.</p>
<p><strong>To uninstall this in Windows 2003, do the following:</strong></p>
<p>1) Goto Control Panel</p>
<p>2) Click Add or Remove Programs</p>
<p>3) Click Add Remove Windows Components</p>
<p>4) Uncheck Internet Explorer Enhanced Security Configuration</p>
<p>5) Click Next</p>
<p><strong>In 2008, you can disable it for users and/or administrators</strong></p>
<p>1) Goto Server Manager</p>
<p>2) Look for Security Information on the right hand pane</p>
<p>3) Click on Configure IE ESC</p>
<p>5) Select users or administrators</p>
<p>6) Click Ok</p>


<p>Related posts:<ol><li><a href='http://www.askshank.com/2008/06/arcgis-server-issues-not-loading-with-internet-explorer-7/' rel='bookmark' title='Permanent Link: ArcGIS Server issues, not loading with Internet Explorer 7'>ArcGIS Server issues, not loading with Internet Explorer 7</a></li>
<li><a href='http://www.askshank.com/2008/09/esri-arcgis-93-windows-server-2008-unable-to-change-user-store/' rel='bookmark' title='Permanent Link: ESRI ArcGIS 9.3 Windows Server 2008 Unable to change user store'>ESRI ArcGIS 9.3 Windows Server 2008 Unable to change user store</a></li>
<li><a href='http://www.askshank.com/2008/02/slow-rdp-into-windows-server-2003-sp2-x64-using-vista-64/' rel='bookmark' title='Permanent Link: Slow RDP into Windows Server 2003 SP2 x64 using Vista 64'>Slow RDP into Windows Server 2003 SP2 x64 using Vista 64</a></li>
</ol></p><img src="http://feeds.feedburner.com/~r/askshank/Xgnk/~4/WsBdvWzkrVA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.askshank.com/2010/03/how-to-disable-internet-explorer-enhanced-security-configuration-ie-esc-in-windows-server-20032008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.askshank.com/2010/03/how-to-disable-internet-explorer-enhanced-security-configuration-ie-esc-in-windows-server-20032008/</feedburner:origLink></item>
		<item>
		<title>Bypass recycle bin when deleting files</title>
		<link>http://feedproxy.google.com/~r/askshank/Xgnk/~3/dKLkxni-TLI/</link>
		<comments>http://www.askshank.com/2010/03/bypass-recycle-bin-when-deleting-files/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 17:22:59 +0000</pubDate>
		<dc:creator>Shankaran</dc:creator>
				<category><![CDATA[windows xp]]></category>

		<guid isPermaLink="false">http://www.askshank.com/?p=227</guid>
		<description><![CDATA[When you delete files in Windows XP, they go to the recycling bin. So are they really deleted? No, technically they are just moved. It&#8217;s kind of like a get me out of jail free card. So if you accidentally deleted a file that you needed, you can get it back. Of course, once you [...]


Related posts:<ol><li><a href='http://www.askshank.com/2009/01/remove-multiple-filesfolders-from-dos/' rel='bookmark' title='Permanent Link: Remove multiple files/folders from DOS'>Remove multiple files/folders from DOS</a></li>
<li><a href='http://www.askshank.com/2010/03/how-to-view-hidden-files-in-windows-xp-7-vista-2003/' rel='bookmark' title='Permanent Link: How to view hidden files in Windows XP 7 Vista 2003'>How to view hidden files in Windows XP 7 Vista 2003</a></li>
<li><a href='http://www.askshank.com/2008/01/how-to-copy-paste-delete-in-emacs/' rel='bookmark' title='Permanent Link: How to copy, paste, delete in Emacs?'>How to copy, paste, delete in Emacs?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>When you delete files in Windows XP, they go to the recycling bin. So are they really deleted? No, technically they are just moved. It&#8217;s kind of like a get me out of jail free card. So if you accidentally deleted a file that you needed, you can get it back. Of course, once you right click on the recycling bin and empty it, it&#8217;s gone&#8230; There are means to get files that have been emptied from the recycling bin back, but that&#8217;s a whole different discussion. So how do you actually delete files without dealing with the recycling bin?</p>
<p>Select the files or files that you want to delete, press and hold the shift key, and then simultaneously press the del key. By doing so, a popup will appear asking you to delete the files. That is it.</p>


<p>Related posts:<ol><li><a href='http://www.askshank.com/2009/01/remove-multiple-filesfolders-from-dos/' rel='bookmark' title='Permanent Link: Remove multiple files/folders from DOS'>Remove multiple files/folders from DOS</a></li>
<li><a href='http://www.askshank.com/2010/03/how-to-view-hidden-files-in-windows-xp-7-vista-2003/' rel='bookmark' title='Permanent Link: How to view hidden files in Windows XP 7 Vista 2003'>How to view hidden files in Windows XP 7 Vista 2003</a></li>
<li><a href='http://www.askshank.com/2008/01/how-to-copy-paste-delete-in-emacs/' rel='bookmark' title='Permanent Link: How to copy, paste, delete in Emacs?'>How to copy, paste, delete in Emacs?</a></li>
</ol></p><img src="http://feeds.feedburner.com/~r/askshank/Xgnk/~4/dKLkxni-TLI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.askshank.com/2010/03/bypass-recycle-bin-when-deleting-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.askshank.com/2010/03/bypass-recycle-bin-when-deleting-files/</feedburner:origLink></item>
		<item>
		<title>Microsoft Outlook 2007 Automatically Download Pictures</title>
		<link>http://feedproxy.google.com/~r/askshank/Xgnk/~3/REiWB5e3rHI/</link>
		<comments>http://www.askshank.com/2010/03/microsoft-outlook-2007-automatically-download-pictures/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 18:40:19 +0000</pubDate>
		<dc:creator>Shankaran</dc:creator>
				<category><![CDATA[Microsoft Office]]></category>
		<category><![CDATA[outlook]]></category>

		<guid isPermaLink="false">http://www.askshank.com/?p=223</guid>
		<description><![CDATA[By default, Microsoft Outlook does not allow pictures in emails to automatically download. To enable pictures to automatically display, do the following in Outlook. 1) Tools Menu. 2) Select Trust Center. 3) Left hand pane select automatic download. 4) Uncheck Don&#8217;t download pictures automatically in HTML e-mail messages or RSS items. 5) Click Ok. Related [...]


Related posts:<ol><li><a href='http://www.askshank.com/2008/10/how-to-remove-duplicate-contacts-in-outlook/' rel='bookmark' title='Permanent Link: How to remove duplicate contacts in outlook'>How to remove duplicate contacts in outlook</a></li>
<li><a href='http://www.askshank.com/2010/03/how-to-launch-outlook-with-a-different-account/' rel='bookmark' title='Permanent Link: How to launch Outlook with a different account'>How to launch Outlook with a different account</a></li>
<li><a href='http://www.askshank.com/2008/01/livemeeting-2007-add-in-error-when-scheduling-a-meeting-with-outlook/' rel='bookmark' title='Permanent Link: Livemeeting 2007 Add-In, error when scheduling a meeting with Outlook.'>Livemeeting 2007 Add-In, error when scheduling a meeting with Outlook.</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>By default, Microsoft Outlook does not allow pictures in emails to automatically download. To enable pictures to automatically display, do the following in Outlook.</p>
<p>1) Tools Menu.</p>
<p>2) Select Trust Center.</p>
<p>3) Left hand pane select automatic download.</p>
<p>4) Uncheck Don&#8217;t download pictures automatically in HTML e-mail messages or RSS items.</p>
<p>5) Click Ok.</p>


<p>Related posts:<ol><li><a href='http://www.askshank.com/2008/10/how-to-remove-duplicate-contacts-in-outlook/' rel='bookmark' title='Permanent Link: How to remove duplicate contacts in outlook'>How to remove duplicate contacts in outlook</a></li>
<li><a href='http://www.askshank.com/2010/03/how-to-launch-outlook-with-a-different-account/' rel='bookmark' title='Permanent Link: How to launch Outlook with a different account'>How to launch Outlook with a different account</a></li>
<li><a href='http://www.askshank.com/2008/01/livemeeting-2007-add-in-error-when-scheduling-a-meeting-with-outlook/' rel='bookmark' title='Permanent Link: Livemeeting 2007 Add-In, error when scheduling a meeting with Outlook.'>Livemeeting 2007 Add-In, error when scheduling a meeting with Outlook.</a></li>
</ol></p><img src="http://feeds.feedburner.com/~r/askshank/Xgnk/~4/REiWB5e3rHI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.askshank.com/2010/03/microsoft-outlook-2007-automatically-download-pictures/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.askshank.com/2010/03/microsoft-outlook-2007-automatically-download-pictures/</feedburner:origLink></item>
		<item>
		<title>Backup firefox bookmarks</title>
		<link>http://feedproxy.google.com/~r/askshank/Xgnk/~3/EpKUqFvop2w/</link>
		<comments>http://www.askshank.com/2010/03/backup-firefox-bookmarks/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 16:13:03 +0000</pubDate>
		<dc:creator>Shankaran</dc:creator>
				<category><![CDATA[applications]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://www.askshank.com/?p=221</guid>
		<description><![CDATA[So you&#8217;re upgrading your computer, and you want to backup your Firefox backups. That, or you just want to back them up because you&#8217;ve had them for 4 years on the same computer and if you lose it, you lose all 4 years of your online life. Backing up, and restoring, is EASY. To this [...]


Related posts:<ol><li><a href='http://www.askshank.com/2010/03/backup-your-outlook-autocomplete-file-for-email-addresses/' rel='bookmark' title='Permanent Link: Backup your Outlook autocomplete file for email addresses'>Backup your Outlook autocomplete file for email addresses</a></li>
<li><a href='http://www.askshank.com/2010/03/how-to-view-hidden-files-in-windows-xp-7-vista-2003/' rel='bookmark' title='Permanent Link: How to view hidden files in Windows XP 7 Vista 2003'>How to view hidden files in Windows XP 7 Vista 2003</a></li>
<li><a href='http://www.askshank.com/2008/01/how-to-export-a-mailbox-to-a-pst-file-from-exchange-2003/' rel='bookmark' title='Permanent Link: How to export a mailbox to a PST file from Exchange 2003?'>How to export a mailbox to a PST file from Exchange 2003?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>So you&#8217;re upgrading your computer, and you want to backup your Firefox backups. That, or you just want to back them up because you&#8217;ve had them for 4 years on the same computer and if you lose it, you lose all 4 years of your online life.</p>
<p>Backing up, and restoring, is EASY. </p>
<p>To this within firefox</p>
<p>1) Goto bookmarks toolbar.</p>
<p>2) Select organize bookmarks.</p>
<p>3) Click on import and backup.</p>
<p>4) Select Backup.</p>
<p>5) Choose a location and a file name.</p>
<p>6) Click OK</p>
<p>You will be ALL set.</p>
<p>You can also backup the contents of your bookmarks by navigating to your Firefox folder in windows explorer and manually back them up.</p>
<p>In Windows XP this will be located here<br />
c:\documents and settings\USER NAME\application data\Mozilla\Profiles</p>
<p>In Windows 7 and Vista<br />
C:\Users\USER NAME\AppData\Roaming\Mozilla\Firefox\Profiles</p>
<p>Note, you will need to be able to view hidden files and folders</p>


<p>Related posts:<ol><li><a href='http://www.askshank.com/2010/03/backup-your-outlook-autocomplete-file-for-email-addresses/' rel='bookmark' title='Permanent Link: Backup your Outlook autocomplete file for email addresses'>Backup your Outlook autocomplete file for email addresses</a></li>
<li><a href='http://www.askshank.com/2010/03/how-to-view-hidden-files-in-windows-xp-7-vista-2003/' rel='bookmark' title='Permanent Link: How to view hidden files in Windows XP 7 Vista 2003'>How to view hidden files in Windows XP 7 Vista 2003</a></li>
<li><a href='http://www.askshank.com/2008/01/how-to-export-a-mailbox-to-a-pst-file-from-exchange-2003/' rel='bookmark' title='Permanent Link: How to export a mailbox to a PST file from Exchange 2003?'>How to export a mailbox to a PST file from Exchange 2003?</a></li>
</ol></p><img src="http://feeds.feedburner.com/~r/askshank/Xgnk/~4/EpKUqFvop2w" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.askshank.com/2010/03/backup-firefox-bookmarks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.askshank.com/2010/03/backup-firefox-bookmarks/</feedburner:origLink></item>
	</channel>
</rss>
