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

<channel>
	<title>Rambles of Ev</title>
	<atom:link href="http://evsworld.selfip.info/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://evsworld.selfip.info/blog</link>
	<description>Just some tid bits and other thoughts from me.</description>
	<pubDate>Thu, 20 Nov 2008 06:13:25 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
			<item>
		<title>ASP.NET AJAX Progress Bar Control</title>
		<link>http://evsworld.selfip.info/blog/2008/11/aspnet-ajax-progress-bar-control/</link>
		<comments>http://evsworld.selfip.info/blog/2008/11/aspnet-ajax-progress-bar-control/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 06:13:25 +0000</pubDate>
		<dc:creator>Evan</dc:creator>
		
		<category><![CDATA[Web]]></category>

		<category><![CDATA[.Net]]></category>

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

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

		<guid isPermaLink="false">http://evsworld.selfip.info/blog/?p=133</guid>
		<description><![CDATA[Original Posting Here&#8230;
This not my work.
If you use AJAX in your web app&#8217;s, you no doubt have made use of some sort of  progress/status indicator that lets the user know that some operation is  currently executing.  In the app I am currently working on we use an animated  gif for this.  It [...]]]></description>
		<wfw:commentRss>http://evsworld.selfip.info/blog/2008/11/aspnet-ajax-progress-bar-control/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Considerations for virtualizing Exchange 2007 mailbox servers</title>
		<link>http://evsworld.selfip.info/blog/2008/10/considerations-for-virtualizing-exchange-2007-mailbox-servers/</link>
		<comments>http://evsworld.selfip.info/blog/2008/10/considerations-for-virtualizing-exchange-2007-mailbox-servers/#comments</comments>
		<pubDate>Wed, 29 Oct 2008 21:02:49 +0000</pubDate>
		<dc:creator>Evan</dc:creator>
		
		<category><![CDATA[Virtualisation]]></category>

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

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

		<guid isPermaLink="false">http://evsworld.selfip.info/blog/?p=129</guid>
		<description><![CDATA[Microsoft Exchange Server hardware virtualization is so popular that it seems as if everyone is moving their entire infrastructure to a virtual server environment. That being the case, I want to discuss some of the issues you may encounter when virtualizing Exchange 2007 mailbox servers.

Microsoft&#8217;s virtualization support policy
Microsoft supports virtualizing Exchange Server 2007 on Windows [...]]]></description>
		<wfw:commentRss>http://evsworld.selfip.info/blog/2008/10/considerations-for-virtualizing-exchange-2007-mailbox-servers/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Exchange WMI Errors - WMI Repository Clear &#038; Reinstall Script</title>
		<link>http://evsworld.selfip.info/blog/2008/10/exchange-wmi-errors-wmi-repository-clear-reinstall-script/</link>
		<comments>http://evsworld.selfip.info/blog/2008/10/exchange-wmi-errors-wmi-repository-clear-reinstall-script/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 20:34:06 +0000</pubDate>
		<dc:creator>Evan</dc:creator>
		
		<category><![CDATA[Windoze]]></category>

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

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

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

		<guid isPermaLink="false">http://evsworld.selfip.info/blog/?p=124</guid>
		<description><![CDATA[Finally found the solution to fix the &#8220;An error occured during a call to Windows  Management Instrumentation ID no: 8004100e Exchange System Manager&#8221; error. It  worked beautifully. I can now fully utilise Message Tracking on my Windows 2000  Exchange server.
I have to give full credit to Luke Edson at http://www.mrtweak.com/exchange-ser&#8230;install-script/
In  essence, [...]]]></description>
		<wfw:commentRss>http://evsworld.selfip.info/blog/2008/10/exchange-wmi-errors-wmi-repository-clear-reinstall-script/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Stop Annoying and Bad Bots</title>
		<link>http://evsworld.selfip.info/blog/2008/10/stop-annoying-and-bad-bots/</link>
		<comments>http://evsworld.selfip.info/blog/2008/10/stop-annoying-and-bad-bots/#comments</comments>
		<pubDate>Mon, 27 Oct 2008 04:54:21 +0000</pubDate>
		<dc:creator>Evan</dc:creator>
		
		<category><![CDATA[Web]]></category>

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

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

		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://evsworld.selfip.info/blog/?p=121</guid>
		<description><![CDATA[Original article
.htaccess file
# Deny domain access to spammers and other scumbags
RewriteEngine on
php_flag register_globals off
SetEnvIfNoCase User-Agent &#8220;^libwww-perl*&#8221; block_bad_bots
Deny from env=block_bad_bots
# Redirect index.php to domain.com
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.php\ HTTP/
RewriteRule ^index\.php$ http://www.ewebsite.biz/ [R=301,L]
# Redirect domain.com to www.domain.com
RewriteCond %{HTTP_HOST} ^ewebsite.biz [NC]
RewriteRule ^(.*)$ http://www.ewebsite.biz/$1 [L,R=301]

RewriteBase /
# filter for most common exploits
RewriteCond %{HTTP_USER_AGENT} libwww-perl [OR]
RewriteCond %{QUERY_STRING} tool25 [OR]
RewriteCond %{QUERY_STRING} cmd.txt [OR]
RewriteCond [...]]]></description>
		<wfw:commentRss>http://evsworld.selfip.info/blog/2008/10/stop-annoying-and-bad-bots/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Screen Tips</title>
		<link>http://evsworld.selfip.info/blog/2008/10/screen-tips/</link>
		<comments>http://evsworld.selfip.info/blog/2008/10/screen-tips/#comments</comments>
		<pubDate>Sat, 04 Oct 2008 07:50:14 +0000</pubDate>
		<dc:creator>Evan</dc:creator>
		
		<category><![CDATA[linux]]></category>

		<category><![CDATA[.screenrc]]></category>

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

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

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

		<guid isPermaLink="false">http://evsworld.selfip.info/blog/?p=115</guid>
		<description><![CDATA[A few snippets to make your prompt look better when using screen for linux.
Add the below to your .bashrc so each tab created when you generate a new screen shows user@hostname
function rename_screen_tab () { echo -ne &#8220;\x1bk$@\x1b\\&#8221;; return 0; }
if [[ "$TERM" = screen* ]]; then
PROMPT_COMMAND=&#8217;rename_screen_tab ${USER}@${HOSTNAME%%.*}&#8217;
[ "$HOSTNAME" = "hostname-of-mainbox" ] &#38;&#38; PROMPT_COMMAND=&#8217;rename_screen_tab ${SCREEN_TAB:-$USER}&#8217;
fi

Add the [...]]]></description>
		<wfw:commentRss>http://evsworld.selfip.info/blog/2008/10/screen-tips/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Keyboard Short Cuts for Windows</title>
		<link>http://evsworld.selfip.info/blog/2008/10/keyboard-short-cuts-for-windows/</link>
		<comments>http://evsworld.selfip.info/blog/2008/10/keyboard-short-cuts-for-windows/#comments</comments>
		<pubDate>Sat, 04 Oct 2008 02:34:04 +0000</pubDate>
		<dc:creator>Evan</dc:creator>
		
		<category><![CDATA[Windoze]]></category>

		<category><![CDATA[Short cuts]]></category>

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

		<guid isPermaLink="false">http://evsworld.selfip.info/blog/?p=109</guid>
		<description><![CDATA[
This lists keyboard shortcuts that you can use with Windows.
Windows system key combinations




•
F1: Help


•
CTRL+ESC: Open Start menu


•
ALT+TAB: Switch between open programs


•
ALT+F4: Quit program


•
SHIFT+DELETE: Delete item permanently





Windows program key combinations




•
CTRL+C: Copy


•
CTRL+X: Cut


•
CTRL+V: Paste


•
CTRL+Z: Undo


•
CTRL+B: Bold


•
CTRL+U: Underline


•
CTRL+I: Italic




Mouse click/keyboard modifier combinations for shell objects




•
SHIFT+right click: Displays a shortcut menu containing alternative commands


•
SHIFT+double click: Runs the alternate default [...]]]></description>
		<wfw:commentRss>http://evsworld.selfip.info/blog/2008/10/keyboard-short-cuts-for-windows/feed/</wfw:commentRss>
		</item>
		<item>
		<title>VirtualBox Fix</title>
		<link>http://evsworld.selfip.info/blog/2008/10/virtualbox-fix/</link>
		<comments>http://evsworld.selfip.info/blog/2008/10/virtualbox-fix/#comments</comments>
		<pubDate>Sat, 04 Oct 2008 00:18:44 +0000</pubDate>
		<dc:creator>Evan</dc:creator>
		
		<category><![CDATA[Virtualbox]]></category>

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

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

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

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

		<guid isPermaLink="false">http://evsworld.selfip.info/blog/?p=106</guid>
		<description><![CDATA[This file is used for the &#8220;Unknown&#8221; devices in a Windows VirtualBox machine. Its the SATA drivers that is missing.
]]></description>
		<wfw:commentRss>http://evsworld.selfip.info/blog/2008/10/virtualbox-fix/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to update DNS through DHCP automatically</title>
		<link>http://evsworld.selfip.info/blog/2008/10/how-to-update-dns-through-dhcp-automatically/</link>
		<comments>http://evsworld.selfip.info/blog/2008/10/how-to-update-dns-through-dhcp-automatically/#comments</comments>
		<pubDate>Thu, 02 Oct 2008 10:31:59 +0000</pubDate>
		<dc:creator>Evan</dc:creator>
		
		<category><![CDATA[linux]]></category>

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

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

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

		<guid isPermaLink="false">http://evsworld.selfip.info/blog/?p=102</guid>
		<description><![CDATA[If you are looking for configuration then you need it as follows:
Let us say domain is test.com
Domain nameserver, dns (named), samba and most of Linux services servers ip is 192.168.0.1
And network is 192.168.0.1/24 for dhcp ips are 192.168.0.10-60

Your dhcpd.conf should be as follows (use DHCP Server version 3 or above)
ddns-updates on;
ddns-domainname &#8220;test.com&#8221;;
option ntp-servers 192.168.0.1;
ddns-update-style ad-hoc;
allow [...]]]></description>
		<wfw:commentRss>http://evsworld.selfip.info/blog/2008/10/how-to-update-dns-through-dhcp-automatically/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Horrid CPU Issues with VMWare and Hardware Interrupts</title>
		<link>http://evsworld.selfip.info/blog/2008/10/horrid-cpu-issues-with-vmware-and-hardware-interrupts/</link>
		<comments>http://evsworld.selfip.info/blog/2008/10/horrid-cpu-issues-with-vmware-and-hardware-interrupts/#comments</comments>
		<pubDate>Thu, 02 Oct 2008 01:24:28 +0000</pubDate>
		<dc:creator>Evan</dc:creator>
		
		<category><![CDATA[VMWare]]></category>

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

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

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

		<category><![CDATA[High Hardware Interrupts]]></category>

		<guid isPermaLink="false">http://evsworld.selfip.info/blog/?p=99</guid>
		<description><![CDATA[Original Article
So I fought this problem all day long. My Windows XP VMWare image was running  like crap. I started to poke around. The first thing I did was to bring up the  task manager. Sure enough, my virtual CPU was pegged at around 55-60% when the  vm was doing nothing. This [...]]]></description>
		<wfw:commentRss>http://evsworld.selfip.info/blog/2008/10/horrid-cpu-issues-with-vmware-and-hardware-interrupts/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Change SBS Backup Selections</title>
		<link>http://evsworld.selfip.info/blog/2008/10/change-sbs-backup-selections/</link>
		<comments>http://evsworld.selfip.info/blog/2008/10/change-sbs-backup-selections/#comments</comments>
		<pubDate>Thu, 02 Oct 2008 00:50:53 +0000</pubDate>
		<dc:creator>Evan</dc:creator>
		
		<category><![CDATA[Windoze]]></category>

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

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

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

		<guid isPermaLink="false">http://evsworld.selfip.info/blog/?p=94</guid>
		<description><![CDATA[Run the SBSBackup wiz and make your selections as close as possible to what you want (or not, doesn&#8217;t really matter what is selected at this point) then fire up NTBackup. Programs, accesories, backup. Cancel the NTBackup wiz (if
it starts in wiz mode, default), go to the backup page and from the &#8216;job&#8217; menu &#8216;load [...]]]></description>
		<wfw:commentRss>http://evsworld.selfip.info/blog/2008/10/change-sbs-backup-selections/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
