<?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:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Ask The Admin</title>
	
	<link>http://www.asktheadmin.com</link>
	<description>Free Tech Support with a hint of Geeky Humor!</description>
	<pubDate>Thu, 02 Jul 2009 14:39:31 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<geo:lat>40.706019</geo:lat><geo:long>-74.008588</geo:long><image><link>http://www.asktheadmin.com</link><url>http://www.asktheadmin.com/wp-content/themes/crystal-mac-10/favicon.ico</url><title>AskTheAdmiN</title></image><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/askTheAdmin" type="application/rss+xml" /><feedburner:emailServiceId>askTheAdmin</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>Using Notepad++ for Version Control</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/5aUvt2yua70/using-notepad-for-version-control.html</link>
		<comments>http://www.asktheadmin.com/2009/06/using-notepad-for-version-control.html#comments</comments>
		<pubDate>Tue, 30 Jun 2009 03:43:11 +0000</pubDate>
		<dc:creator>Joe Glessner</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/?p=2319</guid>
		<description><![CDATA[I have what you would call a love/hate relationship with Version Control Systems. On the one hand, it is oh so nice to be able to revert back to a working version of your document when you accidentally make way too many mistakes, and it no longer works. But on the other hand, it is [...]]]></description>
			<content:encoded><![CDATA[<p>I have what you would call a love/hate relationship with Version Control Systems. On the one hand, it is oh so nice to be able to revert back to a working version of your document when you accidentally make way too many mistakes, and it no longer works. But on the other hand, it is a total pain in the ass.</p>
<p>I am duty bound to tell you that if you are doing much of anything involving code, you need to be using some sort of Version Control, however I am not going to ram Subversion or Tortoise SVN down your throat. I understand why programmers use them, and I have used them myself in the past. Since I try to live the whole “Least Amount Of Administrative Effort” thing, I just really don’t like them. Let me explain.</p>
<p>Ok, setting up full on Version Control makes sense if any of the following are true:</p>
<ul>
<li>You spend a large portion of your day writing code (like your job title is “programmer” or something similar)</li>
<li>You spend more time fixing things you break while writing code, than writing code</li>
<li>Anyone else is going to suffer consequences if you totally wreck some code</li>
<li>Someone else is going to maintain and administer the Version Control System</li>
<li>You work on files that multiple other people also edit</li>
</ul>
<p>However it does not make sense if any of the following is true:</p>
<ul>
<li>You write code for your own use only</li>
<li>You could care less if it gets broken or accidentally deleted</li>
<li>You don’t have time to administer or maintain a Version Control System</li>
</ul>
<p>Even if all of the last bit are true for you, it is still a good idea to use Version Control. Wait, what?</p>
<p>Version Control is a process, and if done correctly it works very well. If done poorly it gives you a false sense of security. Version Control is not necessarily a software package or commercial system.</p>
<p>If working with end users for all these years has taught me anything it is this; if a system is easy to use (especially if you don’t have to actually <strong><em>do</em></strong> anything) it will get used, if it is complicated (or time consuming) it will not get used. This also holds true (even more so in most cases) for the IT professionals I know.</p>
<p>Since don’t write enough code to make Visual Studio a wise investment, I use Notepad++, and unlike Visual Studio, I can take my IDE with me on a USB drive (Notepad++ Portable!). In the same vein, I don’t really write enough code to really justify setting up and maintaining a Version Control System, so I do it with Notepad++. Least Amount Of Administrative Effort.</p>
<p>So here is my solution:</p>
<p>I use the Backup settings built into Notepad++ to take care of my Version Control. To set this up:</p>
<ol>
<li>Install notepad++</li>
<li>Open Notepad++</li>
<li>Select <em>Settings &gt; Preferences</em></li>
<li>On the <em>Backup/Auto-completion </em>tab, change the backup setting from <em>None </em>to<em> Verbose</em></li>
</ol>
<p>If you change nothing else there, now when you save your file, Notepad++ will automatically create a copy of the file without the changes since the last time you saved it. The copy will also be saved in a subfolder (named <strong><em>nppBackup</em></strong>) in the same folder where the document is saved. The copy will be named <strong><em>FileName.Extension.Date_Timestamp.bak</em></strong> by default. So a file named “test.vbs”, saved today would have a name similar to “test.vbs.2009-06-29_151927.bak”.</p>
<p>Cumbersome to be sure, but I am guaranteed to use it every time I work with a document.</p>
<p>Please don’t mistake this for something it is not. This is not a Version Control System. You do not check files in or out, and it doesn’t differentiate who made what changes, all it does is save every iteration of your document. It is Version Control in the truest sense of the term.</p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/08/admins-arsenal-notepad.html" rel="bookmark" title="Permanent Link: Admin&#8217;s Arsenal: Notepad++" >Admin&#8217;s Arsenal: Notepad++</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/08/admins-arsenal-explorer.html" rel="bookmark" title="Permanent Link: Admin&#8217;s Arsenal: Explorer++" >Admin&#8217;s Arsenal: Explorer++</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/03/easier-way-to-google-your-windows-error.html" rel="bookmark" title="Permanent Link: An Easier Way To Google your Windows Error Messages&#8230;" >An Easier Way To Google your Windows Error Messages&#8230;</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/09/something-cool-about-spybot-15.html" rel="bookmark" title="Permanent Link: Fail Safe Anti-Spyware Built In To Spybot 1.5" >Fail Safe Anti-Spyware Built In To Spybot 1.5</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/02/notepad2-does-what-microsoft-should-have-made-notepad-do-awesome-free-download.html" rel="bookmark" title="Permanent Link: Notepad2 does what Microsoft should have made Notepad do! Awesome Free Download." >Notepad2 does what Microsoft should have made Notepad do! Awesome Free Download.</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/dQK0o59eJas4-9z8CASnrDU62Z8/0/da"><img src="http://feedads.g.doubleclick.net/~a/dQK0o59eJas4-9z8CASnrDU62Z8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/dQK0o59eJas4-9z8CASnrDU62Z8/1/da"><img src="http://feedads.g.doubleclick.net/~a/dQK0o59eJas4-9z8CASnrDU62Z8/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=5aUvt2yua70:AsKoRet_Yh8:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=5aUvt2yua70:AsKoRet_Yh8:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/5aUvt2yua70" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/06/using-notepad-for-version-control.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/06/using-notepad-for-version-control.html</feedburner:origLink></item>
		<item>
		<title>Win a free dx9000 TouchSmart PC from HP and AskTheAdmin! (Developer Contest)</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/wcJQcE_aOA4/win-a-free-dx9000-touchsmart-pc-from-hp-and-asktheadmin-developer-contest.html</link>
		<comments>http://www.asktheadmin.com/2009/06/win-a-free-dx9000-touchsmart-pc-from-hp-and-asktheadmin-developer-contest.html#comments</comments>
		<pubDate>Mon, 29 Jun 2009 19:43:22 +0000</pubDate>
		<dc:creator>Karl L. Gechlik | AskTheAdmin.com</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/2009/06/win-a-free-dx9000-touchsmart-pc-from-hp-and-asktheadmin-developer-contest.html</guid>
		<description><![CDATA[
Hey there loyal AtA readers! I know the posts title caught your interest and now you are reading more to find out how you can win yourself one of these innovative new systems that you can see pictured above. I have been going back and forth with HP trying to figure out the best way [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.asktheadmin.com/wp-content/uploads/2009/06/clip-image002.jpg"><img title="clip_image002" style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" height="315" alt="clip_image002" src="http://www.asktheadmin.com/wp-content/uploads/2009/06/clip-image002-thumb.jpg" width="285" border="0" /></a></p>
<p>Hey there loyal AtA readers! I know the posts title caught your interest and now you are reading more to<strong> find out how you can win yourself one of these innovative new systems</strong> that you can see pictured above. I have been going back and forth with HP trying to figure out the best way to open up this contest to our readers. And here is the proposed contest:</p>
<p>I have two of my best clients that are on the lookout for custom TouchSmart applications. By creating an application for one of these two companies which we will detail below you can be chosen to win one of these TouchSmart’s for yourself. And after all isn’t that all we want… Nice shinny uber cool gadgets? Oh is that only me??</p>
<p>To participate in the contest you will create an application for the TouchSmart. It can either match one of our two scenarios or you can submit your own ideas for the application. Once we finalize the ideas that you guys will be creating we will start accepting applications. </p>
<p>We will then demo them and show them to the company they relate to. Once we select the winning application we will send you your very own dx9000 TouchSmart.</p>
<ul>
<li>The first company is a high end clothing manufacturer in New York City that wants an application to show off their beautiful completed garments as well as concept designs. </li>
<li>The second company is a Computer repair shop that wants to allow customers to use the TouchSmart to enter their information when dropping off their computer for repairs. </li>
</ul>
<p>There are already a bunch of apps for the TouchSmart that people have developed—TIME and Adobe made one for the TIME 100 which is free to download—and a few businesses that already used custom-built apps, which we’ll talk more about when there’s a dx9000 here for me to play with!</p>
<p>So do you want to know more about this contest? Maybe you want to know more about the TouchSmart platform or even how to create applications for the TouchSmart… Then drop us a line at info at askTheAdmin dot com or leave a comment. We will be posting more details as they become available to us and as always we are open to your tips, ideas or death threats…</p>
<p>The dx9000 TouchSmart starts at around $1400 usd so if you think you can come up with the winning application… </p>
<h4>THEN GO GET STARTED!&#160; You can also read the full press release after the break…</h4>
<p>&#160;</p>
<p><a href="http://sitereview.adcetera.com/HP/Corelab2008/dx9000/Model.html?buyNowLink=noshow&amp;quickspecs=default&amp;jumpid=re_r2515_store_3d/DSK/dx9000|ProdPage|flash">A nifty little demo of the TouchSmart can be found here</a> and</p>
<p><a href="http://www.touchsmartcommunity.com/download/60/HP-TouchSmart-Software-Developer-Guidelines/">Check out the TouchSmart developer guidelines for some good how-to info!</a></p>
<p>&#160;</p>
<p><span id="more-2318"></span></p>
<p>&#8211;Press Release&#8211;</p>
<p>PALO ALTO, Calif., June 29 – HP today announced leading industry blogs including Ask the Admin, AbsoluteWindows and Hardware Geeks are conducting promotions to uncover business touch applications for the HP dx9000 TouchSmart PC. These sites will select entries and present the HP dx9000 TouchSmart PC* to the most innovative business application developer.</p>
<p>&quot;At airports, stadiums, hotels and retailers, HP TouchSmart PCs are helping companies large and small engage their customers with a fun and interactive touch experience,&quot; said Alan Reed, vice president and general manager, Business Desktops, Personal Systems Group, HP. “Users can scroll, zoom, and browse with the touch of a finger, bringing multimedia content to life and immersing the user in custom software applications.&quot;    <br />At the <a href="http://www.uptilt.com/c.html?rtr=on&amp;s=lmkq,17hke,2r5q,j19j,jjdo,gy6m,fnfc">TouchSmart Community</a>, software developers can access HP TouchSmart guidelines to easily modify existing applications to work on a touch interface, or create new applications. </p>
<p>&#160;</p>
<p><a href="http://www.askTheAdmin.com">_TheContestLovingAdmiN_</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/06/hps-dx9000-touchsmart-computer-are-making-huge-waves.html" rel="bookmark" title="Permanent Link: HP&rsquo;s dx9000 TouchSmart Computer are making huge waves!" >HP&rsquo;s dx9000 TouchSmart Computer are making huge waves!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/06/gizmodo-is-having-invention-contest-and.html" rel="bookmark" title="Permanent Link: Gizmodo is having an invention contest and giving away an iPhone. Should we enter or will our ideas get jacked?" >Gizmodo is having an invention contest and giving away an iPhone. Should we enter or will our ideas get jacked?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/07/i-bring-you-googles-thirteen_25.html" rel="bookmark" title="Permanent Link: I bring you Google&#8217;s Thirteen Commandments for SpeedyPage Loads!" >I bring you Google&#8217;s Thirteen Commandments for SpeedyPage Loads!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/10/roxio-sponsors-creator-10-give-a-way-and-ata-goes-to-the-fuji-film-z-launch-party-tonight.html" rel="bookmark" title="Permanent Link: Roxio Sponsors Creator 10 Give-a-way and AtA goes to the Fuji Film Z Launch Party Tonight!" >Roxio Sponsors Creator 10 Give-a-way and AtA goes to the Fuji Film Z Launch Party Tonight!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/01/entre-card-review-and-500-credits.html" rel="bookmark" title="Permanent Link: Entre Card 500 credits giveaway." >Entre Card 500 credits giveaway.</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/m_F2gKd4x86kO4c0Dy8yHVyPEGE/0/da"><img src="http://feedads.g.doubleclick.net/~a/m_F2gKd4x86kO4c0Dy8yHVyPEGE/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/m_F2gKd4x86kO4c0Dy8yHVyPEGE/1/da"><img src="http://feedads.g.doubleclick.net/~a/m_F2gKd4x86kO4c0Dy8yHVyPEGE/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=wcJQcE_aOA4:4Yxlkj7PIjw:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=wcJQcE_aOA4:4Yxlkj7PIjw:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/wcJQcE_aOA4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/06/win-a-free-dx9000-touchsmart-pc-from-hp-and-asktheadmin-developer-contest.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/06/win-a-free-dx9000-touchsmart-pc-from-hp-and-asktheadmin-developer-contest.html</feedburner:origLink></item>
		<item>
		<title>Check out this Extended Task Manager for Windows.</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/qq5UZigF8Jg/check-out-this-extended-task-manager-for-windows.html</link>
		<comments>http://www.asktheadmin.com/2009/06/check-out-this-extended-task-manager-for-windows.html#comments</comments>
		<pubDate>Mon, 29 Jun 2009 08:33:37 +0000</pubDate>
		<dc:creator>Karl L. Gechlik | AskTheAdmin.com</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/?p=2025</guid>
		<description><![CDATA[The Extended Task Manager provides additional Windows process management features and information about disk activity and network port usage.
The new &#8220;Disk I/O&#8221; chart allows you to monitor which applications utilize most of your disk at the moment:
Features:
* Displays disk input/output activity with information about related applications
* Displays network port activity with IP addresses of external [...]]]></description>
			<content:encoded><![CDATA[<p>The <strong>Extended Task Manager</strong> provides additional Windows process management features and information about disk activity and network port usage.</p>
<p>The new &#8220;Disk I/O&#8221; chart allows you to monitor which applications utilize most of your disk at the moment:</p>
<p>Features:</p>
<p>* Displays disk input/output activity with information about related applications<br />
* Displays network port activity with IP addresses of external computers<br />
* Displays information about applications that utilized most of the CPU or memory at any time presented on the charts<br />
* Displays all files locked by a select process.<br />
* Finds all processes locking a specified file.<br />
* Includes &#8220;Summary&#8221; tab for quickly assessing the overall state of the Windows system<br />
* Allows freezing individual Windows processes<br />
* Offer various visual and functional improvements over the standard Windows Task Manager</p>
<p><a onclick="pageTracker._trackPageview('/outgoing/www.extensoft.com/?p=free_task_manager&amp;referer=http://www.asktheadmin.com/wp-admin/post-new.php');" href="http://www.extensoft.com/?p=free_task_manager" target="_blank">http://www.extensoft.com/?p=free_task_manager</a></p>
<p style="text-align: center;"><img class="postimg aligncenter" src="http://www.extensoft.com/media/p2/images/FreeProducts/TaskManager/TaskManager.jpg" alt="http://www.extensoft.com/media/p2/images/FreeProducts/TaskManager/TaskManager.jpg" /></p>
<p style="text-align: right;">[<a onclick="pageTracker._trackPageview('/outgoing/forum.eeeuser.com/profile.php?id=3071&amp;referer=http://www.asktheadmin.com/wp-admin/post-new.php');" href="http://forum.eeeuser.com/profile.php?id=3071">Molly </a>via <a onclick="pageTracker._trackPageview('/outgoing/forum.eeeuser.com/viewtopic.php?id=10387_amp_p=28&amp;referer=http://www.asktheadmin.com/wp-admin/post-new.php');" href="http://forum.eeeuser.com/viewtopic.php?id=10387&amp;p=28">EeeUserForums</a>]</p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/07/can-i-open-the-task-manager-without-a-mouse.html" rel="bookmark" title="Permanent Link: Can I Open The Task Manager Without A Mouse?" >Can I Open The Task Manager Without A Mouse?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/11/why-does-my-outlook-always-tell-me-it-was-shut-down-improperly-why-do-i-have-to-wait-for-it-to-check-my-pst.html" rel="bookmark" title="Permanent Link: Why does my Outlook always tell me it was shut down improperly? Why do I have to wait for it to check my PST?" >Why does my Outlook always tell me it was shut down improperly? Why do I have to wait for it to check my PST?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/04/what-is-my-pc-really-up-to.html" rel="bookmark" title="Permanent Link: What is my PC really up to? ProcessScanner breaks it down for you for free&#8230;" >What is my PC really up to? ProcessScanner breaks it down for you for free&#8230;</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/06/admins-arsenal-process-explorer.html" rel="bookmark" title="Permanent Link: Admin&#8217;s Arsenal: Process Explorer" >Admin&#8217;s Arsenal: Process Explorer</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/01/windows-tip-access-the-windows-security-window-in-a-remote-desktop-connection-control-alt-delete-doesnt-work.html" rel="bookmark" title="Permanent Link: Windows Tip: Access The Windows Security Window In a Remote Desktop Connection (Control-Alt-Delete Doesn&#8217;t Work)" >Windows Tip: Access The Windows Security Window In a Remote Desktop Connection (Control-Alt-Delete Doesn&#8217;t Work)</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/aEaJXcqMfYcvtqO-2Qni__ja95E/0/da"><img src="http://feedads.g.doubleclick.net/~a/aEaJXcqMfYcvtqO-2Qni__ja95E/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/aEaJXcqMfYcvtqO-2Qni__ja95E/1/da"><img src="http://feedads.g.doubleclick.net/~a/aEaJXcqMfYcvtqO-2Qni__ja95E/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=qq5UZigF8Jg:ocjFxttxkIU:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=qq5UZigF8Jg:ocjFxttxkIU:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/qq5UZigF8Jg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/06/check-out-this-extended-task-manager-for-windows.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/06/check-out-this-extended-task-manager-for-windows.html</feedburner:origLink></item>
		<item>
		<title>I have hundres of files to rename help me Admin!</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/chjW1qxy408/i-have-hundres-of-files-to-rename-help.html</link>
		<comments>http://www.asktheadmin.com/2009/06/i-have-hundres-of-files-to-rename-help.html#comments</comments>
		<pubDate>Wed, 24 Jun 2009 08:00:00 +0000</pubDate>
		<dc:creator>Karl L. Gechlik | AskTheAdmin.com</dc:creator>
		
		<category><![CDATA[Admin's Arsenal]]></category>

		<category><![CDATA[How To]]></category>

		<category><![CDATA[Tips]]></category>

		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://ata.bansal-inc.com/?p=543</guid>
		<description><![CDATA[
Yes, we know you have taken a million digital photos over the last year, on your fancy shmancy new camera. And we also know the holiday season is almost upon us. Being the geek that you are, you could not just leave your pictures named digital_image_13456.jpg for your slide shows&#8230;
We just couldn&#8217;t have that now, [...]]]></description>
			<content:encoded><![CDATA[<p><a onclick="pageTracker._trackPageview('/outgoing/bp2.blogger.com/_NVxlqh8F-Yo/R2afOps4LMI/AAAAAAAACFo/QDpXI1Dqi5M/s1600-h/BatchRename.gif?referer=http://www.asktheadmin.com/wp-admin/edit.php?post_status=publish&amp;paged=8');pageTracker._trackPageview('/outgoing/bp2.blogger.com/_NVxlqh8F-Yo/R2afOps4LMI/AAAAAAAACFo/QDpXI1Dqi5M/s1600-h/BatchRename.gif?referer=http://www.asktheadmin.com/wp-admin/post.php?action=edit&amp;post=543');pageTracker._trackPageview('/outgoing/bp2.blogger.com/_NVxlqh8F-Yo/R2afOps4LMI/AAAAAAAACFo/QDpXI1Dqi5M/s1600-h/BatchRename.gif?referer=http://www.asktheadmin.com/wp-admin/edit.php?paged=37');" href="http://bp2.blogger.com/_NVxlqh8F-Yo/R2afOps4LMI/AAAAAAAACFo/QDpXI1Dqi5M/s1600-h/BatchRename.gif" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img id="BLOGGER_PHOTO_ID_5144974698378439874" style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp2.blogger.com/_NVxlqh8F-Yo/R2afOps4LMI/AAAAAAAACFo/QDpXI1Dqi5M/s400/BatchRename.gif" border="0" alt="batch rename window" /></a><br />
Yes, we know you have taken a million digital photos over the last year, on your fancy shmancy new camera. And we also know the holiday season is almost upon us. Being the geek that you are, you could not just leave your pictures named digital_image_13456.jpg for your slide shows&#8230;</p>
<p><strong>We just couldn&#8217;t have that now, could we?</strong></p>
<p>Oh, how well we know you.</p>
<p>Wayne from Florida wants AtA&#8217;s help to create a script that will batch rename his purty pictures. Instead we are going to point him to some FREE software our friend <a onclick="pageTracker._trackPageview('/outgoing/www.hackyourday.com/?referer=http://www.asktheadmin.com/wp-admin/edit.php?post_status=publish&amp;paged=8');pageTracker._trackPageview('/outgoing/www.hackyourday.com/?referer=http://www.asktheadmin.com/wp-admin/post.php?action=edit&amp;post=543');pageTracker._trackPageview('/outgoing/www.hackyourday.com/?referer=http://www.asktheadmin.com/wp-admin/edit.php?paged=37');" href="http://www.hackyourday.com/">Daniel at HackYourDay</a> blogged about.</p>
<p>The software is called <a onclick="pageTracker._trackPageview('/outgoing/cerebralsynergy.com/download.php?view.55&amp;referer=http://www.asktheadmin.com/wp-admin/edit.php?post_status=publish&amp;paged=8');pageTracker._trackPageview('/outgoing/cerebralsynergy.com/download.php?view.55&amp;referer=http://www.asktheadmin.com/wp-admin/post.php?action=edit&amp;post=543');pageTracker._trackPageview('/outgoing/cerebralsynergy.com/download.php?view.55&amp;referer=http://www.asktheadmin.com/wp-admin/edit.php?paged=37');" href="http://cerebralsynergy.com/download.php?view.55">Batch File Renamer</a> (clever eh?) from Cerebral Synergy.</p>
<p>Daniel says:</p>
<blockquote><p>Here’s one software that productivity nuts will love. If you’ve ever needed to catalog files, change extensions, add something to a filename in large batches you know the suffering that is “right click, select, type, enter” done over and over and over again. If you need a tool that can simply edit filenames, rename extensions and so on in a very powerful, customizable way, read on!&#8230;</p>
<p>I set out to find some sort of tool because I need to catalog files in batches of 100 about every two days. I get a batch of stuff in txt format and I need to do the following operations.</p>
<ul>
<li>I need the files to be in the following format [ID - Number.txt]</li>
<li>I also need them in this format [ID - Number.html]</li>
</ul>
<p>Practically this means that I need “032 - 001.txt”, “032 - 002.txt” and so on (all the way to 100), also in .html format and I need to be able to customize all of this because for the next batch I will need “033? at the beginning.</p>
<p>Doing a Google search and trying a lot of free software that popped up I finally found Batch File Renamer. Not a fancy name, not a fancy program, but it gets the job done better than I’ve seen with other apps. First, head over to the <a title="Batch file renamer download page" onclick="pageTracker._trackPageview('/outgoing/cerebralsynergy.com/download.php?view.55&amp;referer=http://www.asktheadmin.com/wp-admin/edit.php?post_status=publish&amp;paged=8');pageTracker._trackPageview('/outgoing/cerebralsynergy.com/download.php?view.55&amp;referer=http://www.asktheadmin.com/wp-admin/post.php?action=edit&amp;post=543');pageTracker._trackPageview('/outgoing/cerebralsynergy.com/download.php?view.55&amp;referer=http://www.asktheadmin.com/wp-admin/edit.php?paged=37');" href="http://cerebralsynergy.com/download.php?view.55" target="_blank">Cerebral Synergy</a> download page, scroll down and download Batch File Renamer.</p></blockquote>
<p>He was able to change file extensions, mass change file names and it comes with all sorts of other free geeky options! Check out <a onclick="pageTracker._trackPageview('/outgoing/hackyourday.com/2007/12/14/a-guide-to-batch-renaming-files-easily/_more-51?referer=http://www.asktheadmin.com/wp-admin/edit.php?post_status=publish&amp;paged=8');pageTracker._trackPageview('/outgoing/hackyourday.com/2007/12/14/a-guide-to-batch-renaming-files-easily/_more-51?referer=http://www.asktheadmin.com/wp-admin/post.php?action=edit&amp;post=543');pageTracker._trackPageview('/outgoing/hackyourday.com/2007/12/14/a-guide-to-batch-renaming-files-easily/_more-51?referer=http://www.asktheadmin.com/wp-admin/edit.php?paged=37');" href="http://hackyourday.com/2007/12/14/a-guide-to-batch-renaming-files-easily/#more-51">Daniel&#8217;s article at HackYourDay here</a> and the Free <a onclick="pageTracker._trackPageview('/outgoing/cerebralsynergy.com/request.php?55&amp;referer=http://www.asktheadmin.com/wp-admin/edit.php?post_status=publish&amp;paged=8');pageTracker._trackPageview('/outgoing/cerebralsynergy.com/request.php?55&amp;referer=http://www.asktheadmin.com/wp-admin/post.php?action=edit&amp;post=543');pageTracker._trackPageview('/outgoing/cerebralsynergy.com/request.php?55&amp;referer=http://www.asktheadmin.com/wp-admin/edit.php?paged=37');" href="http://cerebralsynergy.com/request.php?55">Cerebral Synergy download is here</a>.</p>
<p><a href="http://www.asktheadmin.com">_TheRenameThisAdmiN_ </a></p>
<div class="blogger-post-footer"><a href="mailto:info@asktheadmin.com"></a></div>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/03/quickly-rename-a-lot-of-files-without-a-3rd-party-program.html" rel="bookmark" title="Permanent Link: Quickly rename A LOT of files without a 3rd party program." >Quickly rename A LOT of files without a 3rd party program.</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/05/4-simple-steps-to-change-your-computer-sounds.html" rel="bookmark" title="Permanent Link: 4 Simple Steps to Change Your Computer Sounds" >4 Simple Steps to Change Your Computer Sounds</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/01/when-did-i-take-that-picture-mark-your-printed-photos.html" rel="bookmark" title="Permanent Link: When did I take that picture? Mark your printed Photos" >When did I take that picture? Mark your printed Photos</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/01/can-you-rename-windows-2003-domain.html" rel="bookmark" title="Permanent Link: Can you rename a Windows 2003 Domain?" >Can you rename a Windows 2003 Domain?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/01/system-restore-from-the-recovery-console-due-to-a-mupsys-hang.html" rel="bookmark" title="Permanent Link: System restore from the recovery console due to a Mup.sys hang." >System restore from the recovery console due to a Mup.sys hang.</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/r4phdci2XCg_ecca9yl20x1Pw1c/0/da"><img src="http://feedads.g.doubleclick.net/~a/r4phdci2XCg_ecca9yl20x1Pw1c/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/r4phdci2XCg_ecca9yl20x1Pw1c/1/da"><img src="http://feedads.g.doubleclick.net/~a/r4phdci2XCg_ecca9yl20x1Pw1c/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=chjW1qxy408:IDUVz3hdG5I:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=chjW1qxy408:IDUVz3hdG5I:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/chjW1qxy408" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/06/i-have-hundres-of-files-to-rename-help.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/06/i-have-hundres-of-files-to-rename-help.html</feedburner:origLink></item>
		<item>
		<title>How to lose your data</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/iVTms5gASiA/how-to-lose-your-data.html</link>
		<comments>http://www.asktheadmin.com/2009/06/how-to-lose-your-data.html#comments</comments>
		<pubDate>Tue, 23 Jun 2009 03:58:22 +0000</pubDate>
		<dc:creator>Joe Glessner</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/?p=2315</guid>
		<description><![CDATA[
See that picture? When it happens to you, it may not look quite that bad (or be quite that obvious), but data loss sucks. And it does happen. I’ve been working with computers for 10+ years, and I’ve had it happen a couple times myself. Did I mention how much it sucks?
I’m not going to [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img style="0px" src="http://www.asktheadmin.com/wp-content/uploads/2009/06/destroyed-computer.jpg" border="0" alt="destroyed_computer" width="244" height="235" /></p>
<p>See that picture? When it happens to you, it may not look <strong><em>quite</em></strong> that bad (or be quite that obvious), but data loss <strong><em>sucks</em></strong>. And it <strong><em>does</em></strong> happen. I’ve been working with computers for 10+ years, and I’ve had it happen a couple times myself. Did I mention how much it <strong><em>sucks</em></strong>?</p>
<p>I’m not going to spend a couple pages telling you why you should backup, I’m just going to be straight about it, unless you really couldn’t care less if that happened to your computer, you are flat out <em><strong>stupid</strong></em> if you are not backing up your data on a regular basis.</p>
<p>Instead of telling you why to backup, I’m going to tell you how to ensure that you are not going to get your data back, even if you think you are backing it up.</p>
<p><strong>Method 1: I’ll just back the data up to CD/DVD.</strong></p>
<p>Well sure, this will work for a bit, but:</p>
<ol>
<li>Ever try to save 20GB to CD? Or 250GB to DVD? Ugh.</li>
<li>How long do you think that optical desk is going to be readable?</li>
</ol>
<p>Going this route, you can quickly end up trapped behind a small mountain of plastic. Or lets say you manage to somehow keep the optical disks to a manageable quantity, will the marker you labeled it with make the disk unreadable in a year, or is the dye layer unstable, rendering your disk unreadable in six months, or will the glue on the label you made for the disk make it worthless in a year or two? These are just a couple of examples of why optical media should not be considered an archive grade solution.</p>
<p><strong>Method 2: ok then, I’ll just copy the data to a USB hard drive.</strong></p>
<p>Sure it’s better than nothing, but single HDD solutions are not going to keep your data safe. Hard drives fail. In fact it will happen to every single hard disk you will ever come across. The only question is; when? It’s not a matter of if, or of MTBF (mean time between failure), it is more a matter of “you never know, it could fail in ten years, or in ten seconds”.</p>
<p>Don’t get me wrong, if this is the only way you can back the data up, then it is your only choice, and it’s better than nothing. Just be aware, as soon as you copy the data to that USB HDD, the “Clock of Death” is ticking.</p>
<p>Much better would be to copy the data over to a machine with a RAID storage system (preferably RAID5).</p>
<p><strong>Method 3: I bought actual Backup Software (or use a vetted Open Source solution), and run Incremental Backups (to <em>tape!</em>) <em>every</em> single day!</strong></p>
<p>Ok, so you spent some money on a tape backup solution, spent hours reading the manual and configuring your backup. Congratulations, I bet you think your data is safe! Until you find out how Incremental Backups really work (this usually happens after a disaster, and the tapes is all you have left of your <span style="line-through">pr0n</span>, <span style="line-through">illegal mp3’s</span> <span style="line-through">downloaded movies</span> <span style="line-through">warez</span> mission critical data).</p>
<p>Let’s pretend for a minute that your backup tapes look something like this:</p>
<p>Full_backup_tape (tape 1 – doesn’t matter what you tell it to be, the first backup is <strong>always and without exception</strong>, a full backup)</p>
<p>Incremental_backup_1 (tape 2)</p>
<p>Incremental_backup_2 (tape 3)</p>
<p>Incremental_backup_3 (tape 4)</p>
<p>Incremental_backup_4 (tape 5)</p>
<p>Incremental_backup_5 (tape 6)</p>
<p>And then you have a catastrophic failure. So you’re sitting there at 2am merrily running the restore, and you hit a snag: tape 2 won’t read. Doesn’t matter why, the tape could be bad, maybe you left it out of the tape safe overnight, and the radio station next door managed to erase it with the magnetic waves they transmit (this actually happened), the data is gone. So is all data after it. See Incremental backups require that all tapes since the last full backup be present and working. So tapes 3-6 may as well be empty, because you are never getting the data off of them. Ever.</p>
<p>If you can’t run full backups every day, use Differential backups instead of Incrementals. Let’s say that in the scenario the user had been running differentials rather than incrementals. They could then restore to current using just the original full backup, and the last differential.</p>
<p><strong>Method 4: Now I’m running differential backups to tape <em>every single day!</em></strong></p>
<p>But you fail to check the backup logs every day, and the backup job you though had been running for the last year actually failed 273 days ago, and has been requesting the “correct” tape since then. I’ve seen this one a <strong>lot </strong>(in fact, I think this would be the most popular reason for data loss if you have backup software running).</p>
<p>You’ve <strong><em>got to check your backup logs</em></strong>. It sucks, and it’s boring, but it’s one of those things you just have to do.</p>
<p><strong>Method 5: Alright, I’m running differentials to tape, and have been checking my logs for the last 2 years <em>every single day!</em></strong></p>
<p>But you’ve never run a test restore. If you haven’t restored data from the tape successfully, there is no data on the tape. The tape was bad, the backup software failed (silently of course), the gremlins ate it.</p>
<p><strong>Method 6: Ok, now I spend two hours reading the log and then randomly restoring files from my backups (before putting the tapes in the tape safe) <em>every single day!</em></strong></p>
<p>And then your server room catches fire. All machines, and the safe holding the backup tapes are destroyed. You never took any offsite, because you have a tape safe. It happens. It’s unfortunate.</p>
<p><strong>Method 7: Enough, I give up on tape! Now I run a full backup to a RAID5 NAS <em>every single day!</em></strong></p>
<p>But you ordered your NAS with the drives form the manufacturer, and they used 4 HDD’s from the same batch, and two failed. This is the one that <strong>always</strong> gets them! The strength of RAID5 is that more than one drive has to fail before the RAID is unrecoverable. The weakness is that hard drives from the same batch tend to fail at the same time (or thereabouts).</p>
<p>To strengthen your RAID system, always make sure that you have drives from different batches, if not from different manufacturers (this is not always the best idea, but that is an argument for another time). For instance: to take care of my backup needs at home, I bought a Buffalo Terastation. Unfortunately, Buffalo sent me a Terastation with 4 drives from the same batch (you can usually tell if they all have the same date on them, sometimes there will be a batch code on the drive). I bought 3 more of the same model drive from 3 different manufacturers, and now have the most healthy RAID I can.</p>
<p>These are not the only ways to lose data, but they are by far the most common. How would I know? I was the Worldwide Manager of Technical Support for a backup software company for several years. And I always got to be the one to explain to the customers why their data is gone.</p>
<p><strong>So what do I do?</strong></p>
<p>There are as many answers to that question as there are IT shops with backup systems. Here is how I protect data at my office:</p>
<p>I backup all data every day (full backup) to a NAS configured in RAID5, with a hot spare. I check the health of the RAID every day (it takes about two minutes). Once a week I backup the entire RAID to LTO3 tape, and take the tapes offsite (currently I am taking them home, where they go into a DATA rated fire safe (there is a difference, do your homework), and then into my large safe where I keep all my other valuables. My ideal would be to have them delivered to a bank safety deposit box, but that costs money.</p>
<p>At home, I back up all my data to the aforementioned Terastation. Once per month, I copy all the data off to a USB HDD (actually two of them), and take one to work where it goes into the tape safe.</p>
<p>Is it perfect? No. Does it stand a much better chance of keeping that data alive through a catastrophic event? Absolutely. You don’t have to go to these lengths to protect your data, but you should be aware of the risks.</p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/07/can-i-update-my-old-iphone-to-the-new-firmware-for-free.html" rel="bookmark" title="Permanent Link: Can I update my old iPhone to the new firmware for free?" >Can I update my old iPhone to the new firmware for free?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/07/some-new-dash-tips-tricks-for-wm6-tip-1.html" rel="bookmark" title="Permanent Link: Some New Dash Tips &amp; Tricks for WM6 - Tip 1 Restore Your Alert Sounds!" >Some New Dash Tips &amp; Tricks for WM6 - Tip 1 Restore Your Alert Sounds!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/08/online-game-i-challange-you-to-a-duel-biznatch-smack-smack.html" rel="bookmark" title="Permanent Link: Online Game: I challange you to a duel biznatch.. smack! smack!" >Online Game: I challange you to a duel biznatch.. smack! smack!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/06/admins-arsenal-dban.html" rel="bookmark" title="Permanent Link: Admins Arsenal: DBAN" >Admins Arsenal: DBAN</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/05/catch-up-with-recent-asktheadmin-posts-2.html" rel="bookmark" title="Permanent Link: Catch up with recent AskTheAdmin posts." >Catch up with recent AskTheAdmin posts.</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/NJ7WBFQEUTCXcfgpMGIr7uM0HZ0/0/da"><img src="http://feedads.g.doubleclick.net/~a/NJ7WBFQEUTCXcfgpMGIr7uM0HZ0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/NJ7WBFQEUTCXcfgpMGIr7uM0HZ0/1/da"><img src="http://feedads.g.doubleclick.net/~a/NJ7WBFQEUTCXcfgpMGIr7uM0HZ0/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=iVTms5gASiA:kUCoIkKFu2c:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=iVTms5gASiA:kUCoIkKFu2c:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/iVTms5gASiA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/06/how-to-lose-your-data.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/06/how-to-lose-your-data.html</feedburner:origLink></item>
		<item>
		<title>Simple Trick to Keep Your Computer from Locking Up</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/V_2lXp0jm7g/simple-trick-to-keep-your-computer-from-locking-up.html</link>
		<comments>http://www.asktheadmin.com/2009/06/simple-trick-to-keep-your-computer-from-locking-up.html#comments</comments>
		<pubDate>Sun, 21 Jun 2009 17:58:23 +0000</pubDate>
		<dc:creator>kerry</dc:creator>
		
		<category><![CDATA[Free Download]]></category>

		<category><![CDATA[General]]></category>

		<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/?p=2304</guid>
		<description><![CDATA[How many times have you been working on your Windows computer and without warning it locks up. Unfortunately many of us will say that this happens much more than you&#8217;d like.   One of the key reasons that your computer locks up is due to a non-responsive program, in other words a program or file running [...]]]></description>
			<content:encoded><![CDATA[<p>How many times have you been working on your Windows computer and without warning it locks up. Unfortunately many of us will say that this happens much more than you&#8217;d like.   One of the key reasons that your computer locks up is due to a non-responsive program, in other words a program or file running just gets stuck.</p>
<p>Fortunately, windows has an option that allows you to get one step closer to avoiding those very annoying lockups.  This isn&#8217;t a cure-all, but can be helpful.  <strong>This only requires a simple tweak to your registry.</strong> Here&#8217;s how&#8230;.  <em>(note: I always make a backup of my registry before making changes, so I recommend you do this first but not required).</em></p>
<p>1) <strong>Go To Regedit</strong>: Start -&gt; Run -&gt;  Type: Regedit</p>
<p>2) <strong>Find the correct directory:</strong> HKey_Current_User -&gt; Control Panel -&gt; Desktop</p>
<p>3) <strong>Find the correct file:</strong> Look on the right side and scroll down to find <em><strong>WaitToKillAppTimeout</strong></em>.  You&#8217;ll notice that this likely says 20000 today.  That&#8217;s the time in miliseconds that it waits before it stops an application that has locked up.  That&#8217;s 20 seconds!  But we&#8217;ll change that&#8230;..</p>
<p>4)  <strong>Modify the File:</strong> Double click on <em><strong>WaitToKillAppTimeout</strong></em>.  You&#8217;ll then get a new window that allows you to edit the &#8220;Value Data&#8221;.  I changed mine to 1000 (1 second).  Then click &#8220;OK&#8221; to complete the modification.</p>
<p>5) <strong>Close out of the registry.</strong> Click the big x on the top upper right.</p>
<p>6) <strong>You&#8217;re done&#8230;.</strong></p>
<p>One step closer to a finely tuned machine.</p>
<p>Kerry enjoys writing about a variety of topics.  Her favorite website is CallCatalog.com which is a <a title="reverse phone directory" href="http://www.callcatalog.com">reverse phone directory</a> website that allows you to lookup and report unwanted phone calls.  You can also read her blog which discusses <a title="reverse phone lookup" href="http://www.callcatalog.com/blog">phone number</a> privacy issues.</p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/04/cool-password-trick.html" rel="bookmark" title="Permanent Link: Cool Password Trick" >Cool Password Trick</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/07/question-vista-how-can-i-disable-usb.html" rel="bookmark" title="Permanent Link: Question Vista: How can I disable usb access to one workstation on my windows network?" >Question Vista: How can I disable usb access to one workstation on my windows network?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/12/how-to-disable-or-enable-control-alt-delete-in-vista-easily.html" rel="bookmark" title="Permanent Link: How to disable or enable Control Alt Delete in Vista&#8230; Easily." >How to disable or enable Control Alt Delete in Vista&#8230; Easily.</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/05/group-policy-desktop-lockdown-part-1.html" rel="bookmark" title="Permanent Link: Group Policy: Desktop Lockdown Part 1" >Group Policy: Desktop Lockdown Part 1</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/04/the-plight-of-the-front-end-web-developer-today.html" rel="bookmark" title="Permanent Link: The plight of the Front-End Web Developer today" >The plight of the Front-End Web Developer today</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/Slh6GDpr9w7M4Gcw75Z0-0cYIdE/0/da"><img src="http://feedads.g.doubleclick.net/~a/Slh6GDpr9w7M4Gcw75Z0-0cYIdE/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Slh6GDpr9w7M4Gcw75Z0-0cYIdE/1/da"><img src="http://feedads.g.doubleclick.net/~a/Slh6GDpr9w7M4Gcw75Z0-0cYIdE/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=V_2lXp0jm7g:i8E1kaS_Nv8:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=V_2lXp0jm7g:i8E1kaS_Nv8:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/V_2lXp0jm7g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/06/simple-trick-to-keep-your-computer-from-locking-up.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/06/simple-trick-to-keep-your-computer-from-locking-up.html</feedburner:origLink></item>
		<item>
		<title>Admin’s Arsenal: Process Explorer</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/wU3AKS-Th64/admins-arsenal-process-explorer.html</link>
		<comments>http://www.asktheadmin.com/2009/06/admins-arsenal-process-explorer.html#comments</comments>
		<pubDate>Thu, 18 Jun 2009 21:53:42 +0000</pubDate>
		<dc:creator>Joe Glessner</dc:creator>
		
		<category><![CDATA[Admin's Arsenal]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/?p=2311</guid>
		<description><![CDATA[Once in a while I will get a call from one of my users describing a problem, and immediately I think to myself &#8220;impossible&#8221;. Like &#8220;it&#8217;s just not possible that your computer is deleting your email all by itself&#8221;.
Then there are the times where I find myself five minutes into the conversation going &#8220;uhhhh, yeah [...]]]></description>
			<content:encoded><![CDATA[<p>Once in a while I will get a call from one of my users describing a problem, and immediately I think to myself &#8220;impossible&#8221;. Like &#8220;it&#8217;s just not possible that your computer is deleting your email all by itself&#8221;.</p>
<p>Then there are the times where I find myself five minutes into the conversation going &#8220;uhhhh, yeah that&#8217;s not good, I wonder what could cause that?&#8221; (believe it or not, us IT people don&#8217;t in fact know immediately exactly what is wrong with your computer, and we&#8217;re even wrong once in a third Tuesday of the week).</p>
<p>When I need to get a crystal clear picture of what is happening on a system, I turn to Process Explorer from Sysinternals (now brought to you by Microsoft!). Process Explorer is everything that Windows&#8217; Task Manager wishes it was:</p>
<p>Overview</p>
<blockquote>
<p style="normal"><strong><span style="normal">Process Explorer is an advanced process management utility that picks up where Task Manager leaves off. It will show you detailed information about a process including its icon, command-line, full image path, memory statistics, user account, security attributes, and more. When you zoom in on a particular process you can list the DLLs it has loaded or the operating system resource handles it has open. A search capability enables you to track down a process that has a resource opened, such as a file, directory or Registry key, or to view the list of processes that have a DLL loaded.</span></strong></p>
<p class="hcp4">The Process Explorer display consists of two sub-windows. The top always shows a list of the currently active processes, including the names of their owning accounts, whereas the information displayed in the bottom window, which you can close, depends on the mode that Process Explorer is in: if it is in handle mode you will see the handles that the process selected in the top window has opened; if Process Explorer is in DLL mode you will see the DLLs and memory-mapped files that the process has loaded.</p>
<p class="hcp4">Process Explorer also has a powerful search capability that will quickly show you which processes have particular handles opened or DLLs loaded. The unique capabilities of Process Explorer make it useful for tracking down DLL-version problems or handle leaks, and provide insight into the way Windows and applications work.</p>
<p class="hcp4">You can obtain equivalent command-line tools, Handle and ListDLLs, at the <a class="hcp3" href="http://www.sysinternals.com/">Sysinternals</a> Web site.</p>
<p class="hcp4">Process Explorer does not require administrative privileges to run and <span style="normal">works on Windows 9x/Me, Windows NT 4.0, Windows 2000, Windows XP, Server 2003, Windows Vista, Windows Server 2008 and on the x64 version of 64-bit Windows XP, Windows Vista, Windows Server 2003, and Windows Server 2008.</span></p>
</blockquote>
<p>So, why use this rather than any of the dozens of other Task Manager replacements you can find on the internet? Well for starters, Process Explorer was written by Mark Russinovich. Mr. Russinovich is acknowledged as one of the foremost experts on Microsoft Windows in general, and the NTFS  file system in particular. The man is incredibly knowledgeable about the internal workings of Microsoft Operating Systems, and has authored several books on Microsoft Technologies.</p>
<p>Beyond that, the sheer depth of functionality in this product makes it a hands down winner in my book. Oh and did I mention that you can run it from a USB drive?</p>
<p>You can get more information on Process Explorer (and download it) <a title="microsoft.com" href="http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx" target="_blank">here</a>.</p>
<p class="hcp4">
<p class="hcp4"><span style="normal"><br />
</span></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/08/admins-arsenal-explorer.html" rel="bookmark" title="Permanent Link: Admin&#8217;s Arsenal: Explorer++" >Admin&#8217;s Arsenal: Explorer++</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/11/admins-arsenal-baregrep.html" rel="bookmark" title="Permanent Link: Admin&#8217;s Arsenal: BareGrep" >Admin&#8217;s Arsenal: BareGrep</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/07/question-why-cant-i-delete-certain.html" rel="bookmark" title="Permanent Link: Question: Why can&#8217;t I delete certain files as Admin on my windows machine?" >Question: Why can&#8217;t I delete certain files as Admin on my windows machine?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/05/the-secret-easy-way-to-restart-explorer-in-vista-and-the-harder-xp-way.html" rel="bookmark" title="Permanent Link: The Secret Easy Way to Restart Explorer in Vista. And the harder XP way&#8230;" >The Secret Easy Way to Restart Explorer in Vista. And the harder XP way&#8230;</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/08/admins-arsenal-keepass-v1x.html" rel="bookmark" title="Permanent Link: Admin&#8217;s Arsenal: KeePass v1.x" >Admin&#8217;s Arsenal: KeePass v1.x</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/NtdWpsKQq-uW5KpPs1MFjdl5rGA/0/da"><img src="http://feedads.g.doubleclick.net/~a/NtdWpsKQq-uW5KpPs1MFjdl5rGA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/NtdWpsKQq-uW5KpPs1MFjdl5rGA/1/da"><img src="http://feedads.g.doubleclick.net/~a/NtdWpsKQq-uW5KpPs1MFjdl5rGA/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=wU3AKS-Th64:ypI6P3wRowI:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=wU3AKS-Th64:ypI6P3wRowI:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/wU3AKS-Th64" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/06/admins-arsenal-process-explorer.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/06/admins-arsenal-process-explorer.html</feedburner:origLink></item>
		<item>
		<title>Admin’s Arsenal: Evernote 3.1</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/y-WbpaFq1lI/admins-arsenal-evernote-3-1.html</link>
		<comments>http://www.asktheadmin.com/2009/06/admins-arsenal-evernote-3-1.html#comments</comments>
		<pubDate>Thu, 18 Jun 2009 08:00:00 +0000</pubDate>
		<dc:creator>Joe Glessner</dc:creator>
		
		<category><![CDATA[Admin's Arsenal]]></category>

		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/?p=2310</guid>
		<description><![CDATA[
Initially I had some trepidation about doing an AA on Evernote, because as of v3, it is web centric, and some of the great features of the old v2.2 have been removed. But man is it useful!
ok, so what is Evernote? It’s difficult to explain correctly. Basically it is a note taking application on the [...]]]></description>
			<content:encoded><![CDATA[<p style="center"><a href="http://www.asktheadmin.com/wp-content/uploads/2009/06/evernote.png"><img class="aligncenter" style="0pt" src="http://www.asktheadmin.com/wp-content/uploads/2009/06/evernote-thumb.png" border="0" alt="evernote" width="244" height="244" /></a></p>
<p>Initially I had some trepidation about doing an AA on Evernote, because as of v3, it is web centric, and some of the great features of the old v2.2 have been removed. But <strong>man</strong> is it <strong><em>useful!</em></strong></p>
<p>ok, so what is Evernote? It’s difficult to explain correctly. Basically it is a note taking application on the order of Microsoft’s OneNote (which I like, but can’t justify buying a copy of for every system I work on, so it’s kind of limited in its use for me), but taken to a whole different level, oh, and it’s free (sort of).</p>
<p>Here is the description from the Evernote site:</p>
<blockquote>
<h4>Remember everything.</h4>
<p>Evernote allows you to easily <strong>capture</strong> information in any environment using whatever device or platform you find most convenient, and makes this information <strong>accessible</strong> and <strong>searchable</strong> at any time, from anywhere. Did we mention that it&#8217;s <strong>free</strong>?</p></blockquote>
<p>Yeah, that’s about accurate. Currently there is a free Evernote app for Windows, and Mac OS X (Leopard), a bookmarklet that will work on just about any browser, a Firefox extension, and apps for the iPhone, Palm Pre, Windows mobile phones, and limited Blackberry models .</p>
<p>It requires Blackberry OS4.6 or above so at the moment it is limited to the Bold (and since I just got one, this is a good thing), Curve (the new one), and Storm, however I have no doubt that RIM will update all others to 4.6 soon.</p>
<p>The thing that makes this a killer app for me is that Evernote can make text in images searchable. So if I take a picture with my Blackberry of say, a BSoD error message, and save it to Evernote, I can then access it on my desktop (or another machine connected to the internet), and figure out what that error message is telling me.</p>
<p>All in all, the ability to clip portions of websites, entire web pages, text from documents, and email from Outlook (yeah it integrates with Outlook), makes this a really really handy tool for IT work (not to mention blogging).</p>
<p>The free accounts are limited to 40MB of Monthly upload data (text, images, audio, and .pdf files only), whereas the premium version gets you 500MB per moth, removes the small advertising window in the desktop app, and can sync any kind of file.</p>
<p>While 40MB may not seem like much, it is roughly 20,000 text notes, or 400 mobile snapshots, or 270 web clips, or 40 audio notes, or 11 high resolution photos. 500MB is roughly 12.5 times that amount of data.</p>
<p>The cost of the premium account is $5/mo. or $45/year.</p>
<p>If you’d like to try Evernote out, you can sign up and download it here: <a title="http://www.evernote.com/" href="http://www.evernote.com/">http://www.evernote.com/</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/11/admins-arsenal-baregrep.html" rel="bookmark" title="Permanent Link: Admin&#8217;s Arsenal: BareGrep" >Admin&#8217;s Arsenal: BareGrep</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/08/admins-arsenal-keepass-v1x.html" rel="bookmark" title="Permanent Link: Admin&#8217;s Arsenal: KeePass v1.x" >Admin&#8217;s Arsenal: KeePass v1.x</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/06/admins-arsenal-dban.html" rel="bookmark" title="Permanent Link: Admins Arsenal: DBAN" >Admins Arsenal: DBAN</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/08/the-admins-arsenal-lsgrabexe.html" rel="bookmark" title="Permanent Link: The Admin&#8217;s Arsenal: lsgrab.exe" >The Admin&#8217;s Arsenal: lsgrab.exe</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/12/the-12-admin-days-of-christmas.html" rel="bookmark" title="Permanent Link: The 12 Admin Days of Christmas" >The 12 Admin Days of Christmas</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/thpkQ9afYbGw5L0pQafkcW6YL4E/0/da"><img src="http://feedads.g.doubleclick.net/~a/thpkQ9afYbGw5L0pQafkcW6YL4E/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/thpkQ9afYbGw5L0pQafkcW6YL4E/1/da"><img src="http://feedads.g.doubleclick.net/~a/thpkQ9afYbGw5L0pQafkcW6YL4E/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=y-WbpaFq1lI:FxW0CKTbsS8:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=y-WbpaFq1lI:FxW0CKTbsS8:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/y-WbpaFq1lI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/06/admins-arsenal-evernote-3-1.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/06/admins-arsenal-evernote-3-1.html</feedburner:origLink></item>
		<item>
		<title>Admins Arsenal: DBAN</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/a5rz1KFx7Qw/admins-arsenal-dban.html</link>
		<comments>http://www.asktheadmin.com/2009/06/admins-arsenal-dban.html#comments</comments>
		<pubDate>Tue, 16 Jun 2009 21:57:14 +0000</pubDate>
		<dc:creator>Joe Glessner</dc:creator>
		
		<category><![CDATA[Admin's Arsenal]]></category>

		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/?p=2312</guid>
		<description><![CDATA[
Ever buy a used Hard Drive on Ebay or Craigslist? Ever look to see if there was any data on it? I have, and let me tell you, it is downright scary what people will leave on HDD&#8217;s when they sell them as used. I recently purchased 12 used 250 GB SATA HDD&#8217;s from Ebay [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter" src="http://www.emergingtechs.com/files/images/bootcd-dban1.gif" alt="DBAN" /></p>
<p>Ever buy a used Hard Drive on Ebay or Craigslist? Ever look to see if there was any data on it? I have, and let me tell you, it is downright scary what people will leave on HDD&#8217;s when they sell them as used. I recently purchased 12 used 250 GB SATA HDD&#8217;s from Ebay for a NAS project I was working on, and of those 12, 9 of them had not been so much as formatted.</p>
<p>Of those 9, all but one had data that would have been usable for identity theft: files with credit card information, copies of bills, saved email that had account information, not to mention the astounding number of ummm, not safe for work pictures taken by (or of) the former owners. In all cases I could have contacted the former owner, as on all 9 drives I found current addresses and phone numbers for the former owners.</p>
<p>This is 2009, I would have thought that by now better than 25% of people selling used hard drives would know better.</p>
<p>As an IT Professional, I get used computers all the time (for some reason everyone I work with thinks I need every used machine I can get my hands on, especially if it has a &#8220;Designed for Windows 95!&#8221; sticker on it!). The ratio of these HDD&#8217;s that I get with data still on them is more like 95%. It&#8217;s easy to format a HDD, until you get one that just won&#8217;t format. Mostly the ones I&#8217;ve seen this on were disks that I installed an obscure linux distro on, and then for whatever reason decided to install Windows on. The Microsoft format tools are not always capable of handling partitions like this, which is where DBAN comes in.</p>
<p>Darik&#8217;s Boot And Nuke (or DBAN) is a self-contained boot disk that securely wipes the hard disks of most computers. DBAN will automatically and completely delete the contents of any hard disk that it can detect, which makes it an appropriate utility for bulk or emergency data destruction.</p>
<p>One of the really great things about DBAN is that it can run from a floppy, or be burned to a bootable CD, which means it can be used on almost any computer. Better than that, DBAN has many options for how it wipes the disk, ranging from the single pass &#8220;autonuke&#8221;, to the 35 pass random data Gutmann method, and of course DBAN also offers users a method for definable number of passes.</p>
<p>In short, DBAN excels at destroying all data on a Hard Disk. You can find more information on DBAN <a title="dban.org" href="http://www.dban.org/" target="_blank">here</a>.</p>
<p><!-- bablooO --></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/11/admins-arsenal-baregrep.html" rel="bookmark" title="Permanent Link: Admin&#8217;s Arsenal: BareGrep" >Admin&#8217;s Arsenal: BareGrep</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/08/admins-arsenal-keepass-v1x.html" rel="bookmark" title="Permanent Link: Admin&#8217;s Arsenal: KeePass v1.x" >Admin&#8217;s Arsenal: KeePass v1.x</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/08/the-admins-arsenal-lsgrabexe.html" rel="bookmark" title="Permanent Link: The Admin&#8217;s Arsenal: lsgrab.exe" >The Admin&#8217;s Arsenal: lsgrab.exe</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/12/the-12-admin-days-of-christmas.html" rel="bookmark" title="Permanent Link: The 12 Admin Days of Christmas" >The 12 Admin Days of Christmas</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/09/admins-arsenal-mremote.html" rel="bookmark" title="Permanent Link: Admin&#8217;s Arsenal: mRemote" >Admin&#8217;s Arsenal: mRemote</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/P7R8tdND6IePUGMwLXC53EhHe_w/0/da"><img src="http://feedads.g.doubleclick.net/~a/P7R8tdND6IePUGMwLXC53EhHe_w/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/P7R8tdND6IePUGMwLXC53EhHe_w/1/da"><img src="http://feedads.g.doubleclick.net/~a/P7R8tdND6IePUGMwLXC53EhHe_w/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=a5rz1KFx7Qw:soN0D9fX258:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=a5rz1KFx7Qw:soN0D9fX258:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/a5rz1KFx7Qw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/06/admins-arsenal-dban.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/06/admins-arsenal-dban.html</feedburner:origLink></item>
		<item>
		<title>A Weekend without the Internet on XKCD…</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/iRb3UGlv8aI/a-weekend-without-the-internet-on-xkcd.html</link>
		<comments>http://www.asktheadmin.com/2009/06/a-weekend-without-the-internet-on-xkcd.html#comments</comments>
		<pubDate>Tue, 16 Jun 2009 17:32:20 +0000</pubDate>
		<dc:creator>Karl L. Gechlik | AskTheAdmin.com</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/2009/06/a-weekend-without-the-internet-on-xkcd.html</guid>
		<description><![CDATA[ 
LMFAO!
_TheAddictedAdmiN_
Related PostsXKCD makes a good point about real world encryption&#8230;What XKCD really stands for!Antivirus software on a voting machine? Diebold you have done it again!What a strange thing to name your son&#8230;Your Admin goes off the grid&#8230;]]></description>
			<content:encoded><![CDATA[<p><a href=" http://xkcd.com/597/"><img title="image" style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" height="205" alt="image" src="http://www.asktheadmin.com/wp-content/uploads/2009/06/image19.png" width="644" border="0" /></a> </p>
<p>LMFAO!</p>
<p><a href="http://www.asktheadmin.com">_TheAddictedAdmiN_</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/05/xkcd-makes-a-good-point-about-real-world-encryption.html" rel="bookmark" title="Permanent Link: XKCD makes a good point about real world encryption&#8230;" >XKCD makes a good point about real world encryption&#8230;</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/08/what-xkcd-really-stands-for.html" rel="bookmark" title="Permanent Link: What XKCD really stands for!" >What XKCD really stands for!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/08/antivirus-software-on-a-voting-machine-diebold-you-have-done-it-again.html" rel="bookmark" title="Permanent Link: Antivirus software on a voting machine? Diebold you have done it again!" >Antivirus software on a voting machine? Diebold you have done it again!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/10/what-strange-thing-to-name-your-son.html" rel="bookmark" title="Permanent Link: What a strange thing to name your son&#8230;" >What a strange thing to name your son&#8230;</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/05/your-admin-goes-off-the-grid.html" rel="bookmark" title="Permanent Link: Your Admin goes off the grid&#8230;" >Your Admin goes off the grid&#8230;</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/pk3IUmthwZQs-T9pbOQpct0r7Xg/0/da"><img src="http://feedads.g.doubleclick.net/~a/pk3IUmthwZQs-T9pbOQpct0r7Xg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/pk3IUmthwZQs-T9pbOQpct0r7Xg/1/da"><img src="http://feedads.g.doubleclick.net/~a/pk3IUmthwZQs-T9pbOQpct0r7Xg/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=iRb3UGlv8aI:bBeTSvMkxGM:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=iRb3UGlv8aI:bBeTSvMkxGM:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/iRb3UGlv8aI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/06/a-weekend-without-the-internet-on-xkcd.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/06/a-weekend-without-the-internet-on-xkcd.html</feedburner:origLink></item>
		<item>
		<title>Mysterious Server 2003 disk space consumption</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/nwklQtmwEPo/mysterious-server-2003-disk-space-consumption.html</link>
		<comments>http://www.asktheadmin.com/2009/06/mysterious-server-2003-disk-space-consumption.html#comments</comments>
		<pubDate>Sun, 14 Jun 2009 08:00:47 +0000</pubDate>
		<dc:creator>Joe Glessner</dc:creator>
		
		<category><![CDATA[Admin's Arsenal]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/?p=1935</guid>
		<description><![CDATA[So the System drive of my (primary) domain controller has been running low on disk space (it&#8217;s a 20GB partition running with about 4GB or so free). This has been a nagging issue that I&#8217;ve had off and on for a while now, and I haven&#8217;t really had the time to delve into it.
I decided [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.asktheadmin.com/wp-content/uploads/2008/10/2003.jpg"><img class="alignleft size-medium wp-image-1937" title="2003" src="http://www.asktheadmin.com/wp-content/uploads/2008/10/2003.jpg" alt="" width="300" height="300" /></a>So the System drive of my (primary) domain controller has been running low on disk space (it&#8217;s a 20GB partition running with about 4GB or so free). This has been a nagging issue that I&#8217;ve had off and on for a while now, and I haven&#8217;t really had the time to delve into it.</p>
<p>I decided to start my investigation by running <a title="windirstat.info" onclick="pageTracker._trackPageview('/outgoing/windirstat.info/?referer=http://www.asktheadmin.com/wp-admin/edit.php?post_status=pending');" href="http://windirstat.info/" target="_blank">WinDirStat</a> and looking for any oddly large files. The largest portion of the System disk is consumed by the Program Files directory (no big surprise there), and aside from a couple slightly disturbing large files from my backup software there is only one group of large files on the drive - hovering in at about 12GB for the 8 or so files. And they all have the same path and are similarly named: C:\System Volume Information\{914b4760-84b2-11dd-bca9-000e0cb2b564}{3808876b-c176-4e28-b7ae-04046e6cc752}</p>
<p>Hmmm, interesting. A quick Google search turns up some results linking this directory (more specifically files with CSLID names in this directory) to two things: System Restore points, and virus files.</p>
<p>Well I&#8217;m pretty sure it&#8217;s not virus files (no other odd behavior or weird network activity), and if I&#8217;m not mistaken to enable System Restore on WS2003 you have to manually copy over some files from an XP CD (which is a pretty cool hack, but not something I&#8217;ve done on any corporate network I&#8217;ve ever worked on).</p>
<p>At this point I start hearing dramatic music in the back of my mind, I&#8217;ve got a bonafied mystery! Or at least initial facts would indicate so.</p>
<p>Well a bit more in depth investigation turns up what some of you already knew at this point, the culprit is VSS. But <strong><em>I never configured VSS</em></strong><em>!</em> (queue swelling of dramatic music in the background)</p>
<p>Ok so this is something of a mystery after all. So I go digging around in the event logs for the last 3 years looking for the initial VSS snapshot message. It sounds like a lot of work, but <a title="microsoft.com" onclick="pageTracker._trackPageview('/outgoing/www.microsoft.com/downloads/details.aspx?FamilyID=890cd06b-abf8-4c25-91b2-f8d975cf8c07_amp_displaylang=en&amp;referer=http://www.asktheadmin.com/wp-admin/edit.php?post_status=pending');" href="http://www.microsoft.com/downloads/details.aspx?FamilyID=890cd06b-abf8-4c25-91b2-f8d975cf8c07&amp;displaylang=en" target="_blank">Microsoft Log Parser</a> actually makes things like this pretty trivial.</p>
<p>Turns out that the VSS snapshots started on the same day that I installed our current Backup software (Yosemite Backup 8.5 sp2) which cooincidentally has the ability to make use of VSS snapshots!</p>
<p>Now this is not a huge issue, as VSS will delete old snapshots when space is needed, however I tend to take exception to software doing things like this without my permission.</p>
<p>Well luckily for me, I used to be a manager at the company that makes our backup software, so I fire up my trusty IM client, and start poking at the engineering department.</p>
<p>Twenty minutes later I have my trusty pipe and smoking jacket firmly in place, as I am feeling quite like Sherlock Holmes. It seems that in fact it was the backup software which enabled VSS for all volumes on my server, and (because it uses the defaults when enabling VSS) had set VSS to not limit the space consumed by snapshots!</p>
<p>A simple trip into Disk Management, and a quick change to the drive&#8217;s Property page, and VSS is now limited to 4GB for the system partition (which is far more than I&#8217;ll ever need). Interestingly enough had I disabled the VSS service on this machine before installing the backup software, it would not have enabled VSS. I&#8217;ve asked that they include a note about VSS being automatically configured to the Yosemite Backup installer (it may exist now, I&#8217;m not sure as I haven&#8217;t actually read any of the installer screens in years), but who knows when that will make it into the software.</p>
<p>As a side note, I&#8217;ve spoken to the Tech Support Manager at Yosemite Technologies (they make Yosemite Backup), and they are currently writing a knowledge base article about this, and how to change the VSS settings from the defaults that Yosemite Backup enables.</p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/04/remotely-turn-on-remote-desktop-on-server-2003.html" rel="bookmark" title="Permanent Link: Remotely turn on Remote Desktop for Windows Server 2003" >Remotely turn on Remote Desktop for Windows Server 2003</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/05/what-heck-is-filling-up-my-server.html" rel="bookmark" title="Permanent Link: What the Heck is Filling Up My Server?" >What the Heck is Filling Up My Server?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/06/recover-windows-xp-2000-2003-and-nt-2.html" rel="bookmark" title="Permanent Link: Recover Windows XP, 2000, 2003 and NT passwords in a breeze for free&#8230; YES FREE!" >Recover Windows XP, 2000, 2003 and NT passwords in a breeze for free&#8230; YES FREE!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/09/apple-time-capsule-review.html" rel="bookmark" title="Permanent Link: Apple Time Capsule Review. Cross platform router and backup device." >Apple Time Capsule Review. Cross platform router and backup device.</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/09/my-network-works-great-from-9-to-5-but-after-that-we-have-bandwidth-issues-and-space-disappears-help.html" rel="bookmark" title="Permanent Link: My network works great from 9 to 5 but after that we have bandwidth issues and space disappears! Help!!" >My network works great from 9 to 5 but after that we have bandwidth issues and space disappears! Help!!</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/lSCJjPkUlqdbUumlhqHGaKNM5Zs/0/da"><img src="http://feedads.g.doubleclick.net/~a/lSCJjPkUlqdbUumlhqHGaKNM5Zs/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/lSCJjPkUlqdbUumlhqHGaKNM5Zs/1/da"><img src="http://feedads.g.doubleclick.net/~a/lSCJjPkUlqdbUumlhqHGaKNM5Zs/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=nwklQtmwEPo:NNHKMmuIJYs:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=nwklQtmwEPo:NNHKMmuIJYs:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/nwklQtmwEPo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/06/mysterious-server-2003-disk-space-consumption.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/06/mysterious-server-2003-disk-space-consumption.html</feedburner:origLink></item>
		<item>
		<title>Windows Vista Quick Tip: Turning on/off Thumbnails</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/xtAZ2xWq8FQ/windows-vista-quick-tip-turning-onoff-thumbnails.html</link>
		<comments>http://www.asktheadmin.com/2009/06/windows-vista-quick-tip-turning-onoff-thumbnails.html#comments</comments>
		<pubDate>Thu, 11 Jun 2009 08:00:44 +0000</pubDate>
		<dc:creator>eldipablo</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/?p=1871</guid>
		<description><![CDATA[
I posted a little while back about how I recently upgraded my entire home network to a Windows 2008 domain, which includes Windows Vista Clients.
Well, my wife got to playing with her desktop for the first time last week, and one of the things she noticed was that when she went to view her photos [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.asktheadmin.com/wp-content/uploads/2008/08/vistatipata.png"><img class="size-full wp-image-1872 aligncenter" title="vistatipata" src="http://www.asktheadmin.com/wp-content/uploads/2008/08/vistatipata.png" alt="" width="332" height="318" /></a></p>
<p>I posted a little while back about how <a onclick="pageTracker._trackPageview('/outgoing/www.bauer-power.net/2008/07/upgrading-to-windows-2008-domain.html?referer=http://www.asktheadmin.com/wp-admin/edit.php?paged=9');pageTracker._trackPageview('/outgoing/www.bauer-power.net/2008/07/upgrading-to-windows-2008-domain.html?referer=http://www.asktheadmin.com/wp-admin/edit.php');" href="http://www.bauer-power.net/2008/07/upgrading-to-windows-2008-domain.html" target="_blank">I recently upgraded my entire home network to a Windows 2008 domain</a>, which includes Windows Vista Clients.</p>
<p>Well, my wife got to playing with her desktop for the first time last week, and one of the things she noticed was that when she went to view her photos in her pictures directory, that there weren&#8217;t any thumbnails for her to preview the images. Me being her free tech support (I think that is why she still puts up with me) she asked me to fix it.</p>
<p>There are two ways to get the thumbnails back. The first way, you do the following within the folder you meant to view thumbnails in:</p>
<ol>
<li style="font-weight: bold; color: #3333ff;">Click on Organize &gt; Folder and Search Options<a onclick="pageTracker._trackPageview('/outgoing/1.bp.blogspot.com/_jLaEIqL6T8Y/SKB8MXulCOI/AAAAAAAAA8Q/ikK77Z9Y3hs/s1600-h/Organization.PNG?referer=http://www.asktheadmin.com/wp-admin/edit.php?paged=9');pageTracker._trackPageview('/outgoing/1.bp.blogspot.com/_jLaEIqL6T8Y/SKB8MXulCOI/AAAAAAAAA8Q/ikK77Z9Y3hs/s1600-h/Organization.PNG?referer=http://www.asktheadmin.com/wp-admin/edit.php');" href="http://1.bp.blogspot.com/_jLaEIqL6T8Y/SKB8MXulCOI/AAAAAAAAA8Q/ikK77Z9Y3hs/s1600-h/Organization.PNG" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img id="BLOGGER_PHOTO_ID_5233319318974171362" style="display: block; margin: 0px auto 10px; cursor: pointer; text-align: center;" src="http://1.bp.blogspot.com/_jLaEIqL6T8Y/SKB8MXulCOI/AAAAAAAAA8Q/ikK77Z9Y3hs/s400/Organization.PNG" border="0" alt="" /></a></li>
<li style="font-weight: bold; color: #3333ff;">Click the View Tab</li>
<li style="font-weight: bold; color: #3333ff;">Uncheck the &#8220;Always show icons, never thumbnails&#8221; option<a onclick="pageTracker._trackPageview('/outgoing/2.bp.blogspot.com/_jLaEIqL6T8Y/SKB77EOnQmI/AAAAAAAAA8I/OEu04YbvRo8/s1600-h/file_Options.PNG?referer=http://www.asktheadmin.com/wp-admin/edit.php?paged=9');pageTracker._trackPageview('/outgoing/2.bp.blogspot.com/_jLaEIqL6T8Y/SKB77EOnQmI/AAAAAAAAA8I/OEu04YbvRo8/s1600-h/file_Options.PNG?referer=http://www.asktheadmin.com/wp-admin/edit.php');" href="http://2.bp.blogspot.com/_jLaEIqL6T8Y/SKB77EOnQmI/AAAAAAAAA8I/OEu04YbvRo8/s1600-h/file_Options.PNG" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img id="BLOGGER_PHOTO_ID_5233319021682049634" style="display: block; margin: 0px auto 10px; cursor: pointer; text-align: center;" src="http://2.bp.blogspot.com/_jLaEIqL6T8Y/SKB77EOnQmI/AAAAAAAAA8I/OEu04YbvRo8/s400/file_Options.PNG" border="0" alt="" /></a></li>
<li style="font-weight: bold; color: #3333ff;">Click Apply, then OK.</li>
</ol>
<p>The other option is to:</p>
<ol style="font-weight: bold; color: #3333ff;">
<li>Click Start &gt; Contol Panel</li>
<li>In classic view, click on Folder Options</li>
<li>Click the View Tab</li>
<li>Uncheck the &#8220;Always show icons, never thumbnails&#8221; option</li>
<li>Click Apply, then OK.</li>
</ol>
<p>You guessed it, the second option is basically the same as the first. To turn the thumbnails off, you just check the box instead of uncheck it. Do you have any other cool, quick Vista tips you want to share? Hit me up in the comments.</p>
<p><a onclick="pageTracker._trackPageview('/outgoing/www.bauer-power.net/2008/08/windows-vista-quick-tip-turning-onoff.html?referer=http://www.asktheadmin.com/wp-admin/edit.php?paged=9');pageTracker._trackPageview('/outgoing/www.bauer-power.net/2008/08/windows-vista-quick-tip-turning-onoff.html?referer=http://www.asktheadmin.com/wp-admin/edit.php');" href="http://www.bauer-power.net/2008/08/windows-vista-quick-tip-turning-onoff.html">Originally posted on Bauer-Power.</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/11/turn-off-aero-glass-in-vista.html" rel="bookmark" title="Permanent Link: Turn off Aero Glass in Vista. A quick how to." >Turn off Aero Glass in Vista. A quick how to.</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/08/ie7-tip-show-me-those-tabs-2.html" rel="bookmark" title="Permanent Link: IE7 Tip: Show me those tabs!" >IE7 Tip: Show me those tabs!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/03/clean-install-workaround-for-vista-2.html" rel="bookmark" title="Permanent Link: Clean install workaround for Vista upgrade discovered" >Clean install workaround for Vista upgrade discovered</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/07/vista-battery-saver-2.html" rel="bookmark" title="Permanent Link: Vista Battery Saver" >Vista Battery Saver</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/07/vistas-successor-now-known-as-7-due-out-within-three-years-why-seven-and-not-eight.html" rel="bookmark" title="Permanent Link: Vista&#8217;s successor now known as 7, due out within three years. Why seven and not EIGHT?" >Vista&#8217;s successor now known as 7, due out within three years. Why seven and not EIGHT?</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/QskS_31zEJe2Wb9GhiBp-a-RAoY/0/da"><img src="http://feedads.g.doubleclick.net/~a/QskS_31zEJe2Wb9GhiBp-a-RAoY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/QskS_31zEJe2Wb9GhiBp-a-RAoY/1/da"><img src="http://feedads.g.doubleclick.net/~a/QskS_31zEJe2Wb9GhiBp-a-RAoY/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=xtAZ2xWq8FQ:dw_Az0JRYos:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=xtAZ2xWq8FQ:dw_Az0JRYos:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/xtAZ2xWq8FQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/06/windows-vista-quick-tip-turning-onoff-thumbnails.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/06/windows-vista-quick-tip-turning-onoff-thumbnails.html</feedburner:origLink></item>
		<item>
		<title>Windows Command Line tips.</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/WzQO89VX5aM/windows-command-line-tips.html</link>
		<comments>http://www.asktheadmin.com/2009/06/windows-command-line-tips.html#comments</comments>
		<pubDate>Wed, 10 Jun 2009 14:59:23 +0000</pubDate>
		<dc:creator>Karl L. Gechlik | AskTheAdmin.com</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/2009/06/windows-command-line-tips.html</guid>
		<description><![CDATA[ Did you know that you can hit F7 in The Windows Command Line for a history of commands that you can choose with your keyboard? Did you know you can copy a file path by just dragging a file into the command line?
&#160;
Hit F7 and you will get a complete list of commands that [...]]]></description>
			<content:encoded><![CDATA[<p> Did you know that you can hit F7 in The Windows Command Line for a history of commands that you can choose with your keyboard? Did you know you can copy a file path by just dragging a file into the command line?</p>
<p>&#160;</p>
<blockquote><p>Hit F7 and you will get a complete list of commands that you executed. Use the arrow keys to highlight the command you want to run again or just hit the number key corresponding to the command that you want to execute.</p>
<p align="center"><img src="http://www.makeuseof.com/wp-content/uploads/2009/06/fseven.png" /></p>
<h5>History keys</h5>
<p>Use F1 to paste the previous command one character at a time, F2 (followed by a number) to paste the previous command up to the said number and F3 to paste the previous command.</p>
<h5>Run multiple commands</h5>
<p>You can run multiple command by separating them with &amp;&amp;. Note that this doesn’t run the commands simultaneously. Instead, the command towards the left is run first and if it completes successfully then the second command will run. If the first command fails, then the second command will not run</p>
</blockquote>
<p>&#160;</p>
<p>Check out these and other great Command Line Tips from Varun over at MakeUseOf.com here:</p>
<p><a title="http://www.makeuseof.com/tag/10-windows-command-line-tips-tricks-you-should-definitely-check-out/" href="http://www.makeuseof.com/tag/10-windows-command-line-tips-tricks-you-should-definitely-check-out/">http://www.makeuseof.com/tag/10-windows-command-line-tips-tricks-you-should-definitely-check-out/</a></p>
<p>&#160;</p>
<p><a href="http://www.asktheadmin.com">_TheRunningOutOfTimeAdmiN_</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/06/windows-command-line-is-my-best-friend.html" rel="bookmark" title="Permanent Link: The Windows Command line Is My Best Friend&#8230;" >The Windows Command line Is My Best Friend&#8230;</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/08/can-you-run-windows-restore-from-the-command-line.html" rel="bookmark" title="Permanent Link: Can you run Windows Restore from the Command Line?" >Can you run Windows Restore from the Command Line?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/07/question-is-there-anywhere-to-run.html" rel="bookmark" title="Permanent Link: Question: Is there anywhere to run a command from the Run box &quot;AS&quot; an Administrator or other user?." >Question: Is there anywhere to run a command from the Run box &quot;AS&quot; an Administrator or other user?.</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/02/windows-system-restore-from-command.html" rel="bookmark" title="Permanent Link: Windows System Restore from the command line?" >Windows System Restore from the command line?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/03/mac-question-is-there-way-to-view-my-ip.html" rel="bookmark" title="Permanent Link: Mac Question: Is there a way to view my IP address in OS X without logging on?" >Mac Question: Is there a way to view my IP address in OS X without logging on?</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/xmRevOKJEIIiyrdjnontHjCbxgU/0/da"><img src="http://feedads.g.doubleclick.net/~a/xmRevOKJEIIiyrdjnontHjCbxgU/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/xmRevOKJEIIiyrdjnontHjCbxgU/1/da"><img src="http://feedads.g.doubleclick.net/~a/xmRevOKJEIIiyrdjnontHjCbxgU/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=WzQO89VX5aM:MTozHETc14g:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=WzQO89VX5aM:MTozHETc14g:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/WzQO89VX5aM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/06/windows-command-line-tips.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/06/windows-command-line-tips.html</feedburner:origLink></item>
		<item>
		<title>Windows 2003 Error Message Insufficient Memory on Xcopy, Enter: XXCOPY,</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/qefuqASle8w/windows-2003-error-message-insufficient-memory-on-xcopy-enter-xxcopy.html</link>
		<comments>http://www.asktheadmin.com/2009/06/windows-2003-error-message-insufficient-memory-on-xcopy-enter-xxcopy.html#comments</comments>
		<pubDate>Tue, 09 Jun 2009 08:07:55 +0000</pubDate>
		<dc:creator>Karl L. Gechlik | AskTheAdmin.com</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/2009/03/windows-2003-error-message-insufficient-memory-on-xcopy-enter-xxcopy.html</guid>
		<description><![CDATA[ Over the weekend I was working on a seriously f-ed up Windows 2003 server. Let&#8217;s just say that this basket held all of this companies eggs. I needed to copy off ALL the data from the 1TB Raid array. I had 2TB in eSata drives connected to the machine. I went to run a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.asktheadmin.com/wp-content/uploads/2009/03/wizardofoz1.jpg"><img style="border-right: 0px; border-top: 0px; display: inline; margin-left: 0px; border-left: 0px; margin-right: 0px; border-bottom: 0px" title="wizardofoz1" src="http://www.asktheadmin.com/wp-content/uploads/2009/03/wizardofoz1-thumb.jpg" border="0" alt="wizardofoz1" width="164" height="112" align="left" /></a> Over the weekend I was working on a seriously f-ed up Windows 2003 server. Let&#8217;s just say that this basket held all of this companies eggs. I needed to copy off ALL the data from the 1TB Raid array. I had 2TB in eSata drives connected to the machine. I went to run a simple XCOPY batch file and all it kept doing was opening a dos window and closing pretty fricking fast. WTF?</p>
<p>I hit Window-R and typed CMD. I pasted the first line of my batch file into the command prompt like so:</p>
<p><strong>xcopy e:\users\* x:\server32\\users /D /E /C /F /H /Y</strong></p>
<p>I got back Insufficient Memory and 0 files copied. This box has 4gb of memory and less than 1gb in use. I hit up Google who had be try disabling my Antivirus to no avail.</p>
<p>I then found a XCOPY replacement called <a href="http://www.xxcopy.com/index.htm">XXCopy (found here)</a>. It says that it should help me with this exact error. It also says XXcopy is faster than Xcopy and can deal with file names longer than 256 character. So instead of counting the paths and filenames characters I downloaded and installed it. I replaced the XCOPY with XXCopy in my scripts and they took off like a bullet. I haven’t gotten into it yet but it does all of XCOPY’s switches and then some as you can see below.</p>
<p><a href="http://www.asktheadmin.com/wp-content/uploads/2009/03/xx-shot.gif"><img style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" title="xx_shot" src="http://www.asktheadmin.com/wp-content/uploads/2009/03/xx-shot-thumb.gif" border="0" alt="xx_shot" width="652" height="401" /></a></p>
<p><a href="http://www.asktheadmin.com">_TheXXAdmiN_</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/09/how-to-debug-bsod-blue-screen-of-death.html" rel="bookmark" title="Permanent Link: How to debug a (BSOD) Blue Screen of Death - Part 1" >How to debug a (BSOD) Blue Screen of Death - Part 1</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/05/windows-update-broke-my-machine.html" rel="bookmark" title="Permanent Link: Windows Update Broke My Machine (svchost.exe &#8212; application error), and How to Fix It Kinda&#8230;" >Windows Update Broke My Machine (svchost.exe &#8212; application error), and How to Fix It Kinda&#8230;</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/03/why-i-hate-vista-little-more-each-day.html" rel="bookmark" title="Permanent Link: Why I hate Vista a little more each day." >Why I hate Vista a little more each day.</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/04/remotely-turn-on-remote-desktop-on-server-2003.html" rel="bookmark" title="Permanent Link: Remotely turn on Remote Desktop for Windows Server 2003" >Remotely turn on Remote Desktop for Windows Server 2003</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/04/is-it-possible-to-have-too-much-ram.html" rel="bookmark" title="Permanent Link: Is it possible to have TOO MUCH RAM?" >Is it possible to have TOO MUCH RAM?</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/PhE-3wS3w5N21ufGiun5Z_FnX2E/0/da"><img src="http://feedads.g.doubleclick.net/~a/PhE-3wS3w5N21ufGiun5Z_FnX2E/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/PhE-3wS3w5N21ufGiun5Z_FnX2E/1/da"><img src="http://feedads.g.doubleclick.net/~a/PhE-3wS3w5N21ufGiun5Z_FnX2E/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=qefuqASle8w:FK3pM2ngCJY:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=qefuqASle8w:FK3pM2ngCJY:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/qefuqASle8w" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/06/windows-2003-error-message-insufficient-memory-on-xcopy-enter-xxcopy.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/06/windows-2003-error-message-insufficient-memory-on-xcopy-enter-xxcopy.html</feedburner:origLink></item>
		<item>
		<title>Guerrilla Event Log archiving: why and how.</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/2mAD6bLauWo/guerrilla-event-log-archiving-why-and-how.html</link>
		<comments>http://www.asktheadmin.com/2009/06/guerrilla-event-log-archiving-why-and-how.html#comments</comments>
		<pubDate>Mon, 08 Jun 2009 08:02:08 +0000</pubDate>
		<dc:creator>Joe Glessner</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/?p=1975</guid>
		<description><![CDATA[

I am quite positive that there are as many solutions (both paid and unpaid) for handling Win32 Syslogs as there are SysAdmins out there. On my *NIX machines syslogs are a simple thing, configure Syslog-ng and move on. My Windows Syslogs are a whole different story.

First off, shame on you Microsoft for not providing built [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.asktheadmin.com/wp-content/uploads/2008/11/ata_datacenter.jpg"></a></p>
<p style="TEXT-ALIGN: center"><img class="size-full wp-image-1956" title="ata_datacenter" src="http://www.asktheadmin.com/wp-content/uploads/2008/11/ata_datacenter.jpg" alt="" width="250" height="163" /></p>
<p>I am quite positive that there are as many solutions (both paid and unpaid) for handling Win32 Syslogs as there are SysAdmins out there. On my *NIX machines syslogs are a simple thing, configure <a title="wikipedia.org" onclick="pageTracker._trackPageview('/outgoing/en.wikipedia.org/wiki/Syslog-ng?referer=http://www.asktheadmin.com/wp-admin/edit.php?paged=5');pageTracker._trackPageview('/outgoing/en.wikipedia.org/wiki/Syslog-ng?referer=http://www.asktheadmin.com/wp-admin/edit.php?author=9');pageTracker._trackPageview('/outgoing/en.wikipedia.org/wiki/Syslog-ng?referer=http://www.asktheadmin.com/wp-admin/edit.php?post_status=pending');" href="http://en.wikipedia.org/wiki/Syslog-ng" target="_blank">Syslog-ng</a> and move on. My Windows Syslogs are a whole different story.</p>
<p style="TEXT-ALIGN: center">
<p>First off, shame on you Microsoft for not providing built in syslogd integration capabilities. With the volume of BSD code in Windows there is just no acceptable reason for this.</p>
<p>But that doesn’t help me. The long term goal is of course to get a central Syslog server set up that will handle and archive log entries from all of my machines (*NIX and Win32), but that is going to take two things:</p>
<ol>
<li>Time I don’t have.</li>
<li>Money I don’t have.</li>
</ol>
<p>I need a solution for archiving my Windows event logs right now, in a central location, until I can get the central Syslog server set up. As I mentioned, most of the solutions for doing this on Windows machines (the ones I feel comfortable entrusting my event logs to anyway) cost somewhere in the neighborhood of an arm, a leg, and most of an ear, so those are not viable options. Now what do you do?</p>
<p>Well if you’re me, you roll your own solution. I’ve got several WS2003 servers that I need to log the event data from, because, well to be quite honest, because this network was built by someone that is more of a *NIX SysAdmin, and didn’t set up the Windows side correctly, so there are quite a few odd bugs in this network that will take quite a while to work out.</p>
<p>Now I could go through and manually export the event logs to a file once a month, but that is way too much work. I decided to script the solution to this problem using VBScript (as it is available on all of the Servers I need event log info from).</p>
<p>I give you logArchive.vbs:<br />
<span id="more-1975"></span></p>
<p><a onclick="pageTracker._trackPageview('/outgoing/joeit.wordpress.com/2008/11/10/guerrilla-event-log-archiving-why-and-how/?referer=http://www.asktheadmin.com/wp-admin/edit.php?paged=5');" href="http://joeit.wordpress.com/2008/11/10/guerrilla-event-log-archiving-why-and-how/"><strong>If you are having issues copy &amp; pasting this script from Fire Fox you can grab it from here.</strong></a></p>
<pre>'#==============================================================================
'#==============================================================================
'#  SCRIPT.........:  logArchive.vbs
'#  AUTHOR.........:  Joe Glessner
'#  EMAIL..........:  jglessner@gmail.com
'#  VERSION........:  1.0
'#  DATE...........:  30JUL07
'#  COPYRIGHT......:  2008, Joe-IT.com
'#  LICENSE........:  Freeware
'#  REQUIREMENTS...:
'#
'#  DESCRIPTION....:  This script backs up all of the event logs on the
'#                    designated computer, to the specified file server.
'#                    Optionally this script can also clear the event logs once
'#                    they are archived.
'#
'#  NOTES..........:
'#
'#  CUSTOMIZE......:
'#==============================================================================
'#  REVISED BY.....:
'#  EMAIL..........:
'#  REVISION DATE..:
'#  REVISION NOTES.:
'#
'#==============================================================================
'#==============================================================================
'**Start Encode**

'#==============================================================================
'#  START OF SCRIPT
'#==============================================================================
'Option Explicit
'On Error Resume Next

    '#--------------------------------------------------------------------------
    '#  SCRIPT CONFIGURATION SECTION
    '#--------------------------------------------------------------------------
    '#  OPTIONS:
    '#              strComputer = The name of the computer that generated the
    '#                            event logs (e.g. fs01 - use "." for the local
    '#                            machine.
    '#              objDir2 =      The destination directory on the file server.
    '#              clearEVTLogs   "No" does not clear the event logs. "Yes"
    '#                             will clear the event logs once the current
    '#                             logs are archived.
    '#--------------------------------------------------------------------------
    DIM strComputer, objDir2
    strComputer = "dc1"
    objDir2 = "\\SyslogServer\EventLogs$\" &amp; strComputer
    clearEVTLogs = "Yes"

    '#--------------------------------------------------------------------------
    '#  Declare Remaining Variables
    '#--------------------------------------------------------------------------
    Dim current: current = Now
    Dim strDateStamp: strDateStamp = dateStamp(current)
    DIM objDir1: objDir1 = "\\" &amp; strComputer &amp; "\c$\EVT"

    '#--------------------------------------------------------------------------
    '#  Ensure that the Scratch directory exists on the source computer.
    '#--------------------------------------------------------------------------
    Set filesys=CreateObject("Scripting.FileSystemObject")
    If Not filesys.FolderExists(objDir1) Then
        createDir(objDir1)
    End If

    '#--------------------------------------------------------------------------
    '#  Ensure that the destination directory exists on the file server.
    '#--------------------------------------------------------------------------
    If Not filesys.FolderExists(objDir2) Then
        createDir(objDir2)
    End If

    '#--------------------------------------------------------------------------
    '#  Make create backups of the event logs to the Scratch directory.
    '#--------------------------------------------------------------------------
    strPath = objDir2 &amp; "\"
    Set objWMIService = GetObject("winmgmts:" _
        &amp; "{impersonationLevel=impersonate, (Backup, Security)}!\\" _
            &amp; strComputer &amp; "\root\cimv2")
    Set colLogFiles = objWMIService.ExecQuery _
        ("Select * from Win32_NTEventLogFile")
    For Each objLogfile in colLogFiles
        strCopyFile = strDateStamp &amp; "_" &amp; strComputer &amp; "_" _
        &amp; objLogFile.LogFileName &amp; ".evt&amp;"
        strBackupFile = "c:\EVT\" &amp; strDateStamp &amp; "_" _
            &amp; strComputer &amp; "_" &amp; objLogFile.LogFileName &amp; ".evt"
        strBackupLog = objLogFile.BackupEventLog _
            (strBackupFile)
        'WScript.Echo objLogFile.LogFileName &amp; " backed up to " _
        '    &amp; strBackupFile

        '#----------------------------------------------------------------------
        '#  Copy the event logs to the file server.
        '#----------------------------------------------------------------------
        call copyAFile(objDir1, strPath, strCopyFile)

        '#----------------------------------------------------------------------
        '#  Clear the event logs, or not.
        '#----------------------------------------------------------------------
        If clearEVTLogs = "Yes" then
            objLogFile.ClearEventLog()
        End If
    Next

'#==============================================================================
'#  SUBROUTINES/FUNCTIONS/CLASSES
'#==============================================================================
    '#--------------------------------------------------------------------------
    '#  FUNCTION.........:  dateStamp(ByVal dt)
    '#  PURPOSE..........:  Generate an 8-character date stamp from the current
    '#                      VBScript date.
    '#  ARGUMENTS........:  dt = The date stamp to convert.
    '#  EXAMPLE..........:  Dim current: current = Now
    '#                      WScript.Echo dateStamp(current)
    '#  REQUIREMENTS.....:
    '#  NOTES............:  The above example will produce output of 20080730 if
    '#                      run on 07/30/08.
    '#--------------------------------------------------------------------------
    Function dateStamp(ByVal dt)
        Dim y, m, d
        y = Year(dt)
        m = Month(dt)
        If Len(m) = 1 Then m = "0" &amp; m
        d = Day(dt)
        If Len(d) = 1 Then d = "0" &amp; d
        dateStamp = y &amp; m &amp; d
    End Function

    '#--------------------------------------------------------------------------
    '#  FUNCTION........:  copyAFile()
    '#  ARGUMENTS.......:  strScourceFolder = The folder containing the files to
    '#                                        be copied.
    '#                     strTargetFolder = The Destination Folder
    '#                     strFileName = The name and file extension of the file
    '#                                   to be copied.
    '#  PURPOSE.........:  General purpose file copying function.
    '#  EXAMPLE.........:  Wscript.Echo copyAFile("C:\", "\\Server\Share", _
    '#                     &amp; "fileName.txt")
    '#  NOTES...........:  strSourceFolder folder must exist
    '#                     strTargetFolder folder must exist
    '#                     strFileName file must exist in strSourceFolder folder
    '#--------------------------------------------------------------------------
    Function copyAFile( Byval strSourceFolder, Byval strTargetFolder, _
        Byval strFileName)
        Dim objFSO, booOverWrite, strResult
        Set objFSO = CreateObject("Scripting.FileSystemObject")
        If objFSO.FileExists( strSourceFolder &amp; "\" &amp; strFileName) _
            And UCase( strSourceFolder)  UCase( strTargetFolder) Then
            If objFSO.FolderExists( strTargetFolder) Then
                Else
                strResult = "The destination folder does not exist!"
                'copyAFile = strResult
                Exit Function
            End If
            If objFSO.FileExists( strTargetFolder &amp; "\" &amp; strFileName) Then
                strResult = "The file exists, overwritten"
                booOverWrite = vbTrue
            Else
                strResult = "The file does not exist, created"
                booOverWrite = vbFalse
            End If
            objFSO.CopyFile strSourceFolder &amp; "\" _
                &amp; strFileName, strTargetFolder &amp; "\", booOverWrite
        Else
            strResult = "The source file does not exist, or " _
                &amp; "identical Source and Target folders!"
        End If
        'copyAFile = strResult
    End Function

    '#--------------------------------------------------------------------------
    '#  FUNCTION.......:  createDir(strDir)
    '#  ARGUMENTS......:  strDir = UNC path of the directory to create.
    '#  PURPOSE........:  Creates directories.
    '#  EXAMPLE........:  createDir("c:\WSH_TEST\")
    '#                    createDir("c:\WSH_TEST\" &amp; "Files\")
    '#  NOTES..........:  If creating a subdirectory of a directory that does
    '#                    not exist, the parent directory must be created
    '#                    first, as shown in the example.
    '#--------------------------------------------------------------------------
    Function createDir(strDir)
        set filesys=CreateObject("Scripting.FileSystemObject")
        Set objFSO = CreateObject("Scripting.FileSystemObject")
        If Not filesys.FolderExists(strDir) Then
            Set objFolder = objFSO.CreateFolder(strDir)
        End If
    End Function

'#==============================================================================
'#  END OF FILE
'#==============================================================================</pre>
<p>So, What does it do? This script will copy the event logs (well technically it creates a backup it doesn’t actually copy the data per se) from the target system to a directory defined by the user, and optionally clear the logs.</p>
<p>You can then use the built in Windows Event Log viewer to open the resulting file and search the event logs for the time period in the file.</p>
<p><strong>How I use this:</strong></p>
<p>I have several copies of this script set up in Windows’ Task Scheduler to run on the first of every month at exactly midnight, with the option to clear the event logs turned on. This allows me to create a Monthly archive of event logs for each Server that it is run against, and when I get a cryptic event log message like “Windows has previously logged the source of this error”, I can go back and search for the referenced previous entry.</p>
<p>Like I said before, this is a temporary system designed to do one thing: archive all of the Event logs from all of my Windows servers to a central location until I can get a proper central Syslog server in place. It works flawlessly for the task it was designed to do.</p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/10/question-i-hear-vista-can-hit-me-on-my.html" rel="bookmark" title="Permanent Link: Can Vista hit me on the hip when an event occurs through the OS? Is this true and how can I configure it?" >Can Vista hit me on the hip when an event occurs through the OS? Is this true and how can I configure it?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/01/question-is-there-way-to-launch-control.html" rel="bookmark" title="Permanent Link: Question: Is there a way to launch control panels from the command line without navigating to them?" >Question: Is there a way to launch control panels from the command line without navigating to them?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/08/rumor-google-phone-will-use-a-new-openmoko-linux-based-phone.html" rel="bookmark" title="Permanent Link: Rumor: Google Phone will use a new OpenMoko Linux Based Phone!" >Rumor: Google Phone will use a new OpenMoko Linux Based Phone!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/06/how-can-i-find-out-what-my-windows-error-really-means.html" rel="bookmark" title="Permanent Link: How can I find out what my Windows error really means?" >How can I find out what my Windows error really means?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/01/how-can-i-print-name-tags-free-quick.html" rel="bookmark" title="Permanent Link: How can I print name tags free, quick and easy?" >How can I print name tags free, quick and easy?</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/JSL256uDkQoG0NRJkxy1HioAhVs/0/da"><img src="http://feedads.g.doubleclick.net/~a/JSL256uDkQoG0NRJkxy1HioAhVs/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/JSL256uDkQoG0NRJkxy1HioAhVs/1/da"><img src="http://feedads.g.doubleclick.net/~a/JSL256uDkQoG0NRJkxy1HioAhVs/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=2mAD6bLauWo:SQQu4VJkupc:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=2mAD6bLauWo:SQQu4VJkupc:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/2mAD6bLauWo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/06/guerrilla-event-log-archiving-why-and-how.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/06/guerrilla-event-log-archiving-why-and-how.html</feedburner:origLink></item>
		<item>
		<title>Ask The Admin’s knock-out Father’s Day deal you just can’t miss!</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/yJskcqMhmSo/ask-the-admins-knock-out-fathers-day-deal-you-just-cant-miss.html</link>
		<comments>http://www.asktheadmin.com/2009/06/ask-the-admins-knock-out-fathers-day-deal-you-just-cant-miss.html#comments</comments>
		<pubDate>Fri, 05 Jun 2009 17:16:49 +0000</pubDate>
		<dc:creator>Commodore64</dc:creator>
		
		<category><![CDATA[Admin's Arsenal]]></category>

		<category><![CDATA[General]]></category>

		<category><![CDATA[900]]></category>

		<category><![CDATA[asus]]></category>

		<category><![CDATA[coupon]]></category>

		<category><![CDATA[deal]]></category>

		<category><![CDATA[eee]]></category>

		<category><![CDATA[laptop]]></category>

		<category><![CDATA[mini]]></category>

		<category><![CDATA[netbook]]></category>

		<category><![CDATA[savings]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/?p=2301</guid>
		<description><![CDATA[Hey kiddies,
Commodore 64 back again to bring you another absolutely INSANE deal of a bargain. Over the years, Ask The Admin has striven to bring you , our faithful readers, only the best in tech wheels and deals.
In recent months we have seen the emergence of the almighty Netbook. We&#8217;ve also been lucky enough to [...]]]></description>
			<content:encoded><![CDATA[<p>Hey kiddies,<br />
Commodore 64 back again to bring you another absolutely INSANE deal of a bargain. Over the years, Ask The Admin has striven to bring you , our faithful readers, only the best in tech wheels and deals.</p>
<p>In recent months we have seen the emergence of the almighty Netbook. We&#8217;ve also been lucky enough to see the inevitable forces of Moore&#8217;s Law take their hold on the Netbook world and gave us some prices that are awesomely affordable. However, at Ask The Admin, we have access to some Moore&#8217;s Law action that is still pretty unreachable to most people. Moore&#8217;s Law states that as time goes by, computers, and their respective components, get stronger, faster and cheaper. We&#8217;ve taken it upon ourselves to make it our mission to take advantage of this trending and bring the savings straight to you.</p>
<p><a href="http://affiliate.buy.com/gateway.aspx?adid=17662&#038;pid=2651201&#038;aid=10649358&#038;sURL=http%3A%2F%2Fwww%2Ebuy%2Ecom%2Fprod%2Fasus%2Deee%2Dpc%2D900%2Dwhite%2Dnetbook%2D900%2Dmhz%2Dintel%2Dmobile%2Dcpu%2D1gb%2Dddr2%2D16gb%2Fq%2Floc%2F101%2F211162731%2Ehtml" onClick="javascript: pageTracker._trackPageview('/campaigns/fathersday2/clickimgtobuy.com'); "><img src='http://www.doodlerblog.com/wp-content/uploads/asus-300x300.jpg' alt='asus eee pc 900 white' class='alignleft' /></a>Enter the Pearl White Asus EEE 900 Netbook PC. This ultra-portable little bad-boy touts a 8.9&#8243; 1024×600 display, a 16GB SSD solid state drive, 1GB of RAM, a built-in 1.3MP web camera, and Windows XP Home pre-installed. It has everything you need to make all the connections you need to make while on the go. And it&#8217;s ultra-light, thin profile will make it a cinch to carry around. <a href="http://affiliate.buy.com/gateway.aspx?adid=17662&#038;pid=2651201&#038;aid=10649358&#038;sURL=http%3A%2F%2Fwww%2Ebuy%2Ecom%2Fprod%2Fasus%2Deee%2Dpc%2D900%2Dwhite%2Dnetbook%2D900%2Dmhz%2Dintel%2Dmobile%2Dcpu%2D1gb%2Dddr2%2D16gb%2Fq%2Floc%2F101%2F211162731%2Ehtml" onClick="javascript: pageTracker._trackPageview('/campaigns/fathersday2/clickctatobuy.com'); ">Best of all this exclusive, ATA only deal gets you FREE Shipping and <b>$150 off the sticker price of $349 = you only pay $199!</b> Click here to get in on this EXCLUSIVE Buy.com offer brought to you by AskTheAdmin.com.</a></p>
<p>&nbsp;</p>
<p>Commodore 64 - The one you used to play Bruce Lee on ,8,1</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/05/it-kama-sutra-sfw-honest.html" rel="bookmark" title="Permanent Link: IT Kama-Sutra&#8230; SFW Honest!" >IT Kama-Sutra&#8230; SFW Honest!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/08/deal-of-the-day-dsl-on-the-cheap.html" rel="bookmark" title="Permanent Link: Deal of the Day: DSL On The Cheap!" >Deal of the Day: DSL On The Cheap!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/07/admins-internet-outage-htc-to-rescue.html" rel="bookmark" title="Permanent Link: Admin Unplugged (literally) The Internet Outage and HTC to the rescue. Internet connection sharing ATT Vs. Tmobile" >Admin Unplugged (literally) The Internet Outage and HTC to the rescue. Internet connection sharing ATT Vs. Tmobile</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/12/the-12-admin-days-of-christmas.html" rel="bookmark" title="Permanent Link: The 12 Admin Days of Christmas" >The 12 Admin Days of Christmas</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/11/admins-arsenal-baregrep.html" rel="bookmark" title="Permanent Link: Admin&#8217;s Arsenal: BareGrep" >Admin&#8217;s Arsenal: BareGrep</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/_lSbEvJ7AyAFBc659W1JOBt2RoY/0/da"><img src="http://feedads.g.doubleclick.net/~a/_lSbEvJ7AyAFBc659W1JOBt2RoY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/_lSbEvJ7AyAFBc659W1JOBt2RoY/1/da"><img src="http://feedads.g.doubleclick.net/~a/_lSbEvJ7AyAFBc659W1JOBt2RoY/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=yJskcqMhmSo:RtJYKSLhdog:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=yJskcqMhmSo:RtJYKSLhdog:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/yJskcqMhmSo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/06/ask-the-admins-knock-out-fathers-day-deal-you-just-cant-miss.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/06/ask-the-admins-knock-out-fathers-day-deal-you-just-cant-miss.html</feedburner:origLink></item>
		<item>
		<title>SpiceWorks 4.0 Beta – now available.</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/rGH1_CcMn2s/spiceworks-40-beta-now-available.html</link>
		<comments>http://www.asktheadmin.com/2009/06/spiceworks-40-beta-now-available.html#comments</comments>
		<pubDate>Wed, 03 Jun 2009 15:26:52 +0000</pubDate>
		<dc:creator>Karl L. Gechlik | AskTheAdmin.com</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/2009/06/spiceworks-40-beta-now-available.html</guid>
		<description><![CDATA[ It is no secret that your trusty neighborhood admin uses Spiceworks to keep his networks under control. I have heard from a lot of you out there in AdminLand that are using it as well. 
Michele from Spiceworks just gave me a shout that the new version is officially in Beta. We wanted you [...]]]></description>
			<content:encoded><![CDATA[<p align="left"><a href="http://www.asktheadmin.com/wp-content/uploads/2009/06/image15.png"><img title="image" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; margin-left: 0px; margin-right: 0px; border-right-width: 0px" height="76" alt="image" src="http://www.asktheadmin.com/wp-content/uploads/2009/06/image-thumb15.png" width="148" align="left" border="0" /></a> It is no secret that your trusty neighborhood admin uses Spiceworks to keep his networks under control. I have heard from a lot of you out there in AdminLand that are using it as well. </p>
<p>Michele from Spiceworks just gave me a shout that the new version is officially in Beta. We wanted you to be one of the first to know that Spiceworks version 4.0 Beta has just been released – which you can download now &amp; play with here: <u><a href="http://community.spiceworks.com/group/show/321-spiceworks-4-0">4.0 Beta Group</a></u></p>
<p>You can check out the new bells and whistles in this video here: <a title="http://spiceworks.com/tv/?cat=previews&amp;video=40-Preview-1" href="http://spiceworks.com/tv/?cat=previews&amp;video=40-Preview-1">http://spiceworks.com/tv/?cat=previews&amp;video=40-Preview-1</a>&#160;</p>
<p><strong>SOME COOL NEW 4.0 HIGHLIGHTS INCLUDE:</strong></p>
<ul>
<li><b>Network Map </b>– Allows you to see and graphically navigate the <b>details</b> <b>of your network </b>as well as determine the connections that exist between your devices. <a href="http://www.asktheadmin.com/wp-content/uploads/2009/06/image16.png"><img title="image" style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" height="484" alt="image" src="http://www.asktheadmin.com/wp-content/uploads/2009/06/image-thumb16.png" width="520" border="0" /></a> </li>
<li><b>Events Collaboration</b> – You can now see the most common events, collaborate with others and find out the best way to troubleshoot the issue (all decided by Spiceworks users – yet another way that Spiceworks is making IT &#8217;social&#8217;) </li>
<li><b>New Customizable End User Portal </b>– Now you can have a custom intranet up and running in no time! Create the “face” of your IT organization by adding new pages and content areas, changing color schemes, even re-arrange the page layouts. <u><a href="http://community.spiceworks.com/help/User_Portal_4.0">Learn More</a></u> </li>
<li><b>Updated UI </b>– Our fresh new UI helps you speed through your day! In addition to faster load times, the inventory &quot;icon view&quot; now shows more items (plus has a new handy drop down menu of common useful actions) and the tabs on the left-side navigation panel have been moved to the top for better accessibility. <u><a href="http://community.spiceworks.com/topic/36318">Read More</a></u> </li>
<li><b>Help Desk Now Supports Collaboration </b>- One of the most requested help desk features! Collaboration allows you to cc: your boss or someone else on a ticket….and keep them informed as you work on the ticket. <u><a href="http://community.spiceworks.com/help/Working_Tickets">Learn More</a></u> </li>
<li><b>Tickets Anywhere </b>– Now, you can work your tickets from any email client simply by including special commands in the body of the email. You can create, work, assign, and even close a ticket from anywhere! <u><a href="http://community.spiceworks.com/help/Tickets_Anywhere">Learn How</a><a href="http://www.asktheadmin.com/wp-content/uploads/2009/06/image17.png"><img title="image" style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" height="484" alt="image" src="http://www.asktheadmin.com/wp-content/uploads/2009/06/image-thumb17.png" width="547" border="0" /></a></a></u> </li>
</ul>
<p>For more details on the new 4.0 features visit the <u><a href="http://community.spiceworks.com/group/show/321-spiceworks-4-0">4.0 Beta Group</a></u></p>
<p>And of course we want to support the awesome free software from Spiceworks so here is a little link love for them…</p>
<p><a href="http://www.spiceworks.com/?utm_source=users&amp;utm_medium=wom&amp;utm_campaign=outreach">Free Network Monitoring Software for Network Management</a></p>
<p>If you download and try it out let us know how it goes for you!</p>
<p><a href="http://www.asktheadmin.com">_TheSpiceyAdmiN_</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/02/network-documentation-made-easy.html" rel="bookmark" title="Permanent Link: Network documentation and inventory made easy with free tools." >Network documentation and inventory made easy with free tools.</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/08/free-inventory-software-for-your-network-like-spiceworks.html" rel="bookmark" title="Permanent Link: Free inventory software for your network like SpiceWorks." >Free inventory software for your network like SpiceWorks.</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/08/here-is-our-weekly-roundup-some-posts-you-might-have-missed.html" rel="bookmark" title="Permanent Link: Here is our weekly roundup. Some posts you might have missed." >Here is our weekly roundup. Some posts you might have missed.</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/06/aol-instant-messenger-beta-for-windows-mobile-5-6-and-61.html" rel="bookmark" title="Permanent Link: AOL Instant Messenger Beta for Windows Mobile 5, 6 and 6.1" >AOL Instant Messenger Beta for Windows Mobile 5, 6 and 6.1</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/07/service-pack-1-for-vista-is-comming-out.html" rel="bookmark" title="Permanent Link: Service Pack 1 for Vista is comming out&#8230; No wait its not. Now stop talking about it!" >Service Pack 1 for Vista is comming out&#8230; No wait its not. Now stop talking about it!</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/qQdBJTxVOQTvU05GBn1KhisBAOk/0/da"><img src="http://feedads.g.doubleclick.net/~a/qQdBJTxVOQTvU05GBn1KhisBAOk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/qQdBJTxVOQTvU05GBn1KhisBAOk/1/da"><img src="http://feedads.g.doubleclick.net/~a/qQdBJTxVOQTvU05GBn1KhisBAOk/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=rGH1_CcMn2s:w1OPQYFEATU:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=rGH1_CcMn2s:w1OPQYFEATU:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/rGH1_CcMn2s" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/06/spiceworks-40-beta-now-available.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/06/spiceworks-40-beta-now-available.html</feedburner:origLink></item>
		<item>
		<title>Google Waves is making um… Waves!</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/JLL4yFn2VDU/google-waves-is-making-um-waves.html</link>
		<comments>http://www.asktheadmin.com/2009/06/google-waves-is-making-um-waves.html#comments</comments>
		<pubDate>Tue, 02 Jun 2009 14:41:45 +0000</pubDate>
		<dc:creator>Karl L. Gechlik | AskTheAdmin.com</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/2009/06/google-waves-is-making-um-waves.html</guid>
		<description><![CDATA[Have you seen this video yet? If you can not view the flash video  below the link to the video is at http://wave.google.com. And just an FYI Google Wave is the number one searched for term this week on Google.

If you haven’t already I suggest taking the hour and 20 minutes to watch this. And [...]]]></description>
			<content:encoded><![CDATA[<p>Have you seen this video yet? If you can not view the flash video  below the link to the video is at http://wave.google.com. And just an FYI Google Wave is the number one searched for term this week on Google.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/v_UyVmITiYQ&amp;hl=en&amp;fs=1" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube.com/v/v_UyVmITiYQ&amp;hl=en&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>If you haven’t already I suggest taking the hour and 20 minutes to watch this. And we would love to hear your comments on it!</p>
<p>Thanks SlothMan for sending this on over!</p>
<p><a href="http://www.asktheadmin.com">_TheDoTheWaveAdmiN_</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/08/is-there-any-way-to-improve-edge-speeds-on-my-iphone-does-my-iphone-have-an-antenna.html" rel="bookmark" title="Permanent Link: Is there any way to improve Edge speeds on my iPhone? Does my iPhone have an antenna?" >Is there any way to improve Edge speeds on my iPhone? Does my iPhone have an antenna?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/06/hps-dx9000-touchsmart-computer-are-making-huge-waves.html" rel="bookmark" title="Permanent Link: HP&rsquo;s dx9000 TouchSmart Computer are making huge waves!" >HP&rsquo;s dx9000 TouchSmart Computer are making huge waves!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/08/rumor-google-phone-will-use-a-new-openmoko-linux-based-phone.html" rel="bookmark" title="Permanent Link: Rumor: Google Phone will use a new OpenMoko Linux Based Phone!" >Rumor: Google Phone will use a new OpenMoko Linux Based Phone!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/02/google-is-letting-people-like-you-influence-its-search-results.html" rel="bookmark" title="Permanent Link: Google is letting people like you influence its search results!" >Google is letting people like you influence its search results!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/02/revelations-in-automation-making-my-job.html" rel="bookmark" title="Permanent Link: Revelations in Automation. Making my job easier with Active Directory." >Revelations in Automation. Making my job easier with Active Directory.</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/aCOyF8WtomrvP6rZNHfGnt1Lj38/0/da"><img src="http://feedads.g.doubleclick.net/~a/aCOyF8WtomrvP6rZNHfGnt1Lj38/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/aCOyF8WtomrvP6rZNHfGnt1Lj38/1/da"><img src="http://feedads.g.doubleclick.net/~a/aCOyF8WtomrvP6rZNHfGnt1Lj38/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=JLL4yFn2VDU:cfMMRbM8L9E:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=JLL4yFn2VDU:cfMMRbM8L9E:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/JLL4yFn2VDU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/06/google-waves-is-making-um-waves.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/06/google-waves-is-making-um-waves.html</feedburner:origLink></item>
		<item>
		<title>InstantHouseCall Free Version is awesome for family support.</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/ClATtHBGDKY/instanthousecall-free-version-is-awesome-for-family-support.html</link>
		<comments>http://www.asktheadmin.com/2009/06/instanthousecall-free-version-is-awesome-for-family-support.html#comments</comments>
		<pubDate>Tue, 02 Jun 2009 14:39:09 +0000</pubDate>
		<dc:creator>Karl L. Gechlik | AskTheAdmin.com</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/2009/06/instanthousecall-free-version-is-awesome-for-family-support.html</guid>
		<description><![CDATA[ 
Check out http://www.instanthousecall.com and install their free Remote Support tool. It really is awesome and saved my ass yesterday when I needed to connect to a remote Vista machine on the fly and my Single Click Vnc just wasn’t doing it! What do you guys use for remote support? We would love to hear [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.asktheadmin.com/wp-content/uploads/2009/06/image9.png"><img title="image" style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" height="198" alt="image" src="http://www.asktheadmin.com/wp-content/uploads/2009/06/image-thumb9.png" width="187" border="0" /></a> </p>
<p>Check out <a href="http://www.instanthousecall.com">http://www.instanthousecall.com</a> and install their free Remote Support tool. It really is awesome and saved my ass yesterday when I needed to connect to a remote Vista machine on the fly and my Single Click Vnc just wasn’t doing it! What do you guys use for remote support? We would love to hear your favorites in the comments.</p>
<p><a href="http://www.asktheadmin.com">_TheRemoteAdmiN_</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/12/instant-housecall-revisited-contest.html" rel="bookmark" title="Permanent Link: Instant Housecall Revisited + Contest" >Instant Housecall Revisited + Contest</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/03/can-i-ping-website-from-firefox.html" rel="bookmark" title="Permanent Link: Can I Ping a Website from FireFox? On any platform that runs the Fox?" >Can I Ping a Website from FireFox? On any platform that runs the Fox?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/07/awesome-tip-internet-explorer-and-my-new-favorite-hot-key-combo.html" rel="bookmark" title="Permanent Link: Awesome Tip: Internet Explorer and My New Favorite Hot Key Combo!" >Awesome Tip: Internet Explorer and My New Favorite Hot Key Combo!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/12/roxio-toast-review-and-contest.html" rel="bookmark" title="Permanent Link: Roxio Toast Review and Contest" >Roxio Toast Review and Contest</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/09/dude-your-dell-died-5-hours-ago-hp-breaks-the-24-hour-barrier-on-laptops.html" rel="bookmark" title="Permanent Link: Dude your Dell Died 5 hours ago&#8230; HP breaks the 24 hour barrier on Laptops." >Dude your Dell Died 5 hours ago&#8230; HP breaks the 24 hour barrier on Laptops.</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/CzxTzXqVyQZC4qWamMQM0glUzIY/0/da"><img src="http://feedads.g.doubleclick.net/~a/CzxTzXqVyQZC4qWamMQM0glUzIY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/CzxTzXqVyQZC4qWamMQM0glUzIY/1/da"><img src="http://feedads.g.doubleclick.net/~a/CzxTzXqVyQZC4qWamMQM0glUzIY/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=ClATtHBGDKY:uKHK16Kxy7Q:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=ClATtHBGDKY:uKHK16Kxy7Q:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/ClATtHBGDKY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/06/instanthousecall-free-version-is-awesome-for-family-support.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/06/instanthousecall-free-version-is-awesome-for-family-support.html</feedburner:origLink></item>
		<item>
		<title>HP’s dx9000 TouchSmart Computer are making huge waves!</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/2wpDbVEKzV0/hps-dx9000-touchsmart-computer-are-making-huge-waves.html</link>
		<comments>http://www.asktheadmin.com/2009/06/hps-dx9000-touchsmart-computer-are-making-huge-waves.html#comments</comments>
		<pubDate>Mon, 01 Jun 2009 17:33:29 +0000</pubDate>
		<dc:creator>Karl L. Gechlik | AskTheAdmin.com</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/2009/06/hps-dx9000-touchsmart-computer-are-making-huge-waves.html</guid>
		<description><![CDATA[ 
&#160;
We at AskTheAdmin.com LOVE cutting edge technology! And when we first got to play with Microsoft’s surface I fell in love! Then I saw the outrageous price tag and put it out of my head. Now HP is working on some realistic and amazing technology. We are going to be checking out and reviewing [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.asktheadmin.com/wp-content/uploads/2009/06/image8.png"><img title="image" style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" height="351" alt="image" src="http://www.asktheadmin.com/wp-content/uploads/2009/06/image-thumb8.png" width="279" border="0" /></a> </p>
<p>&#160;</p>
<p>We at AskTheAdmin.com LOVE cutting edge technology! And when we first got to play with Microsoft’s surface I fell in love! Then I saw the outrageous price tag and put it out of my head. Now HP is working on some realistic and amazing technology. We are going to be checking out and reviewing their dx9000 in the near future along with having a contest to give one of these guys away.</p>
<blockquote><p>The Marriott Airport Hotel in Nashville recently installed two HP dx9000 TouchSmart systems at their concierge station in the lobby. The software application they’ll be using was developed by HP partner, Nashville-based technology company Uniguest, and offers travelers and hotel guests a revolutionary, custom-branded user interface with advanced security that allows users to access real time flight arrival/departure information and also print their boarding passes. </p>
</blockquote>
<p>&#160;</p>
<p>The whole concept behind using these in the business world is customizable applications that are developed and power the machine. That means these devices can do anything you want them to and really anything you can imagine. Check out this video below and let’s hear your thoughts on them!</p>
<p> <object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/sMbh-Rwm-Qc&amp;hl=en&amp;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/sMbh-Rwm-Qc&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object>
</p>
<p><a href="http://www.asktheadmin.com">_TheTouchMeAdmiN_</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/06/win-a-free-dx9000-touchsmart-pc-from-hp-and-asktheadmin-developer-contest.html" rel="bookmark" title="Permanent Link: Win a free dx9000 TouchSmart PC from HP and AskTheAdmin! (Developer Contest)" >Win a free dx9000 TouchSmart PC from HP and AskTheAdmin! (Developer Contest)</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/06/google-waves-is-making-um-waves.html" rel="bookmark" title="Permanent Link: Google Waves is making um&hellip; Waves!" >Google Waves is making um&hellip; Waves!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/08/is-there-any-way-to-improve-edge-speeds-on-my-iphone-does-my-iphone-have-an-antenna.html" rel="bookmark" title="Permanent Link: Is there any way to improve Edge speeds on my iPhone? Does my iPhone have an antenna?" >Is there any way to improve Edge speeds on my iPhone? Does my iPhone have an antenna?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/06/simple-trick-to-keep-your-computer-from-locking-up.html" rel="bookmark" title="Permanent Link: Simple Trick to Keep Your Computer from Locking Up" >Simple Trick to Keep Your Computer from Locking Up</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/09/quick-tip-unlocking-windows-workstation.html" rel="bookmark" title="Permanent Link: Quick Tip: Unlocking a Windows Workstation" >Quick Tip: Unlocking a Windows Workstation</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/dT28g5YQ1A52ryeQzkIW4bkFgHQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/dT28g5YQ1A52ryeQzkIW4bkFgHQ/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/dT28g5YQ1A52ryeQzkIW4bkFgHQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/dT28g5YQ1A52ryeQzkIW4bkFgHQ/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=2wpDbVEKzV0:cSn3gpDUm0U:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=2wpDbVEKzV0:cSn3gpDUm0U:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/2wpDbVEKzV0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/06/hps-dx9000-touchsmart-computer-are-making-huge-waves.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/06/hps-dx9000-touchsmart-computer-are-making-huge-waves.html</feedburner:origLink></item>
		<item>
		<title>Windows Live Writer Errors out on posting. Invalid Server Response.</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/D1Xs6LEFSAk/windows-live-writer-errors-out-on-posting-invalid-server-response.html</link>
		<comments>http://www.asktheadmin.com/2009/06/windows-live-writer-errors-out-on-posting-invalid-server-response.html#comments</comments>
		<pubDate>Mon, 01 Jun 2009 17:11:12 +0000</pubDate>
		<dc:creator>Karl L. Gechlik | AskTheAdmin.com</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/2009/06/windows-live-writer-errors-out-on-posting-invalid-server-response.html</guid>
		<description><![CDATA[We all know that I love me some Windows Live Writer. It is my blog editor of choice. Armed with that and Jing I document, screenshot and post the hell out of stuff over here and on http://www.makeUseOf.com. Today I was taking some screenshots of a new website I will be reviewing called http://www.doodlerBlog.com. Long [...]]]></description>
			<content:encoded><![CDATA[<p>We all know that I love me some Windows Live Writer. It is my blog editor of choice. Armed with that and Jing I document, screenshot and post the hell out of stuff over here and on <a href="http://www.makeUseOf.com">http://www.makeUseOf.com</a>. Today I was taking some screenshots of a new website I will be reviewing called <a href="http://www.doodlerBlog.com">http://www.doodlerBlog.com</a>. Long story short…. My WLW was returning the following error every damn time I tried to post my draft. I tried posting it to several other Wordpress Sites and I had the same flucking problem! </p>
<p><a href="http://www.asktheadmin.com/wp-content/uploads/2009/06/wlwerror.png"><img title="WLWError" style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" height="221" alt="WLWError" src="http://www.asktheadmin.com/wp-content/uploads/2009/06/wlwerror-thumb.png" width="360" border="0" /></a> </p>
<p>I found out I could view the log file by going to Help – About Windows Live Writer – and View Log.</p>
<p>Once there I found this log:</p>
<p><span id="more-2263"></span></p>
<p>WindowsLiveWriter,2944,None,00021,01-Jun-2009 12:48:15.973,&quot;Exception parsing XML-RPC response: </p>
<p>WindowsLive.Writer.CoreServices.XmlRpcClientInvalidResponseException: Invalid response document returned from XmlRpc server &#8212;&gt; System.Xml.XmlException: There are multiple root elements. Line 2, position 2.    <br />&#160;&#160; at System.Xml.XmlTextReaderImpl.Throw(Exception e)     <br />&#160;&#160; at System.Xml.XmlTextReaderImpl.Throw(String res, String arg)     <br />&#160;&#160; at System.Xml.XmlTextReaderImpl.Throw(Int32 pos, String res)     <br />&#160;&#160; at System.Xml.XmlTextReaderImpl.ParseDocumentContent()     <br />&#160;&#160; at System.Xml.XmlTextReaderImpl.Read()     <br />&#160;&#160; at System.Xml.XmlLoader.LoadNode(Boolean skipOverWhitespace)     <br />&#160;&#160; at System.Xml.XmlLoader.LoadDocSequence(XmlDocument parentDoc)     <br />&#160;&#160; at System.Xml.XmlLoader.Load(XmlDocument doc, XmlReader reader, Boolean preserveWhitespace)     <br />&#160;&#160; at System.Xml.XmlDocument.Load(XmlReader reader)     <br />&#160;&#160; at System.Xml.XmlDocument.LoadXml(String xml)     <br />&#160;&#160; at WindowsLive.Writer.CoreServices.XmlRpcMethodResponse..ctor(String responseText)     <br />&#160;&#160; &#8212; End of inner exception stack trace &#8212;     <br />&#160;&#160; at WindowsLive.Writer.CoreServices.XmlRpcMethodResponse..ctor(String responseText)     <br />&#160;&#160; at WindowsLive.Writer.CoreServices.XmlRpcClient.CallMethod(String methodName, XmlRpcValue[] parameters) </p>
<p>&lt;br /&gt;    <br />&lt;b&gt;Fatal error&lt;/b&gt;:&#160; Allowed memory size of 33554432 bytes exhausted (tried to allocate 886081 bytes) in &lt;b&gt;/usr/www/users/esengul/makeuseof.com/wp-includes/class-IXR.php&lt;/b&gt; on line &lt;b&gt;207&lt;/b&gt;&lt;br /&gt;     <br />&quot;,&quot;&quot;     <br />WindowsLiveWriter,2944,Fail,00022,01-Jun-2009 12:48:16.004,&quot;WindowsLive.Writer.Extensibility.BlogClient.BlogClientInvalidServerResponseException: Invalid Server Response - The response to the metaWeblog.newMediaObject method received from the blog server was invalid: </p>
<p>Invalid response document returned from XmlRpc server    <br />&#160;&#160; at WindowsLive.Writer.BlogClient.Clients.XmlRpcBlogClient.CallMethod(String methodName, XmlRpcValue[] parameters)     <br />&#160;&#160; at WindowsLive.Writer.BlogClient.Clients.MetaweblogClient.DoBeforePublishUploadWork(IFileUploadContext uploadContext)     <br />&#160;&#160; at WindowsLive.Writer.PostEditor.WeblogBlogFileUploader.DoUploadWorkBeforePublish(IFileUploadContext uploadContext)&quot;,&quot;&#160;&#160; at System.Environment.GetStackTrace(Exception e, Boolean needFileInfo)     <br />&#160;&#160; at System.Environment.get_StackTrace()     <br />&#160;&#160; at WindowsLive.Writer.CoreServices.Diagnostics.LogFileTraceListener.Fail(String message)     <br />&#160;&#160; at System.Diagnostics.TraceInternal.Fail(String message)     <br />&#160;&#160; at System.Diagnostics.Trace.Fail(String message)     <br />&#160;&#160; at WindowsLive.Writer.PostEditor.WeblogBlogFileUploader.DoUploadWorkBeforePublish(IFileUploadContext uploadContext)     <br />&#160;&#160; at WindowsLive.Writer.PostEditor.BlogPostReferenceFixer.FileUploadWorker.DoUploadWork(String fileReference, BlogFileUploader fileUploader, Boolean isWindowsLiveLightboxCloneEnabled)     <br />&#160;&#160; at WindowsLive.Writer.PostEditor.BlogPostReferenceFixer.LocalFileTransformer.Transform(BeginTag tag, String reference)     <br />&#160;&#160; at WindowsLive.Writer.CoreServices.HTML.HtmlReferenceFixer.LocalFileReferenceFixupFilter.FixReferences(BeginTag tag, String reference)     <br />&#160;&#160; at WindowsLive.Writer.CoreServices.HTML.HtmlReferenceFixer.OnBeginTag(BeginTag tag)     <br />&#160;&#160; at WindowsLive.Writer.CoreServices.LightWeightHTMLDocumentIterator.Parse()     <br />&#160;&#160; at WindowsLive.Writer.CoreServices.HTML.HtmlReferenceFixer.FixLocalFileReferences(String html, ReferenceFixer fixer)     <br />&#160;&#160; at WindowsLive.Writer.PostEditor.UpdateWeblogAsyncOperation.LocalSupportingFileUploader.UploadFilesBeforePublish()     <br />&#160;&#160; at WindowsLive.Writer.PostEditor.UpdateWeblogAsyncOperation.DoWork()     <br />&#160;&#160; at WindowsLive.Writer.CoreServices.AsyncOperation.InternalStart()     <br />&#160;&#160; at System.Threading.ThreadHelper.ThreadStart_Context(Object state)     <br />&#160;&#160; at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)     <br />&#160;&#160; at System.Threading.ThreadHelper.ThreadStart()&quot;</p>
<p>Out of Memory? Fatal error? What’s going on here why would my post need 33554432 bytes + another 886081&#160; bytes? That is for you non-cis or math majors 32.8450 megabytes! </p>
<p>I checked it out and Jing was saving my screenshots as HUGE files! Each of my images were several Megabytes! I corrected my images – re-uploaded and BAM! We were straight.</p>
<p><a href="http://www.asktheadmin.com">_TheReUploadingAdmiN_</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/04/windows-live-writer-portable-20.html" rel="bookmark" title="Permanent Link: Windows Live Writer Portable 2.0" >Windows Live Writer Portable 2.0</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/02/microsoft-tells-you-how-to-blog-live.html" rel="bookmark" title="Permanent Link: Microsoft tells you how to blog. Live Writer is it for You?" >Microsoft tells you how to blog. Live Writer is it for You?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/07/question-on-my-cingular-dash-i-keep.html" rel="bookmark" title="Permanent Link: Question: On My Cingular Dash I Keep Getting - 453 Error Invalid Number. Please re-send&#8230;" >Question: On My Cingular Dash I Keep Getting - 453 Error Invalid Number. Please re-send&#8230;</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/11/can-you-hear-me-now-know-when-your-email-got-to-their-blackberry.html" rel="bookmark" title="Permanent Link: Can you hear me now? Know when your email got to their BlackBerry." >Can you hear me now? Know when your email got to their BlackBerry.</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/08/some-information-about-windows-server-2008-aka-r2-windows-server-7.html" rel="bookmark" title="Permanent Link: Some information about Windows Server 2008 aka R2 Windows Server 7" >Some information about Windows Server 2008 aka R2 Windows Server 7</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/lDYr9NwTpnd_6SGfvUvpDTjYzSk/0/da"><img src="http://feedads.g.doubleclick.net/~a/lDYr9NwTpnd_6SGfvUvpDTjYzSk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/lDYr9NwTpnd_6SGfvUvpDTjYzSk/1/da"><img src="http://feedads.g.doubleclick.net/~a/lDYr9NwTpnd_6SGfvUvpDTjYzSk/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=D1Xs6LEFSAk:ssPbfu7WWOE:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=D1Xs6LEFSAk:ssPbfu7WWOE:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/D1Xs6LEFSAk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/06/windows-live-writer-errors-out-on-posting-invalid-server-response.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/06/windows-live-writer-errors-out-on-posting-invalid-server-response.html</feedburner:origLink></item>
		<item>
		<title>Can I save my searches to reuse them in Vista?</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/0BQfBJvGFJk/can-i-save-my-searches-to-reuse-them-in.html</link>
		<comments>http://www.asktheadmin.com/2009/06/can-i-save-my-searches-to-reuse-them-in.html#comments</comments>
		<pubDate>Mon, 01 Jun 2009 08:00:00 +0000</pubDate>
		<dc:creator>Karl L. Gechlik | AskTheAdmin.com</dc:creator>
		
		<category><![CDATA[How To]]></category>

		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://ata.bansal-inc.com/?p=740</guid>
		<description><![CDATA[So are you wondering why you would want to save your searches?
Think about it&#8230; How would you like the ability to dynamically find the items you need with a saved search? So the boss called and said - I need all the purchase orders less than a months old and tagged Smith?
How about Power Point [...]]]></description>
			<content:encoded><![CDATA[<p><a onclick="pageTracker._trackPageview('/outgoing/bp2.blogger.com/_NVxlqh8F-Yo/R_TTA5SFBtI/AAAAAAAACzQ/Sh6jcEnA1eU/s1600-h/vista.gif?referer=http://www.asktheadmin.com/wp-admin/edit.php?paged=20');" href="http://bp2.blogger.com/_NVxlqh8F-Yo/R_TTA5SFBtI/AAAAAAAACzQ/Sh6jcEnA1eU/s1600-h/vista.gif" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img id="BLOGGER_PHOTO_ID_5185001083340392146" style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://bp2.blogger.com/_NVxlqh8F-Yo/R_TTA5SFBtI/AAAAAAAACzQ/Sh6jcEnA1eU/s400/vista.gif" border="0" alt="" /></a><span style="font-weight: bold;">So are you wondering why you would want to save your searches?</span></p>
<p>Think about it&#8230; How would you like the ability to dynamically find the items you need with a saved search? So the boss called and said - I need all the purchase orders less than a months old and tagged Smith?</p>
<p>How about Power Point Presentations created by your partner in the past two weeks?</p>
<p>All of those with the letter z in the title?</p>
<p>Just the ones with the word NEW in the file name? We see your creating crazy searches and we know you hate to have to recreate em&#8217; each time. Do you want to make it a little easier on your self?? Save them searches!</p>
<p><span style="font-weight: bold;">You can do it easily! Just follow these steps:</span></p>
<ol>
<li><span style="color: #cc0000;">Browse as normal to Start Search. </span></li>
<li><span style="color: #cc0000;">Type any characters in the search box (a star works great because, as a <span id="SPELLING_ERROR_3" class="blsp-spelling-error">wildcard</span>, it won&#8217;t restrict the search once you save it)</span></li>
<li><span style="color: #cc0000;">then click Advanced Search. Modify the fields however you want and when you are <span id="SPELLING_ERROR_4" class="blsp-spelling-error">satisified</span>, </span></li>
<li><span style="color: #cc0000;">click Save Search.</span></li>
</ol>
<p><a onclick="pageTracker._trackPageview('/outgoing/bp3.blogger.com/_NVxlqh8F-Yo/R_TMpJSFBsI/AAAAAAAACzI/hhpjFKBuIdY/s1600-h/search-folder-results.gif?referer=http://www.asktheadmin.com/wp-admin/edit.php?paged=20');" href="http://bp3.blogger.com/_NVxlqh8F-Yo/R_TMpJSFBsI/AAAAAAAACzI/hhpjFKBuIdY/s1600-h/search-folder-results.gif" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img id="BLOGGER_PHOTO_ID_5184994078248732354" style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp3.blogger.com/_NVxlqh8F-Yo/R_TMpJSFBsI/AAAAAAAACzI/hhpjFKBuIdY/s400/search-folder-results.gif" border="0" alt="" /></a><br />
<span style="font-weight: bold;">From <a onclick="pageTracker._trackPageview('/outgoing/www.microsoft.com?referer=http://www.asktheadmin.com/wp-admin/edit.php?paged=20');" href="http://www.microsoft.com">Microsoft</a>&#8217;s Website:</span></p>
<blockquote><p>Depending upon how often you search for a certain group of files, you might want to take advantage of Windows Vista&#8217;s new Search Folders, too. These are searches that run instantly when you click them—you don&#8217;t even need to insert a search term after the first time you run a search and save it.</p>
<p>You can use the preconfigured searches that Windows Vista offers, such as Recent Documents (which shows you all recently used documents on your computer), or you can set up your own searches.</p>
<p>To set up your own Search Folders, click <strong>Start</strong> and click your personal folder. In your personal folder navigation pane, click <strong>Searches</strong> to bring up the program &#8220;searches.&#8221; Click the program and the Search Folders window will appear.</p>
<p>Next, type in the information that you want to search for in the search box at the top right of the Searches window. In the example shown here, I typed in Microsoft. Then I clicked <strong>Save Search</strong> to save the search. Now, the next time I&#8217;m looking for information related to Microsoft, I just click my personal folder and select the Microsoft search from my Search Folders.</p></blockquote>
<p><strong style="color: #000099;">And you now have a custom search saved for you! You can set up several of them for your most popular search terms. Anyone else using this out there in Admin land?</strong></p>
<p><strong><a href="http://www.asktheadmin.com/">_<span id="SPELLING_ERROR_5" class="blsp-spelling-error">theSearchForMeAdmiN</span>_</a></strong></p>
<p><strong></strong></p>
<div class="blogger-post-footer"><a href="mailto:info@asktheadmin.com"></a></div>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/03/mac-tip-of-day-more-specific-spotlight.html" rel="bookmark" title="Permanent Link: Mac Tip Of The Day: More specific Spotlight searches." >Mac Tip Of The Day: More specific Spotlight searches.</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/08/blocked-from-p2p-here-is-an-easy-alternative-crafty-googling-to-find-the-good-stuff-g2p-instead-of-p2p.html" rel="bookmark" title="Permanent Link: Blocked from P2P? Here is an easy alternative. Crafty Googling to find the good stuff. G2P instead of P2P?" >Blocked from P2P? Here is an easy alternative. Crafty Googling to find the good stuff. G2P instead of P2P?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/08/how-to-let-google-do-your-googling.html" rel="bookmark" title="Permanent Link: How to let Google do your Googling!" >How to let Google do your Googling!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/02/google-is-letting-people-like-you-influence-its-search-results.html" rel="bookmark" title="Permanent Link: Google is letting people like you influence its search results!" >Google is letting people like you influence its search results!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/08/geeky-goodness-im-in-your-blank-blanking-your-blank.html" rel="bookmark" title="Permanent Link: Geeky Goodness: I&#8217;m In Your Blank Blanking Your Blank" >Geeky Goodness: I&#8217;m In Your Blank Blanking Your Blank</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/A2Eu6rP16ZxsczYnZLcz-euYqEI/0/da"><img src="http://feedads.g.doubleclick.net/~a/A2Eu6rP16ZxsczYnZLcz-euYqEI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/A2Eu6rP16ZxsczYnZLcz-euYqEI/1/da"><img src="http://feedads.g.doubleclick.net/~a/A2Eu6rP16ZxsczYnZLcz-euYqEI/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=0BQfBJvGFJk:DbJqbQwOKKE:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=0BQfBJvGFJk:DbJqbQwOKKE:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/0BQfBJvGFJk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/06/can-i-save-my-searches-to-reuse-them-in.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/06/can-i-save-my-searches-to-reuse-them-in.html</feedburner:origLink></item>
		<item>
		<title>Your Admin goes off the grid…</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/goYSbJYeXhw/your-admin-goes-off-the-grid.html</link>
		<comments>http://www.asktheadmin.com/2009/05/your-admin-goes-off-the-grid.html#comments</comments>
		<pubDate>Fri, 29 May 2009 12:39:34 +0000</pubDate>
		<dc:creator>Karl L. Gechlik | AskTheAdmin.com</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/?p=2241</guid>
		<description><![CDATA[I apologize for the down time yesterday, due to our ISP changing hands. And on top of that I am going away for the weekend with no phone or internet&#8230; Scary huh?
Do you guys go off the grid or is your mobile surgically implanted nowadays?
We would love to hear from you in the comments!
The Admin [...]]]></description>
			<content:encoded><![CDATA[<p>I apologize for the down time yesterday, due to our ISP changing hands. And on top of that I am going away for the weekend with no phone or internet&#8230; Scary huh?</p>
<p>Do you guys go off the grid or is your mobile surgically implanted nowadays?</p>
<p>We would love to hear from you in the comments!</p>
<p>The Admin is on his way to the woods! Speak to you on Monday!</p>
<p><a href="http://www.asktheadmin.com">_TheOutbackAdmiN_</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2006/09/this-article-describes-keyboard-2.html" rel="bookmark" title="Permanent Link: This article describes the keyboard shortcuts that are available in Windows XP." >This article describes the keyboard shortcuts that are available in Windows XP.</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/07/some-new-dash-tips-tricks-for-wm6-tip-2.html" rel="bookmark" title="Permanent Link: Some New Dash Tips &amp; Tricks for WM6 - Tip 2 Running the Upgrade and Customizing (Awesome!)" >Some New Dash Tips &amp; Tricks for WM6 - Tip 2 Running the Upgrade and Customizing (Awesome!)</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/07/question-what-is-vmware-and-what-is-it-used-for.html" rel="bookmark" title="Permanent Link: Question: What is VMware and what is it used for?" >Question: What is VMware and what is it used for?</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/RF1qtZOhFW2H0_psRw-Zg_JpS58/0/da"><img src="http://feedads.g.doubleclick.net/~a/RF1qtZOhFW2H0_psRw-Zg_JpS58/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/RF1qtZOhFW2H0_psRw-Zg_JpS58/1/da"><img src="http://feedads.g.doubleclick.net/~a/RF1qtZOhFW2H0_psRw-Zg_JpS58/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=goYSbJYeXhw:Io05-AL7Zm0:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=goYSbJYeXhw:Io05-AL7Zm0:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/goYSbJYeXhw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/05/your-admin-goes-off-the-grid.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/05/your-admin-goes-off-the-grid.html</feedburner:origLink></item>
		<item>
		<title>DNS is LIFE. Group Policy Tip of the Week.</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/IwOzU8MeoTI/dns-is-life-group-policy-tip-of-the-week.html</link>
		<comments>http://www.asktheadmin.com/2009/05/dns-is-life-group-policy-tip-of-the-week.html#comments</comments>
		<pubDate>Wed, 27 May 2009 08:56:45 +0000</pubDate>
		<dc:creator>Karl L. Gechlik | AskTheAdmin.com</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/?p=1998</guid>
		<description><![CDATA[
&#8220;Why isn&#8217;t Group Policy Working on this client?&#8221;
&#8220;Did You Check the DNS Configuration of the Client?&#8221;
One of the most frequently encountered problems with Windows 2000 and above is that things just &#8217;stop working&#8217; when DNS gets out of whack. Specifically, if you&#8217;re not seeing Group Policy apply to your client machines, make sure their DNS [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p><a href="http://www.asktheadmin.com/wp-content/uploads/2008/09/gp_ata.gif"><img class="size-full wp-image-1905" title="gp_ata" src="http://www.asktheadmin.com/wp-content/uploads/2008/09/gp_ata.gif" alt="" width="500" height="287" /></a></p>
<p><span style="color: #ff0000;"><strong>&#8220;Why isn&#8217;t Group Policy Working on this client?&#8221;<br />
&#8220;Did You Check the DNS Configuration of the Client?&#8221;</strong></span></p></blockquote>
<p>One of the most frequently encountered problems with Windows 2000 and above is that things just &#8217;stop working&#8217; when DNS gets out of whack. Specifically, if you&#8217;re not seeing Group Policy apply to your client machines, make sure their DNS client is pointing to a Domain Controller or other authoritative source for the domain. If it&#8217;s pointing to the wrong place or not pointing anywhere, Group Policy will simply not be downloaded.</p>
<p>As a colleague of mine likes to say, &#8216;Healthy DNS equals a healthy Active Directory.&#8217;</p>
<p>Moreover, in the age of Windows 2003/2008 with its multiple forests with cross-forest trusts, Group Policy could be applying from just about anywhere and everywhere. It&#8217;s more important than ever to verify that all DNS server pointers are designed properly and working as they should. For instance, if clients cannot access their &#8216;home&#8217; Domain Controllers while leveraging a cross-forest trust, they won&#8217;t get Group Policy.</p>
<p>Finally, to put a fine point on it, DNS leverages only the fully qualified name. It&#8217;s not enough to verify that you can resolve a computer named xppro1 as opposed to xppro1.corp.com. The first is actually the NetBIOS name and not the fully qualified domain name. The second is the fully qualified domain name. If you find yourself in a DNS resolution situation where resolving the NetBIOS name will work, but the fully qualified name will not work, then you have a DNS problem that needs to be addressed.</p>
<p>Another Awesome GP Post by Jeremy from <a href="http://www.gpanswers.com">GPAnswers.com</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/06/what-is-group-policy-and-how-can-it-help-me.html" rel="bookmark" title="Permanent Link: What is Group Policy and how can it help me?" >What is Group Policy and how can it help me?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/02/top-5-reasons-admins-fail-at-group-policy.html" rel="bookmark" title="Permanent Link: Top 5 reasons Admins FAIL at Group Policy." >Top 5 reasons Admins FAIL at Group Policy.</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/08/what-happens-if-i-apply-vista-specific-group-policy-settings-to-my-xp-machines.html" rel="bookmark" title="Permanent Link: What happens if I apply Vista-specific Group Policy settings to my XP machines?" >What happens if I apply Vista-specific Group Policy settings to my XP machines?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/06/using-group-policy-to-map-network-drives.html" rel="bookmark" title="Permanent Link: Using group policy to map network drives." >Using group policy to map network drives.</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/07/stop-windows-from-nagging-you-to-reboot-after-automatic-updates.html" rel="bookmark" title="Permanent Link: Stop Windows From Nagging You To Reboot After Automatic Updates!" >Stop Windows From Nagging You To Reboot After Automatic Updates!</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/mLfjJWw_ol4FqZwuWhR0CCL8DPA/0/da"><img src="http://feedads.g.doubleclick.net/~a/mLfjJWw_ol4FqZwuWhR0CCL8DPA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/mLfjJWw_ol4FqZwuWhR0CCL8DPA/1/da"><img src="http://feedads.g.doubleclick.net/~a/mLfjJWw_ol4FqZwuWhR0CCL8DPA/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=IwOzU8MeoTI:WlmxyBsi9VE:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=IwOzU8MeoTI:WlmxyBsi9VE:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/IwOzU8MeoTI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/05/dns-is-life-group-policy-tip-of-the-week.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/05/dns-is-life-group-policy-tip-of-the-week.html</feedburner:origLink></item>
		<item>
		<title>XKCD makes a good point about real world encryption…</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/SCK32wmy16U/xkcd-makes-a-good-point-about-real-world-encryption.html</link>
		<comments>http://www.asktheadmin.com/2009/05/xkcd-makes-a-good-point-about-real-world-encryption.html#comments</comments>
		<pubDate>Wed, 27 May 2009 08:49:28 +0000</pubDate>
		<dc:creator>Karl L. Gechlik | AskTheAdmin.com</dc:creator>
		
		<category><![CDATA[Geeky Humor]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/?p=2027</guid>
		<description><![CDATA[
[via XKCD]
Related PostsWhat XKCD really stands for!Antivirus software on a voting machine? Diebold you have done it again!A Weekend without the Internet on XKCD&#8230;What a strange thing to name your son&#8230;Quick Geeky Laugh. Do you read XKCD?]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter" src="http://imgs.xkcd.com/comics/security.png" alt="null" /></p>
<p style="text-align: right;">[via <a href="http://xkcd.com/538/">XKCD</a>]</p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/08/what-xkcd-really-stands-for.html" rel="bookmark" title="Permanent Link: What XKCD really stands for!" >What XKCD really stands for!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/08/antivirus-software-on-a-voting-machine-diebold-you-have-done-it-again.html" rel="bookmark" title="Permanent Link: Antivirus software on a voting machine? Diebold you have done it again!" >Antivirus software on a voting machine? Diebold you have done it again!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/06/a-weekend-without-the-internet-on-xkcd.html" rel="bookmark" title="Permanent Link: A Weekend without the Internet on XKCD&hellip;" >A Weekend without the Internet on XKCD&hellip;</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/10/what-strange-thing-to-name-your-son.html" rel="bookmark" title="Permanent Link: What a strange thing to name your son&#8230;" >What a strange thing to name your son&#8230;</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/03/quick-geeky-laugh-do-you-read-xkcd-2.html" rel="bookmark" title="Permanent Link: Quick Geeky Laugh. Do you read XKCD?" >Quick Geeky Laugh. Do you read XKCD?</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/8xjVVGuBaCGQyuTXmPfBgsTcGKQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/8xjVVGuBaCGQyuTXmPfBgsTcGKQ/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/8xjVVGuBaCGQyuTXmPfBgsTcGKQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/8xjVVGuBaCGQyuTXmPfBgsTcGKQ/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=SCK32wmy16U:HtV0zkxYmKo:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=SCK32wmy16U:HtV0zkxYmKo:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/SCK32wmy16U" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/05/xkcd-makes-a-good-point-about-real-world-encryption.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/05/xkcd-makes-a-good-point-about-real-world-encryption.html</feedburner:origLink></item>
		<item>
		<title>4 Simple Steps to Change Your Computer Sounds</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/y3FBN4exw0Y/4-simple-steps-to-change-your-computer-sounds.html</link>
		<comments>http://www.asktheadmin.com/2009/05/4-simple-steps-to-change-your-computer-sounds.html#comments</comments>
		<pubDate>Tue, 26 May 2009 14:41:33 +0000</pubDate>
		<dc:creator>kerry</dc:creator>
		
		<category><![CDATA[Free Download]]></category>

		<category><![CDATA[General]]></category>

		<category><![CDATA[Group Policy]]></category>

		<category><![CDATA[Windows Mobile]]></category>

		<category><![CDATA[lookup]]></category>

		<category><![CDATA[startup]]></category>

		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/?p=2233</guid>
		<description><![CDATA[Tired of your standard Windows Startup and Shutdown tunes?
If you&#8217;re like me, you use your Windows-based computer almost every day.  The startup and shutdown sounds have just gotten a little boring to be honest.  Here are some simple steps to use your favorite voice, music excerpt, or sound for your computer&#8217;s start-up and shutdown sequence.  [...]]]></description>
			<content:encoded><![CDATA[<p>Tired of your standard Windows Startup and Shutdown tunes?</p>
<p>If you&#8217;re like me, you use your Windows-based computer almost every day.  The startup and shutdown sounds have just gotten a little boring to be honest.  Here are some simple steps to use your favorite voice, music excerpt, or sound for your computer&#8217;s start-up and shutdown sequence.  You&#8217;ll need two soundbites.</p>
<p><span style="underline;"><strong>Step 1</strong></span>. <strong>Choose the soundbites:</strong> Choose the track which you want to play at start-up and shutdown jingles.  Key to note:</p>
<ol>
<li>It must be in the .WAV format.</li>
<li>The soundbite shouldn&#8217;t be too long otherwise you could be waiting for the bite to end before you begin computing.</li>
</ol>
<p>Your preferred file is likely an mp3, but regardless, if its not in .WAV format, you can easily convert it using  any converter.  My preference is <a href="http://audacity.sourceforge.net/">audacity</a>, which is an open source music editor &lt;&#8211; it allows you to actually select a &#8220;soundbite&#8221; from any song.</p>
<p><strong><span style="underline;">Step 2</span>.   Rename the new files. </strong>Rename these files as “Windows XP Startup.WAV” and “Windows XP Shutdown.WAV” respectively.</p>
<p><strong><span style="underline;">Step 3</span>.</strong> <strong>Rename the old files.</strong></p>
<ol>
<li>Goto “C:\WINDOWS\MEDIA”</li>
<li>Find the files “Windows XP Startup.WAV” and “Windows XP Shutdown.WAV”, and rename them to Windows XP Startup<strong>_old</strong>.WAV and  Windows XP Shutdown<strong>_old</strong>.WAV respectively. This step is required for the case if you need to revert back to these sounds, otherwise you can ignore this step and just delete them (not recommended).</li>
</ol>
<p><span style="underline;"><strong>Step 4.</strong></span> <strong>Save your new files. </strong>Just copy your files from step 2 into the directory “C:\WINDOWS\MEDIA”</p>
<p>You now have new startup and shutdown tunes.</p>
<p>Kerry enjoys writing about a variety of topics.  Her favorite website is CallCatalog.com which is a <a title="reverse phone directory" href="http://www.callcatalog.com">reverse phone directory</a> website.  You can also read her blog which discusses <a href="http://www.callcatalog.com">phone number</a> privacy<a title="reverse phone directory" href="http://www.callcatalog.com/blog"></a> issues.</p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/07/innovation-computer-program-to-learn-to.html" rel="bookmark" title="Permanent Link: Innovation: Computer program to learn to understand baby talk?" >Innovation: Computer program to learn to understand baby talk?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/07/innovation-computer-program-to-learn-to-understand-baby-talk.html" rel="bookmark" title="Permanent Link: Innovation: Computer program to learn to understand baby talk?" >Innovation: Computer program to learn to understand baby talk?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/06/simple-trick-to-keep-your-computer-from-locking-up.html" rel="bookmark" title="Permanent Link: Simple Trick to Keep Your Computer from Locking Up" >Simple Trick to Keep Your Computer from Locking Up</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/07/some-new-dash-tips-tricks-for-wm6-tip-1.html" rel="bookmark" title="Permanent Link: Some New Dash Tips &amp; Tricks for WM6 - Tip 1 Restore Your Alert Sounds!" >Some New Dash Tips &amp; Tricks for WM6 - Tip 1 Restore Your Alert Sounds!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/01/how-can-i-move-my-pictures-folder-from-my-documents-to-an-external-drive.html" rel="bookmark" title="Permanent Link: How can I move My Pictures folder from my documents to an external drive?" >How can I move My Pictures folder from my documents to an external drive?</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/OljchGtgT9KwT7R9cJTt_d5Mj-k/0/da"><img src="http://feedads.g.doubleclick.net/~a/OljchGtgT9KwT7R9cJTt_d5Mj-k/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/OljchGtgT9KwT7R9cJTt_d5Mj-k/1/da"><img src="http://feedads.g.doubleclick.net/~a/OljchGtgT9KwT7R9cJTt_d5Mj-k/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=y3FBN4exw0Y:wuSJ8UFPVYY:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=y3FBN4exw0Y:wuSJ8UFPVYY:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/y3FBN4exw0Y" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/05/4-simple-steps-to-change-your-computer-sounds.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/05/4-simple-steps-to-change-your-computer-sounds.html</feedburner:origLink></item>
		<item>
		<title>Backup your drivers with DriverBackup 2. (Windows)</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/q_DMq_mcQGI/backup-your-drivers-with-driverbackup-2-windows.html</link>
		<comments>http://www.asktheadmin.com/2009/05/backup-your-drivers-with-driverbackup-2-windows.html#comments</comments>
		<pubDate>Tue, 26 May 2009 09:11:33 +0000</pubDate>
		<dc:creator>Karl L. Gechlik | AskTheAdmin.com</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/?p=2232</guid>
		<description><![CDATA[ I HATE reinstalling drivers! I like to create images and burn them to disk. These images contain the machines operating system and drivers, But this is not always possible and in a sticky situation it is better to have a backup then not to have a backup. By using this small portable application called [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.asktheadmin.com/wp-content/uploads/2009/05/drvbkhead.png"><img style="border-right: 0px; border-top: 0px; display: inline; margin-left: 0px; border-left: 0px; margin-right: 0px; border-bottom: 0px" title="DrvBKHead" src="http://www.asktheadmin.com/wp-content/uploads/2009/05/drvbkhead-thumb.png" border="0" alt="DrvBKHead" width="129" height="129" align="left" /></a> I HATE reinstalling drivers! I like to create images and burn them to disk. These images contain the machines operating system and drivers, But this is not always possible and in a sticky situation it is better to have a backup then not to have a backup. By using this small portable application called DriverBackup2 you can export your drivers and save them to a cd, dvd or pretty much anywhere for easy reinstallation.<br />
<span id="more-2232"></span><br />
Let’s see how this easy program can help us backup our drivers.  <a href="http://sourceforge.net/projects/drvback/">I downloaded the 320kb RAR file</a> and unrared it/ Then I double clicked on the DrvBK.exe file and was ready to rock and roll. Below you will see a screen shot of what your directory should look like after extracting the files.</p>
<p><a href="http://www.asktheadmin.com/wp-content/uploads/2009/05/drvbk1.png"><img style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" title="DrvBK1" src="http://www.asktheadmin.com/wp-content/uploads/2009/05/drvbk1-thumb.png" border="0" alt="DrvBK1" width="549" height="413" /></a></p>
<p>Upon running the application a window will come up. Don’t be alarmed that it says No devices found…. Check for administrative privileges first. This is normal as it starts querying your machine. You can see at the bottom of the window it is already searching and getting to know your system’s devices.</p>
<p><a href="http://www.asktheadmin.com/wp-content/uploads/2009/05/drvbk2.png"><img style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" title="DrvBK2" src="http://www.asktheadmin.com/wp-content/uploads/2009/05/drvbk2-thumb.png" border="0" alt="DrvBK2" width="549" height="475" /></a></p>
<p><a href="http://www.asktheadmin.com/wp-content/uploads/2009/05/drvbk3.png"><img style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" title="DrvBK3" src="http://www.asktheadmin.com/wp-content/uploads/2009/05/drvbk3-thumb.png" border="0" alt="DrvBK3" width="549" height="475" /></a></p>
<p>You can select which items you want to backup or select everything and do a full backup. After clicking the Start Backup button you will see this screen.</p>
<p><a href="http://www.asktheadmin.com/wp-content/uploads/2009/05/drvbk4.png"><img style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" title="DrvBK4" src="http://www.asktheadmin.com/wp-content/uploads/2009/05/drvbk4-thumb.png" border="0" alt="DrvBK4" width="549" height="536" /></a></p>
<p>Hit the browse button to select your path to backup to. For this instance I am putting it on my external second hard drive. I choose Make New Folder and continued.</p>
<p><a href="http://www.asktheadmin.com/wp-content/uploads/2009/05/image11.png"><img style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" title="image" src="http://www.asktheadmin.com/wp-content/uploads/2009/05/image-thumb12.png" border="0" alt="image" width="330" height="535" /></a></p>
<p>I hit OK and then Start Backup…</p>
<p><a href="http://www.asktheadmin.com/wp-content/uploads/2009/05/drvbk5.png"><img style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" title="DrvBK5" src="http://www.asktheadmin.com/wp-content/uploads/2009/05/drvbk5-thumb.png" border="0" alt="DrvBK5" width="549" height="536" /></a></p>
<p>And then it was done… Almost instantly!</p>
<p><a href="http://www.asktheadmin.com/wp-content/uploads/2009/05/drvbk6.png"><img style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" title="DrvBK6" src="http://www.asktheadmin.com/wp-content/uploads/2009/05/drvbk6-thumb.png" border="0" alt="DrvBK6" width="549" height="536" /></a></p>
<p>I hit OK and then attempted to restore my drivers…</p>
<p>I hit restore from the main menu and got this window:</p>
<p><a href="http://www.asktheadmin.com/wp-content/uploads/2009/05/image12.png"><img style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" title="image" src="http://www.asktheadmin.com/wp-content/uploads/2009/05/image-thumb13.png" border="0" alt="image" width="549" height="475" /></a></p>
<p><a href="http://www.asktheadmin.com/wp-content/uploads/2009/05/image13.png"><img style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" title="image" src="http://www.asktheadmin.com/wp-content/uploads/2009/05/image-thumb14.png" border="0" alt="image" width="567" height="416" /></a></p>
<p>I opened the file and hit blamo all my drivers were listed. And restoring was as easy as clicking Restore!</p>
<p>Do you have a tool you use or another method of backing up your drivers? If you do – please share them with us in the comments!</p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/12/find-all-your-drivers-with-double-driver.html" rel="bookmark" title="Permanent Link: Find all your drivers with Double Driver." >Find all your drivers with Double Driver.</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/07/good-to-know-you-dont-need-sata-drivers.html" rel="bookmark" title="Permanent Link: Good To Know: You Don&#8217;t Need NO STINKIN DRIVERS for your SATA Drives In VISTA!" >Good To Know: You Don&#8217;t Need NO STINKIN DRIVERS for your SATA Drives In VISTA!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/06/recover-windows-xp-2000-2003-and-nt-2.html" rel="bookmark" title="Permanent Link: Recover Windows XP, 2000, 2003 and NT passwords in a breeze for free&#8230; YES FREE!" >Recover Windows XP, 2000, 2003 and NT passwords in a breeze for free&#8230; YES FREE!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/08/how-do-i-create-a-backup-of-my-entire-blogger-blog.html" rel="bookmark" title="Permanent Link: How Do I Create A Backup Of My Entire (blogger) Blog?" >How Do I Create A Backup Of My Entire (blogger) Blog?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/09/how-to-debug-a-blue-screen-of-death-bsod-part-2.html" rel="bookmark" title="Permanent Link: How to debug a Blue Screen of Death (BSOD)- Part 2" >How to debug a Blue Screen of Death (BSOD)- Part 2</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/cHIPpFAP2eXYBffX38AiI1te4GM/0/da"><img src="http://feedads.g.doubleclick.net/~a/cHIPpFAP2eXYBffX38AiI1te4GM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/cHIPpFAP2eXYBffX38AiI1te4GM/1/da"><img src="http://feedads.g.doubleclick.net/~a/cHIPpFAP2eXYBffX38AiI1te4GM/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=q_DMq_mcQGI:4fFvxDwDtvg:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=q_DMq_mcQGI:4fFvxDwDtvg:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/q_DMq_mcQGI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/05/backup-your-drivers-with-driverbackup-2-windows.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/05/backup-your-drivers-with-driverbackup-2-windows.html</feedburner:origLink></item>
		<item>
		<title>AskTheAdmin’s Last-Minute Father’s Day Deals of the Month</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/wWcYcJuiK74/asktheadmins-last-minute-fathers-day-deals-of-the-month.html</link>
		<comments>http://www.asktheadmin.com/2009/05/asktheadmins-last-minute-fathers-day-deals-of-the-month.html#comments</comments>
		<pubDate>Fri, 22 May 2009 17:41:46 +0000</pubDate>
		<dc:creator>Commodore64</dc:creator>
		
		<category><![CDATA[Admin's Arsenal]]></category>

		<category><![CDATA[General]]></category>

		<category><![CDATA[coupons]]></category>

		<category><![CDATA[deals]]></category>

		<category><![CDATA[fathers day]]></category>

		<category><![CDATA[gift]]></category>

		<category><![CDATA[last chance]]></category>

		<category><![CDATA[savings]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/?p=2240</guid>
		<description><![CDATA[Hey there Kiddies!
Commodore64 back again to bring you the best deals we&#8217;ve found by tirelessly scouring the web for the best savings around. Father&#8217;s Day is around the corner, and time is running out to get dad that perfect gift. It&#8217;s no surprise that we get the best deals around because we have access to [...]]]></description>
			<content:encoded><![CDATA[<p>Hey there Kiddies!</p>
<p>Commodore64 back again to bring you the best deals we&#8217;ve found by tirelessly scouring the web for the best savings around. Father&#8217;s Day is around the corner, and time is running out to get dad that perfect gift. It&#8217;s no surprise that we get the best deals around because we have access to some of the best coupons and savings links around. We&#8217;ve picked the best of the best, and rounded them up for you right here. Check them out:</p>
<p><a href="http://affiliate.buy.com/gateway.aspx?adid=17662&#038;pid=2651201&#038;aid=10467195&#038;sURL=http%3A%2F%2Fwww%2Ebuy%2Ecom%2Fprod%2Fibm%2Dlenovo%2Dthinkpad%2Dt60%2Dintel%2Ddual%2Dcore%2Dt2400%2D1%2D83ghz%2D2gb%2D60gb%2D7200rpm%2Fq%2Floc%2F101%2F210998341%2Ehtml"><img src='http://www.doodlerblog.com/wp-content/uploads/t60.jpg' alt='IBM/Lenovo Thinkpad T60' class='alignleft' /></a><br />
<br/>&nbsp;<br/>&nbsp;<br/><br />
This little monster in a box packs quite a punch! It sports an Intel Dual Core T2400 @ 1.83Ghz. On top of that there&#8217;s plenty of Hard Drive space with it&#8217;s 60Gb 7200 rpm internal drive. And the graphics are brilliant with it&#8217;s 14.1 inch display which rocks a Radeon X1400 128Mb Graphics Array. You can grab this awesome little machine for 50% OFF the retail price of $1000. That&#8217;s right, just $499 for this awesome machine.<br />
<a href="http://affiliate.buy.com/gateway.aspx?adid=17662&#038;pid=2651201&#038;aid=10467195&#038;sURL=http%3A%2F%2Fwww%2Ebuy%2Ecom%2Fprod%2Fibm%2Dlenovo%2Dthinkpad%2Dt60%2Dintel%2Ddual%2Dcore%2Dt2400%2D1%2D83ghz%2D2gb%2D60gb%2D7200rpm%2Fq%2Floc%2F101%2F210998341%2Ehtml">Click here to grab it while it&#8217;s still available!</a><br />
<br/>&nbsp;<br/>&nbsp;<br/>&nbsp;<br/><br />
<a href="http://affiliate.buy.com/gateway.aspx?adid=17662&#038;pid=2651201&#038;aid=10467195&#038;sURL=http%3A%2F%2Fwww%2Ebuy%2Ecom%2Fprod%2Fkingston%2D4gb%2Ddatatraveler%2Dgeneration%2D2%2Dg2%2Dusb%2Dflash%2Ddrive%2D4%2Dpack%2Fq%2Floc%2F101%2F210733499%2Ehtml"><img src='http://www.doodlerblog.com/wp-content/uploads/kingston.jpg' alt='Kingston 4Gb Data Traveler G2' class='alignleft' /></a><br />
<br/>&nbsp;<br/>&nbsp;<br/>&nbsp;<br/>This awesome little memory keychain hold a whopping 4GB in its new, low-profile Generation 2 design. Originally costing $65, we get the best deals here at AskTheAdmin, so now you can grab it for 34% off the retail price for just $41.95! <a href="http://affiliate.buy.com/gateway.aspx?adid=17662&#038;pid=2651201&#038;aid=10467195&#038;sURL=http%3A%2F%2Fwww%2Ebuy%2Ecom%2Fprod%2Fkingston%2D4gb%2Ddatatraveler%2Dgeneration%2D2%2Dg2%2Dusb%2Dflash%2Ddrive%2D4%2Dpack%2Fq%2Floc%2F101%2F210733499%2Ehtml">Click here to grab it!</a><br />
<br/>&nbsp;<br/>&nbsp;<br/>&nbsp;<br/>&nbsp;<br/>&nbsp;<br/><br />
<a href="http://affiliate.buy.com/gateway.aspx?adid=17662&#038;pid=2651201&#038;aid=10467195&#038;sURL=http%3A%2F%2Fwww%2Ebuy%2Ecom%2Fprod%2Fsamsung%2Dpn42a450%2D42%2Dwidescreen%2D720p%2Dplasma%2Dhdtv%2D100%2D000%2D1%2Ddynamic%2Fq%2Floc%2F111%2Flistingid%2F32534650%2F207900180%2Ehtml"><br />
<img src='http://www.doodlerblog.com/wp-content/uploads/pn42a450.jpg' alt='Samsung PN42A450' class='alignleft' /></a><br/>&nbsp;<br/>&nbsp;<br/>This gorgeous, Piano Black Plasma TV is a whopping 42&#8243; Wide Screen and supports up to 720p HDTV. The awesome technology built into this puppy allows for a 100,000:1 Dynamic Contrast Ratio! This Beautiful flat screen TV retails for $1000, but we would never let our readers pay retail&#8230; <a href="http://affiliate.buy.com/gateway.aspx?adid=17662&#038;pid=2651201&#038;aid=10467195&#038;sURL=http%3A%2F%2Fwww%2Ebuy%2Ecom%2Fprod%2Fsamsung%2Dpn42a450%2D42%2Dwidescreen%2D720p%2Dplasma%2Dhdtv%2D100%2D000%2D1%2Ddynamic%2Fq%2Floc%2F111%2Flistingid%2F32534650%2F207900180%2Ehtml">Click this link to get over $300 off and grab this TV for $698 + FREE Budget Shipping!</a> That&#8217;s insane!<br />
<br/>&nbsp;<br/>These are some awesome deals that are just too good not to share with our lucky readers. Enjoy!<br />
<br/>&nbsp;<br />
Commodore64 (The one you used to play Bruce Lee on ,8,1)<br />
<br/>&nbsp;<br/>&nbsp;<br/>&nbsp;<br/>&nbsp;</p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/08/deal-of-the-day-dsl-on-the-cheap.html" rel="bookmark" title="Permanent Link: Deal of the Day: DSL On The Cheap!" >Deal of the Day: DSL On The Cheap!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/06/ask-the-admins-knock-out-fathers-day-deal-you-just-cant-miss.html" rel="bookmark" title="Permanent Link: Ask The Admin&#8217;s knock-out Father&#8217;s Day deal you just can&#8217;t miss!" >Ask The Admin&#8217;s knock-out Father&#8217;s Day deal you just can&#8217;t miss!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/05/asktheadmin-top-4-mothers-day-techie-gifts-and-last-minute-deals.html" rel="bookmark" title="Permanent Link: AskTheAdmin - Top 4 Mother&#8217;s Day techie gifts and last-minute deals!" >AskTheAdmin - Top 4 Mother&#8217;s Day techie gifts and last-minute deals!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/07/be-afraid-be-very-afraid-fbi-are-now.html" rel="bookmark" title="Permanent Link: Be Afraid Be Very Afraid: The FBI are now l33t and will PWN your machine." >Be Afraid Be Very Afraid: The FBI are now l33t and will PWN your machine.</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/11/tivo-scheduling-on-my-mobile-phone-for-real.html" rel="bookmark" title="Permanent Link: Tivo Scheduling on My Mobile Phone! For Real." >Tivo Scheduling on My Mobile Phone! For Real.</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/rY3GQ6QyR3YgaqTGmA0lDOYR49Q/0/da"><img src="http://feedads.g.doubleclick.net/~a/rY3GQ6QyR3YgaqTGmA0lDOYR49Q/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/rY3GQ6QyR3YgaqTGmA0lDOYR49Q/1/da"><img src="http://feedads.g.doubleclick.net/~a/rY3GQ6QyR3YgaqTGmA0lDOYR49Q/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=wWcYcJuiK74:c7m3cXw7TJ0:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=wWcYcJuiK74:c7m3cXw7TJ0:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/wWcYcJuiK74" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/05/asktheadmins-last-minute-fathers-day-deals-of-the-month.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/05/asktheadmins-last-minute-fathers-day-deals-of-the-month.html</feedburner:origLink></item>
		<item>
		<title>Mail2Web is no longer free but I have a solution for your free exchange like active syncing!</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/ecA4Vx3ctFc/mail2web-is-no-longer-free-but-i-have-a-solution-for-your-free-exchange-like-active-syncing.html</link>
		<comments>http://www.asktheadmin.com/2009/05/mail2web-is-no-longer-free-but-i-have-a-solution-for-your-free-exchange-like-active-syncing.html#comments</comments>
		<pubDate>Thu, 21 May 2009 18:13:36 +0000</pubDate>
		<dc:creator>Karl L. Gechlik | AskTheAdmin.com</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/2009/05/mail2web-is-no-longer-free-but-i-have-a-solution-for-your-free-exchange-like-active-syncing.html</guid>
		<description><![CDATA[ Can you believe that www.Mail2Web.com killed their free Exchange account’s ability to be sync over the air with activesync? I was more than pissed when I heard about it. You read about Commodore using it to sync his calendar and to do’s with his then fiancé who is now his wife. Commodore still needs [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.asktheadmin.com/wp-content/uploads/2009/05/admin.gif"><img title="Admin" style="border-right: 0px; border-top: 0px; display: inline; margin-left: 0px; border-left: 0px; margin-right: 0px; border-bottom: 0px" height="160" alt="Admin" src="http://www.asktheadmin.com/wp-content/uploads/2009/05/admin-thumb.gif" width="79" align="left" border="0" /></a> Can you believe that <a href="http://www.Mail2Web.com">www.Mail2Web.com</a> killed their free Exchange account’s ability to be sync over the air with activesync? I was more than pissed when I heard about it. You read about Commodore using it to sync his calendar and to do’s with his then fiancé who is now his wife. Commodore still needs that functionality and Mail2Web aint doing it for us anymore. </p>
<p>Guess who is going to save the day? It’s AskTheAdmin! Well actually it’s Google but the answer is brought to you by AskTheAdmin!</p>
<p>Google now has Activesync support on m.google.com meaning they can create a new gmail account and both sync to it! Let</p>
<p>s check out how it works:</p>
<p><span id="more-2239"></span></p>
<p>To set up Google Sync on your Windows Mobile device, please follow the steps below.    <br /><i><b>Important Note</b></i>: Make sure that you have backed up any Contacts and Calendars from your phone to your computer before proceeding. </p>
<h6>Getting Started</h6>
<p> 1. Open the <b>Active Sync</b> application on your device&#8217;s home screen.   <br />2. Click the link <b>Set up your device to sync with it</b>.   <br />3. Enter <b>m.google.com</b> as the server address.   <br />4. Ensure that the <b>SSL</b> option is checked.   <br /><img src="http://www.google.com/help/hc/images/mobile_138636a_en.gif" /> <img src="http://www.google.com/help/hc/images/mobile_138636b_en.gif" /><br />
<h6>Sign In to Google Account</h6>
<p> 5. Click <b>Next</b>.   <br />6. Enter your full Google Account email address as the <b>User name</b>.   <br />7. Enter your Google Account password as the <b>Password</b>.   <br />8. Leave the <b>Domain</b> field empty. If your device requires you to enter a domain name, enter <b>google</b>.   <br />9. Click <b>Next</b>.   <br />10. Check only <b>Contacts</b> and <b>Calendar</b>.   <br />11. Click <b>Finish</b>.   <br /><img src="http://www.google.com/help/hc/images/mobile_138636c_en.gif" /> <img src="http://www.google.com/help/hc/images/mobile_138636d_en.gif" />   <br />12. Press the <b>Sync</b> softkey on the left to synchronize.   <br /><img src="http://www.google.com/help/hc/images/mobile_138636e_en.gif" />
<p>You&#8217;ve now set up Google Sync for your Windows Mobile device.    <br /><strong>Tip</strong>: If your business, school, or organization uses Google Apps, your administrator will first need to <a href="http://www.google.com/support/a/bin/answer.py?answer=135937">enable</a> ActiveSync before you can take advantage of this feature. </p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/05/how-to-use-free-exchange-server-to-sync.html" rel="bookmark" title="Permanent Link: Use a free Exchange server to sync up your calendar with one person and task list with another." >Use a free Exchange server to sync up your calendar with one person and task list with another.</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/02/sync-windows-mobile-calendar-tasks-and-contacts-between-more-than-one-device.html" rel="bookmark" title="Permanent Link: Sync Windows Mobile Calendar, Tasks and Contacts between more than one device." >Sync Windows Mobile Calendar, Tasks and Contacts between more than one device.</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/07/question-why-cant-i-sync-my-tmobile-wing-to-my-mac-using-missing-sync.html" rel="bookmark" title="Permanent Link: Question: Why cant i sync my tmobile Wing to my Mac using Missing Sync?" >Question: Why cant i sync my tmobile Wing to my Mac using Missing Sync?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/03/is-there-free-site-like-experts.html" rel="bookmark" title="Permanent Link: Is there a free site like Experts Exchange?" >Is there a free site like Experts Exchange?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/06/rumor-jesus-iphone-will-have-exchange.html" rel="bookmark" title="Permanent Link: Rumor: The Jesus / iPhone will have Exchange support &amp; rss reader." >Rumor: The Jesus / iPhone will have Exchange support &amp; rss reader.</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/1HRWxTnwLvwLuXRFjHFg6mAg5TI/0/da"><img src="http://feedads.g.doubleclick.net/~a/1HRWxTnwLvwLuXRFjHFg6mAg5TI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/1HRWxTnwLvwLuXRFjHFg6mAg5TI/1/da"><img src="http://feedads.g.doubleclick.net/~a/1HRWxTnwLvwLuXRFjHFg6mAg5TI/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=ecA4Vx3ctFc:IoFfz7HYrmY:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=ecA4Vx3ctFc:IoFfz7HYrmY:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/ecA4Vx3ctFc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/05/mail2web-is-no-longer-free-but-i-have-a-solution-for-your-free-exchange-like-active-syncing.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/05/mail2web-is-no-longer-free-but-i-have-a-solution-for-your-free-exchange-like-active-syncing.html</feedburner:origLink></item>
		<item>
		<title>Start Wandows Ngrmadly (Funny)</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/nuPPkjpzuH4/start-wandows-ngrmadly-funny.html</link>
		<comments>http://www.asktheadmin.com/2009/05/start-wandows-ngrmadly-funny.html#comments</comments>
		<pubDate>Tue, 19 May 2009 14:46:57 +0000</pubDate>
		<dc:creator>Karl L. Gechlik | AskTheAdmin.com</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/2009/05/start-wandows-ngrmadly-funny.html</guid>
		<description><![CDATA[
Thanks Commodore for the early morning chuckle!
&#160;
_TheNgrmadAdmiN_
Related PostsWhy I hate Vista a little more each day.Mac guy and PC guy team up in a commercial? (PIC)Display a Start Up Message in Windows XP before logging in.IPV6? The day the router died! (Video ReRun)Do you like 24? Here it is 1990s style&#8230;]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.asktheadmin.com/wp-content/uploads/2009/05/image14.png"><img title="image" style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" height="454" alt="image" src="http://www.asktheadmin.com/wp-content/uploads/2009/05/image-thumb15.png" width="604" border="0" /></a></p>
<p>Thanks <a href="http://www.doodlerblog.com">Commodore</a> for the early morning chuckle!</p>
<p>&#160;</p>
<p><a href="http://www.asktheadmin.com">_TheNgrmadAdmiN_</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/03/why-i-hate-vista-little-more-each-day.html" rel="bookmark" title="Permanent Link: Why I hate Vista a little more each day." >Why I hate Vista a little more each day.</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/12/mac-guy-and-pc-guy-team-up-in.html" rel="bookmark" title="Permanent Link: Mac guy and PC guy team up in a commercial? (PIC)" >Mac guy and PC guy team up in a commercial? (PIC)</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/03/display-start-up-message-in-windows-xp.html" rel="bookmark" title="Permanent Link: Display a Start Up Message in Windows XP before logging in." >Display a Start Up Message in Windows XP before logging in.</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/11/ipv6-the-day-the-router-died-video.html" rel="bookmark" title="Permanent Link: IPV6? The day the router died! (Video ReRun)" >IPV6? The day the router died! (Video ReRun)</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/11/fridays-funny.html" rel="bookmark" title="Permanent Link: Do you like 24? Here it is 1990s style&#8230;" >Do you like 24? Here it is 1990s style&#8230;</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/DWke00adijLcsFnSvBq9drP-tS4/0/da"><img src="http://feedads.g.doubleclick.net/~a/DWke00adijLcsFnSvBq9drP-tS4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/DWke00adijLcsFnSvBq9drP-tS4/1/da"><img src="http://feedads.g.doubleclick.net/~a/DWke00adijLcsFnSvBq9drP-tS4/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=nuPPkjpzuH4:GrgMARJYOqQ:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=nuPPkjpzuH4:GrgMARJYOqQ:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/nuPPkjpzuH4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/05/start-wandows-ngrmadly-funny.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/05/start-wandows-ngrmadly-funny.html</feedburner:origLink></item>
		<item>
		<title>Hide a .rar archive inside a jpg image</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/Cufx7Z9BVQM/hide-a-rar-archive-inside-a-jpg-image.html</link>
		<comments>http://www.asktheadmin.com/2009/05/hide-a-rar-archive-inside-a-jpg-image.html#comments</comments>
		<pubDate>Mon, 18 May 2009 08:42:41 +0000</pubDate>
		<dc:creator>Karl L. Gechlik | AskTheAdmin.com</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/?p=2070</guid>
		<description><![CDATA[ Yes boys and girls you read that correctly. You can hide a rar file inside a jpg file that will open the image when double clicked, through very clever command line shenanigans.
Let’s check it out:
Grab your super secret .rar file, copy it to the same directory as your not so super secret jpg image. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.asktheadmin.com/wp-content/uploads/2009/02/topsecret.png"><img style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; margin-left: 0px; margin-right: 0px; border-right-width: 0px" title="topsecret" src="http://www.asktheadmin.com/wp-content/uploads/2009/02/topsecret-thumb.png" border="0" alt="topsecret" width="163" height="244" align="left" /></a> Yes boys and girls you read that correctly. You can hide a rar file inside a jpg file that will open the image when double clicked, through very clever command line shenanigans.</p>
<p>Let’s check it out:</p>
<p>Grab your super secret .rar file, copy it to the same directory as your not so super secret jpg image. Let’s use c:\test for our example.</p>
<p>Open up a command prompt by clicking Start/Run and typing “cmd” and click ok.<br />
In the DOS window, type “cd c:\test” to navigate to our folder<br />
Type “copy /b input.jpg + input.rar ouput.jpg<br />
(input jpg is the picture that will show when it is opened, input.rar is the secret file you want to hide and output.jpg will be the name of the new combined file)</p>
<p>It is as simple as that!</p>
<p>You can double click the new file and it will show it as a picture, BUT… if you open it with winrar, you will see the files contained.</p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/10/hide-drives-in-my-computer.html" rel="bookmark" title="Permanent Link: Hide Drives in My Computer" >Hide Drives in My Computer</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/06/can-i-uninstall-msn-messenger-from-my-xp-install.html" rel="bookmark" title="Permanent Link: Can I uninstall MSN Messenger from my XP install?" >Can I uninstall MSN Messenger from my XP install?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/05/if-geeks-ran-world-what-would-our-tv.html" rel="bookmark" title="Permanent Link: If Geeks ran the world what would our TV Guide look like? (PIC)" >If Geeks ran the world what would our TV Guide look like? (PIC)</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/10/simple-turn-off-uac-instructions.html" rel="bookmark" title="Permanent Link: Simple turn off UAC instructions." >Simple turn off UAC instructions.</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/12/open-source-e-mail-encryption-2.html" rel="bookmark" title="Permanent Link: Open Source E-Mail Encryption" >Open Source E-Mail Encryption</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/aOY1kGHTrWXoHOq3admsprKiywI/0/da"><img src="http://feedads.g.doubleclick.net/~a/aOY1kGHTrWXoHOq3admsprKiywI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/aOY1kGHTrWXoHOq3admsprKiywI/1/da"><img src="http://feedads.g.doubleclick.net/~a/aOY1kGHTrWXoHOq3admsprKiywI/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=Cufx7Z9BVQM:tHZXLW4r5Bo:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=Cufx7Z9BVQM:tHZXLW4r5Bo:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/Cufx7Z9BVQM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/05/hide-a-rar-archive-inside-a-jpg-image.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/05/hide-a-rar-archive-inside-a-jpg-image.html</feedburner:origLink></item>
		<item>
		<title>How can I join a Ubuntu machine to my domain?</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/grfAPM6reJA/how-can-i-join-a-ubuntu-machine-to-my-domain.html</link>
		<comments>http://www.asktheadmin.com/2009/05/how-can-i-join-a-ubuntu-machine-to-my-domain.html#comments</comments>
		<pubDate>Thu, 14 May 2009 17:42:41 +0000</pubDate>
		<dc:creator>eldipablo</dc:creator>
		
		<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/?p=2211</guid>
		<description><![CDATA[When my old boss at Websense first introduced me to the world of Linux, being from a Windows shop, I naturally asked him how to join my Linux workstation to the domain. He of course said, &#8220;Why would you want to do that? Don&#8217;t taint the pureness of open source!&#8221; So I never pressed the [...]]]></description>
			<content:encoded><![CDATA[<p>When my old boss at Websense first introduced me to the world of Linux, being from a Windows shop, I naturally asked him how to join my Linux workstation to the domain. He of course said, &#8220;Why would you want to do that? Don&#8217;t taint the pureness of open source!&#8221; So I never pressed the issue.<br />
That is, until yesterday afternoon. I decided to give it a go again, and I have to tell you they have made it really easy. I read some blog posts on this before, and it used to be kind of a pain in the arse to do it. Not any more with the use of <a href="http://www.likewisesoftware.com/products/likewise_open/">LikeWise Open</a> which is available in the Ubuntu repositories.<br />
To install it and set it up, just do the following steps (Via <a href="http://anothersysadmin.wordpress.com/2008/04/06/howto-active-directory-authentication-in-ubuntu-804/">AnotherSysadmin.Wordpress.Com</a>):<br />
<code><br />
</code></p>
<ol>
<li><code>sudo apt-get update</code></li>
<li><code>sudo apt-get install likewise-open</code></li>
<li><code>sudo domainjoin-cli join fqdn.of.your.domain Administrator</code></li>
<li><code>sudo update-rc.d likewise-open defaults</code></li>
<li><code>sudo /etc/init.d/likewise-open start</code></li>
</ol>
<p>After that is done, you can log out, then log back in with your domain\username account (You have to add the domain\ first). Here is the <a href="http://linx.chitika.net/sosearch?xargs=AcZkgerat8aSKQaeFN5l2%2BrtwTeQ5OXYXANn1E0gLavifA5ek170n5iPDMHHiy7RV2hgG8uY5ayhcw5hnpfxgVnepoBo2mnAN56NsQ6v0g9vCXHplqAu2kEQ3Iq0iciSalk344%2BzOCf2FLoTMokFUEBL9E7ZYL0MkdBq7PjnS85cukenOy5xl7IZnO4OXW4dFCrz3bNU6EHmixadeVJWurtm5KfewQJKp3%2B%2B4hBeLDXo13hlRX6NvPQH9OuBDie%2Bobqzr6nBZ7HHNnOGT4H1rQ0bORv1kGtrlw6lw08Y6IPYUZy1N2pQMa1ZJkTbG65r&amp;q=beautiful%20screen%20shot">beautiful screen shot</a> of my Ubuntu machine in Active directory:<br />
<a href="http://bp2.blogger.com/_jLaEIqL6T8Y/SBs5cUjQjTI/AAAAAAAAAvs/rzqjoJFqiiY/s1600-h/Ubuntu1.PNG"><img style="display: block; float: none; margin-left: auto; margin-right: auto" src="http://bp2.blogger.com/_jLaEIqL6T8Y/SBs5cUjQjTI/AAAAAAAAAvs/rzqjoJFqiiY/s400/Ubuntu1.PNG" border="0" alt="Ubuntu windows active directory" /></a><br />
<a href="http://bp0.blogger.com/_jLaEIqL6T8Y/SBs5m0jQjUI/AAAAAAAAAv0/J-AY0-Rr9jE/s1600-h/Ubuntu2.PNG"><img style="display: block; float: none; margin-left: auto; margin-right: auto" src="http://bp0.blogger.com/_jLaEIqL6T8Y/SBs5m0jQjUI/AAAAAAAAAv0/J-AY0-Rr9jE/s400/Ubuntu2.PNG" border="0" alt="Ubuntu 8.04 windows active directory" /></a><br />
Pretty cool right? I bet you never knew it could be that easy to do. Try it yourself. Let me know how it goes in the comments.</p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/06/thursday-mornings-question-this-ones.html" rel="bookmark" title="Permanent Link: Thursday Morning&#8217;s Question&#8230; This ones a doooosie&#8230;" >Thursday Morning&#8217;s Question&#8230; This ones a doooosie&#8230;</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/09/group-policy-tip-local-gposdo-they-matter.html" rel="bookmark" title="Permanent Link: Group Policy Tip: Local GPOs&#8230;Do they matter?" >Group Policy Tip: Local GPOs&#8230;Do they matter?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/09/ubuntu-quick-tip-installing-new-true-type-fonts.html" rel="bookmark" title="Permanent Link: Ubuntu Quick Tip: Installing New True Type Fonts" >Ubuntu Quick Tip: Installing New True Type Fonts</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/03/setting-up-vnc-in-ubuntu-gutsy-gibson.html" rel="bookmark" title="Permanent Link: Setting Up VNC in Ubuntu, Gutsy Gibson." >Setting Up VNC in Ubuntu, Gutsy Gibson.</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/06/reviewing-the-hp-2533t-thin-client.html" rel="bookmark" title="Permanent Link: Reviewing the HP 2533t Thin Client." >Reviewing the HP 2533t Thin Client.</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/gHN5vgh8YJ9--_nH5EMHO58Iack/0/da"><img src="http://feedads.g.doubleclick.net/~a/gHN5vgh8YJ9--_nH5EMHO58Iack/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/gHN5vgh8YJ9--_nH5EMHO58Iack/1/da"><img src="http://feedads.g.doubleclick.net/~a/gHN5vgh8YJ9--_nH5EMHO58Iack/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=grfAPM6reJA:oQr7x6Pf6GI:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=grfAPM6reJA:oQr7x6Pf6GI:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/grfAPM6reJA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/05/how-can-i-join-a-ubuntu-machine-to-my-domain.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/05/how-can-i-join-a-ubuntu-machine-to-my-domain.html</feedburner:origLink></item>
		<item>
		<title>10 things your IT guy would like you to know</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/eoWmn39thcM/10-things-your-it-guy-would-like-you-to-know.html</link>
		<comments>http://www.asktheadmin.com/2009/05/10-things-your-it-guy-would-like-you-to-know.html#comments</comments>
		<pubDate>Wed, 13 May 2009 20:31:03 +0000</pubDate>
		<dc:creator>Karl L. Gechlik | AskTheAdmin.com</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/2009/05/10-things-your-it-guy-would-like-you-to-know.html</guid>
		<description><![CDATA[I read this over at Guy Mcdowell’s website and had to publish it and let you guys see this! It was not written by Guy but hey you can read the post your self. If you enjoy it check out his site as well!

I didn’t write this. I got it from a site, who got [...]]]></description>
			<content:encoded><![CDATA[<p>I read this over at <a href="http://www.guymcdowell.com/2009/03/11/10-things-your-it-guy-wants-you-to-know">Guy Mcdowell’s website</a> and had to publish it and let you guys see this! It was not written by Guy but hey you can read the post your self. If you enjoy it check out his site as well!</p>
<p><ins><ins></ins></ins></p>
<p><img title="brooding_it_guy" style="display: inline; margin-left: 0px; margin-right: 0px" height="263" alt="brooding_it_guy" src="http://www.guymcdowell.com/wp-content/uploads/2009/03/brooding_it_guy.jpg" width="161" align="left" />I didn’t write this. I got it <a href="http://awurl.com/ztcrst16918">from a site</a>, who got it from a site that no longer exists. Although the tone is a bit whiny, it is essentially true.</p>
<blockquote><p>1. If you ask me technical questions please don’t argue with me because you don’t like my answer. If you think you know more about the topic, why ask? And if I’m arguing with you…it’s because I am positive that I am correct, otherwise I’d just say “I don’t know” or give you some tips on where to look it up, I don’t have the time to just argue for the sake of it.     <br />2. Starting a conversation by insulting yourself (<em>i.e. “I’m such an idiot”</em>) will not make me laugh, or feel sorry for you;&#160; all it will do is remind me that yes, you are an idiot and that I am going to hate having to talk to you. Trust me;&#160; you don’t want to start a call that way.      <br />3. I am OK with you making mistakes, fixing them is my job. I am not OK with you lying to me about a mistake you made. It makes it much harder to resolve and thus makes my job more difficult. Be honest and we can get the problem resolved and continue on with our business.      <br />4. There is no magic <em>“Fix it”</em> button. Everything takes some amount of work to fix, and not everything is worth fixing or even possible to fix. If I say that you just need to re-do a document that you accidentally deleted 2 months ago, please don’t get mad at me.&#160; I’m not ignoring your problem, and it’s not that I don’t like you, I just can’t always fix everything.      <br />5. Not everything you ask me to do is <em>“urgent”</em>. In fact, by marking things as <em>“urgent”</em> every time, you almost ensure that I treat none of it as a priority.      <br />6. You are not the only one who needs help, and you usually don’t have the most urgent issue. Give me some time to get to your problem, it will get fixed.      <br />7. Emailing me several times about the same issue in the same day is not only unnecessary, it’s highly annoying. Emails will stay until I delete them. I won’t delete them until I’m done with them. I will typically respond as soon as I have a useful update. If it is an urgent issue, let me know (see number 5).      <br />8. Yes, I prefer email over telephone calls. It has nothing to do with being friendly, it’s about efficiency. It is much faster and easier for me to list out a set of questions that I need you to answer than it is for me to call and ask you them one by one. You can find the answers at your leisure and while I’m waiting I can work on other problems.      <br />9. Yes, I seem blunt and rude. It’s not that I mean to, I just don’t have the time to sugar coat things for you. I assume we are both adults and can handle the reality of a problem. If you did something wrong, I will tell you. I don’t care that it was a mistake, because it really makes no difference to me. Don’t take it personal, I just don’t want it to happen again.      <br />10. And finally, yes,<em> I can read your email, I can see what web pages you look at while you are at work, yes, I can access every file on your work computer, and I can tell if you are chatting with people on an instant messenger or chat room</em> (and can also read what you are typing).<strong> But no, I don’t do it. It’s unethical, I’m busy, and in all reality you aren’t all that interesting.</strong> So unless I am instructed to specifically monitor or investigate your actions, I don’t. There really are much more interesting things on the internet than you.</p>
</blockquote>
<p>The point of that article is one that everyone wants to make, whether they are in IT, or are testers, consultants, or engineers. The point is we are all trying to do our jobs the best that we can and it’s easiest to do that if we all work together, stop pointing fingers and give other people the space that we would like to get as well. If we can do that more often than not, things will go well and work out.</p>
</p>
<p> <a href="http://www.asktheadmin.com">_TheWatchingYouAdmiN_</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/08/geektest-i-just-wasted-20-minutes-i.html" rel="bookmark" title="Permanent Link: The GeekTest - I just wasted 20 minutes I will never get back To learn something i already knew." >The GeekTest - I just wasted 20 minutes I will never get back To learn something i already knew.</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/09/ubuntu-quick-tip-installing-new-true-type-fonts.html" rel="bookmark" title="Permanent Link: Ubuntu Quick Tip: Installing New True Type Fonts" >Ubuntu Quick Tip: Installing New True Type Fonts</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/10/install-leopard-new-mac-os-on-your-pc.html" rel="bookmark" title="Permanent Link: Install Leopard the new Mac OS on your PC in 3 easy steps!" >Install Leopard the new Mac OS on your PC in 3 easy steps!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/05/using-word-2007-to-write-a-blog-entry.html" rel="bookmark" title="Permanent Link: Using Word 2007 to write a blog entry" >Using Word 2007 to write a blog entry</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/07/after-using-gp-for-a-while-things-are-a-little-bit-slower-sometimes-when-new-users-log-on-why.html" rel="bookmark" title="Permanent Link: After using GP for a while, things are a little bit slower sometimes when new users log on. Why?" >After using GP for a while, things are a little bit slower sometimes when new users log on. Why?</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/dHpSbaYFLe9FhlYMhKjps5G6Y-c/0/da"><img src="http://feedads.g.doubleclick.net/~a/dHpSbaYFLe9FhlYMhKjps5G6Y-c/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/dHpSbaYFLe9FhlYMhKjps5G6Y-c/1/da"><img src="http://feedads.g.doubleclick.net/~a/dHpSbaYFLe9FhlYMhKjps5G6Y-c/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=eoWmn39thcM:8F9730qJE9o:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=eoWmn39thcM:8F9730qJE9o:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/eoWmn39thcM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/05/10-things-your-it-guy-would-like-you-to-know.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/05/10-things-your-it-guy-would-like-you-to-know.html</feedburner:origLink></item>
		<item>
		<title>Display Outlook 2007 contacts by last name.</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/03sRjU6a7H4/display-outlook-2007-contacts-by-last-name.html</link>
		<comments>http://www.asktheadmin.com/2009/05/display-outlook-2007-contacts-by-last-name.html#comments</comments>
		<pubDate>Wed, 13 May 2009 08:00:31 +0000</pubDate>
		<dc:creator>Karl L. Gechlik | AskTheAdmin.com</dc:creator>
		
		<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/?p=1909</guid>
		<description><![CDATA[From within Outlook 2007 your contacts are sorted by FirstName, LastName. At first look it seems like this is the only way you can have it&#8230; But, after some digging I came across a method that allows you to reverse it.
If you want to have the contacts sorted by last name instead by using the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.asktheadmin.com/wp-content/uploads/2008/09/outlook-2007.gif"><img class="size-thumbnail wp-image-1910 alignright" style="float: right;" title="outlook-2007" src="http://www.asktheadmin.com/wp-content/uploads/2008/09/outlook-2007-150x150.gif" alt="" width="150" height="150" /></a>From within Outlook 2007 your contacts are sorted by FirstName, LastName. At first look it seems like this is the only way you can have it&#8230; But, after some digging I came across a method that allows you to reverse it.</p>
<p>If you want to have the contacts sorted by last name instead by using the following method:</p>
<p>1. Open Microsoft Outlook.<br />
2. From the Tools menu, click Account Settings.<br />
3. On the Address Books tab, click Outlook Address Book.<br />
4. Click Change.<br />
5. Under the list of Outlook Address Books, select the one you want to change the sort order for.<br />
6. Click File As (Smith, John).<br />
7. Click Close.<br />
8. Click Close again.</p>
<p>Exit Outlook to have your changes applied. Once you re-open Outlook, you can verify that the sort order has been changed to last name. From the Tools menu, click Options. From the Preferences tab, click the Contact Options button. Verify that Last, First is listed as the Default “File As” order.</p>
<p style="text-align: right;">[Via <a href=" http://www.lockergnome.com/windows/2007/05/25/display-contacts-by-last-name-in-outlook-2007/">LockerGnome</a>]</p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/07/marriage-made-in-heaven-domino-and.html" rel="bookmark" title="Permanent Link: Marriage made in heaven?! Domino and Outlook, together&#8230;at last!" >Marriage made in heaven?! Domino and Outlook, together&#8230;at last!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/06/synching-palm-desktop-contacts-with.html" rel="bookmark" title="Permanent Link: Synching Palm Desktop Contacts with Outlook, Then to Blackberry" >Synching Palm Desktop Contacts with Outlook, Then to Blackberry</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/06/deleted-items-in-outlook-slow-to-synch.html" rel="bookmark" title="Permanent Link: Deleted items in Outlook slow to synch with Blackberry" >Deleted items in Outlook slow to synch with Blackberry</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/11/why-does-my-outlook-always-tell-me-it-was-shut-down-improperly-why-do-i-have-to-wait-for-it-to-check-my-pst.html" rel="bookmark" title="Permanent Link: Why does my Outlook always tell me it was shut down improperly? Why do I have to wait for it to check my PST?" >Why does my Outlook always tell me it was shut down improperly? Why do I have to wait for it to check my PST?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/04/can-i-change-inbox-font-in-microsoft.html" rel="bookmark" title="Permanent Link: Can I Change The Inbox Font in Microsoft Outlook?" >Can I Change The Inbox Font in Microsoft Outlook?</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/oI2gtR7_ErmAvEVim55yelLMNKY/0/da"><img src="http://feedads.g.doubleclick.net/~a/oI2gtR7_ErmAvEVim55yelLMNKY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/oI2gtR7_ErmAvEVim55yelLMNKY/1/da"><img src="http://feedads.g.doubleclick.net/~a/oI2gtR7_ErmAvEVim55yelLMNKY/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=03sRjU6a7H4:uKzogdgEk4g:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=03sRjU6a7H4:uKzogdgEk4g:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/03sRjU6a7H4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/05/display-outlook-2007-contacts-by-last-name.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/05/display-outlook-2007-contacts-by-last-name.html</feedburner:origLink></item>
		<item>
		<title>Get down with the Geek Movement! Can you name all these Geeks?</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/u-7zJ5x1PjU/get-down-with-the-geek-movement-can-you-name-all-these-geeks.html</link>
		<comments>http://www.asktheadmin.com/2009/05/get-down-with-the-geek-movement-can-you-name-all-these-geeks.html#comments</comments>
		<pubDate>Mon, 11 May 2009 16:36:08 +0000</pubDate>
		<dc:creator>Karl L. Gechlik | AskTheAdmin.com</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/?p=2195</guid>
		<description><![CDATA[An awesome bit of geek information submitted by our good friend The Slothman&#8230; Check it out and see if you name each of these self-proclaimed geeks before they tell you who they are at the end!
And no TheAdmiN was not featured&#8230; Thanks for looking out Kevin!

Enjoy!
_TheGeekedOutAdmiN_
Related PostsThe GeekTest - I just wasted 20 minutes I [...]]]></description>
			<content:encoded><![CDATA[<p>An awesome bit of geek information submitted by our good friend The Slothman&#8230; Check it out and see if you name each of these self-proclaimed geeks before they tell you who they are at the end!</p>
<p>And no TheAdmiN was not featured&#8230; Thanks for looking out Kevin!<br />
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/rCq6E6tnQKg&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=en&#038;feature=player_embedded&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/rCq6E6tnQKg&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=en&#038;feature=player_embedded&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object><br />
Enjoy!</p>
<p><a href="http://www.asktheadmin.com">_TheGeekedOutAdmiN_</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/08/geektest-i-just-wasted-20-minutes-i.html" rel="bookmark" title="Permanent Link: The GeekTest - I just wasted 20 minutes I will never get back To learn something i already knew." >The GeekTest - I just wasted 20 minutes I will never get back To learn something i already knew.</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/05/if-geeks-ran-world-what-would-our-tv.html" rel="bookmark" title="Permanent Link: If Geeks ran the world what would our TV Guide look like? (PIC)" >If Geeks ran the world what would our TV Guide look like? (PIC)</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/08/do-you-want-to-know-the-answer-to-every-question.html" rel="bookmark" title="Permanent Link: Do you want to know the answer to every question?" >Do you want to know the answer to every question?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/08/do-you-want-to-know-answer-to-every.html" rel="bookmark" title="Permanent Link: Do you want to know the answer to every question?" >Do you want to know the answer to every question?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/08/geeky-goodness-im-in-your-blank-blanking-your-blank.html" rel="bookmark" title="Permanent Link: Geeky Goodness: I&#8217;m In Your Blank Blanking Your Blank" >Geeky Goodness: I&#8217;m In Your Blank Blanking Your Blank</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/b4pqxfljCnM7xQrq-OQhi8pVrfA/0/da"><img src="http://feedads.g.doubleclick.net/~a/b4pqxfljCnM7xQrq-OQhi8pVrfA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/b4pqxfljCnM7xQrq-OQhi8pVrfA/1/da"><img src="http://feedads.g.doubleclick.net/~a/b4pqxfljCnM7xQrq-OQhi8pVrfA/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=u-7zJ5x1PjU:j9wAXt1anQM:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=u-7zJ5x1PjU:j9wAXt1anQM:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/u-7zJ5x1PjU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/05/get-down-with-the-geek-movement-can-you-name-all-these-geeks.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/05/get-down-with-the-geek-movement-can-you-name-all-these-geeks.html</feedburner:origLink></item>
		<item>
		<title>The Importance Of Change Management And Record Keeping</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/e6yiM0wA53U/the-importance-of-change-management-and-record-keeping.html</link>
		<comments>http://www.asktheadmin.com/2009/05/the-importance-of-change-management-and-record-keeping.html#comments</comments>
		<pubDate>Thu, 07 May 2009 08:00:42 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[networking]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/?p=1807</guid>
		<description><![CDATA[
For the past two months something has been going on with our firewall at the office.
I use JFFNMS to monitor my network and I began receiving notifications that certain services and ports on the firewall were randomly closing and opening. I tried to see what was going on, but nothing turned up in the event [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.asktheadmin.com/wp-content/uploads/2008/08/technical_writing.jpg"><img class="alignleft size-full wp-image-1808" title="technical_writing" src="http://www.asktheadmin.com/wp-content/uploads/2008/08/technical_writing.jpg" alt="" width="200" height="150" /></a></p>
<p>For the past two months something has been going on with our firewall at the office.</p>
<p>I use <a href="http://www.asktheadmin.com/2008/06/how-can-you-monitor-the-overall-status-and-health-of-your-network.html">JFFNMS </a>to monitor my network and I began receiving notifications that certain services and ports on the firewall were randomly closing and opening. I tried to see what was going on, but nothing turned up in the event logs. It would happen once or twice a day, but none of the users ever mentioned the services not being available or having trouble accessing the Internet, so I didn&#8217;t make much of it.</p>
<p>Beginning about two weeks ago it started happening more and more often, and this time the firewall was crashing every 3-4 days. When the server would crash everyone would lose external email and Internet access, so this clearly was not an acceptable situation. I tried some suggested fixes, including updating the NIC drivers but nothing worked. The machine would run out of resources, eventually lock up and need to be hard booted. I had decided it was probably time to call Microsoft to find out what was going on.</p>
<p>Before I laid out the $270 for a support call I needed to do some research into when this problem really started (and MS was probably going to ask me for that information anyway.) I looked back through my email archive to see when I started receiving the failure notifications. I had been focusing only on the past two weeks when the machine started crashing and not remembering that the problem actually started much earlier.</p>
<p>Now comes the important part. I used that information to look through the log I keep of server and network changes and maintenance. It turns out that two months ago I made a change to the firewall rules, and the problem started the very next day. It was hard to see how this particular change would cause the machine to crash, but it was too coincidental, so I disabled that rule and restarted the firewall service. There have been no warnings, problems or crashes since.</p>
<p>I hope you can see the value of good record keeping. <strong>If you are making changes to your network without keeping a detailed record of what you are doing and when you&#8217;re doing it, it is going to be extremely difficult to diagnose problems later.</strong></p>
<p>You can keep the log any way that works for you, just be sure you are keeping something. I used to keep it manually in an actual notebook, but I later switched to using a blog. That just made it easier to have everything logged by date. Then I categorize the posts so it&#8217;s easy to find all the entries about my Exchange server or firewall. If you keep the log electronically, you would be wise to keep it someplace other than on a file server on your network. If you can&#8217;t get into the network or server because of a problem, you don&#8217;t want</p>
<p>to also be kept from accessing the change log which might help you fix it.</p>
<p style="text-align: center;"><a href="http://www.asktheadmin.com/wp-content/uploads/2008/08/network1.jpg"><img class="size-full wp-image-1809" title="network1" src="http://www.asktheadmin.com/wp-content/uploads/2008/08/network1.jpg" alt="" width="300" height="199" /></a></p>
<p>Geeky details: What I think was really happening was that the rule I changed blocked access to some domains I didn&#8217;t want people accessing. These domains were still sending us email, or more accurately; spam, but the return emails/NDRs were being blocked. The firewall rule also was set to create a log entry when the rule fired. As the volume of incoming emails increased, the system couldn&#8217;t keep up with the logging of the return failed emails and the firewall was configured to shut down the firewall service if logging failed too many times in a row. So once I turned off logging for that rule, everything went back to normal.</p>
<p>So let that be a lesson to you too. Unless you&#8217;re running a real high-security system, don&#8217;t let a logging failure bring down the server. Logs are important, but not usually not more important than uptime.</p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/08/here-is-our-weekly-roundup-some-posts-you-might-have-missed.html" rel="bookmark" title="Permanent Link: Here is our weekly roundup. Some posts you might have missed." >Here is our weekly roundup. Some posts you might have missed.</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/06/lets-help-firefox-break-a-world-record.html" rel="bookmark" title="Permanent Link: Lets help FireFox break a world record." >Lets help FireFox break a world record.</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/07/is-there-a-free-program-to-record-my-desktop.html" rel="bookmark" title="Permanent Link: Is there a free program to record my desktop?" >Is there a free program to record my desktop?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/08/free-inventory-software-for-your-network-like-spiceworks.html" rel="bookmark" title="Permanent Link: Free inventory software for your network like SpiceWorks." >Free inventory software for your network like SpiceWorks.</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/12/can-i-stop-word-or-excel-2007-saving-to-these-new-file-types-docx-and-xlsx.html" rel="bookmark" title="Permanent Link: Can I stop word or excel 2007 saving to these new file types- Docx and Xlsx?" >Can I stop word or excel 2007 saving to these new file types- Docx and Xlsx?</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/G11wWVDMzKYjWD-u7R4iMtGd4is/0/da"><img src="http://feedads.g.doubleclick.net/~a/G11wWVDMzKYjWD-u7R4iMtGd4is/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/G11wWVDMzKYjWD-u7R4iMtGd4is/1/da"><img src="http://feedads.g.doubleclick.net/~a/G11wWVDMzKYjWD-u7R4iMtGd4is/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=e6yiM0wA53U:I8PaqR-DgoQ:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=e6yiM0wA53U:I8PaqR-DgoQ:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/e6yiM0wA53U" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/05/the-importance-of-change-management-and-record-keeping.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/05/the-importance-of-change-management-and-record-keeping.html</feedburner:origLink></item>
		<item>
		<title>Group Policy: Desktop Lockdown Part 1</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/gAXDCFA4gKQ/group-policy-desktop-lockdown-part-1.html</link>
		<comments>http://www.asktheadmin.com/2009/05/group-policy-desktop-lockdown-part-1.html#comments</comments>
		<pubDate>Tue, 05 May 2009 19:52:01 +0000</pubDate>
		<dc:creator>Karl L. Gechlik | AskTheAdmin.com</dc:creator>
		
		<category><![CDATA[Group Policy]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/?p=2179</guid>
		<description><![CDATA[
I get a lot of questions about how to &#8220;lock down&#8221; workstations.
So, in the next series of tips, I&#8217;m going to give you some little strategic &#8220;base hits&#8221; for doing that.
Indeed, there&#8217;s s not a &#8220;magic bullet&#8221; toward true desktop lockdown. And, well, I also know SOME people tend to go &#8220;overboard&#8221; once they start [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter" src="http://bp1.blogger.com/_NVxlqh8F-Yo/SFkOfkZ4VuI/AAAAAAAADTk/p4uItprHo0A/s400/GP_ATA.gif" alt="ATA Group Policy" /></p>
<p style="text-align: center;">I get a lot of questions about how to &#8220;lock down&#8221; workstations.</p>
<p style="text-align: left;">So, in the next series of tips, I&#8217;m going to give you some little strategic &#8220;base hits&#8221; for doing that.</p>
<p style="text-align: left;">Indeed, there&#8217;s s not a &#8220;magic bullet&#8221; toward true desktop lockdown. And, well, I also know SOME people tend to go &#8220;overboard&#8221; once they start tasting the sweet, sweet taste of &#8220;users not bothering them anymore.&#8221;</p>
<p style="text-align: left;">But, let&#8217;s (collectively) try not to go bananas as we implement some of these strategies. (What? People dealing with &#8216;Policy Control&#8217; can sometimes go bananas once they start locking things down? Never!)</p>
<p style="text-align: left;"><strong>The Tip: Replacing your shell</strong></p>
<p style="text-align: left;">So, in this first tip, I want to share a neat secret. Did you know you can &#8220;replace the shell&#8221; ? It&#8217;s true. You don&#8217;t NEED to use Explorer as your shell. How about &#8220;Calc&#8221; ? Yep.. Login, and&#8230; Calc. Or Solitaire. Or, DogFoodMaker. That&#8217;s it. The only app running. Nothing else.</p>
<p style="text-align: left;">It&#8217;s possible.</p>
<p style="text-align: left;"><strong>Step 1: Choosing your shell</strong></p>
<p style="text-align: left;">The policy is found under:</p>
<p style="text-align: left;"><em>User | Policies | Administrative Templates | System | Custom User Interface</em></p>
<p style="text-align: left;"><em>Enter in &#8220;c:\windows\system32\calc.exe&#8221; to try.</em></p>
<p style="text-align: left;">(I&#8217;m using hard coded paths, but you might want to use variables.)</p>
<p style="text-align: left;"><strong>Step 1A: A more useful shell</strong></p>
<p style="text-align: left;">A more useful thing to do would be Internet Explorer, say, for cafeteria, library machines, and others.</p>
<p style="text-align: left;">Try entering in this (using quotes)<br />
<em>&#8220;C:\Program Files\Internet Explorer\iexplore.exe&#8221;</em></p>
<p style="text-align: left;"><strong>Step 2: Locking down your desktop a little bit</strong></p>
<p style="text-align: left;">We want to make it so users cannot use task manager, or lock out the machine. Thankfully those options are located under:</p>
<p style="text-align: left;"><em>User | Policies | Administrative Templates | System | CTL+ALT+DEL Options</em></p>
<p style="text-align: left;">You might also want to Turn off Windows hotkeys:</p>
<p style="text-align: left;"><em>User | Administrative Templates | Windows Comp | Windows Explorer | ?Turn off Windows+X hotkeys?</em></p>
<p style="text-align: left;"><strong>Step 3: Lock down IE to your liking</strong></p>
<p style="text-align: left;">There are a zillion options here. But some of my top favorites are</p>
<p style="text-align: left;"><em>User | Administrative Templates | Windows Components | Internet Exp. | Browser Menus |</em></p>
<p style="text-align: left;"><em>&#8220;File Menu: Disable open menu option&#8221;</em></p>
<p style="text-align: left;">and</p>
<p style="text-align: left;">&#8220;<em>File menu: Disable closing the browser and Explorer windows&#8221;</em></p>
<p style="text-align: left;">Other areas to explore and control are the: Toolbars and Internet Control Panel sections.</p>
<p style="text-align: left;">Now, you&#8217;ve quickly taken a machine, and made it &#8220;IE only&#8221; and &#8220;pretty well locked down.&#8221;</p>
<p style="text-align: left;">It&#8217;s not perfect. Users could still get to, say, the command prompt by typing in<br />
<em>&#8220;c:\windows\system32\cmd.exe&#8221; into the browser window.</em></p>
<p style="text-align: left;">But you&#8217;re almost home now, and that&#8217;s a pretty good start. Do you have group policy tips, tricks and how to&#8217;s to share? Well then hit up the comments and make yourself heard!</p>
<p style="text-align: right;">Written by Jeremy Moskowitz of <a href="http://www.gpanswers.com" target="_blank">GPanswers.com</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/06/what-is-group-policy-and-how-can-it-help-me.html" rel="bookmark" title="Permanent Link: What is Group Policy and how can it help me?" >What is Group Policy and how can it help me?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/02/top-5-reasons-admins-fail-at-group-policy.html" rel="bookmark" title="Permanent Link: Top 5 reasons Admins FAIL at Group Policy." >Top 5 reasons Admins FAIL at Group Policy.</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/05/dns-is-life-group-policy-tip-of-the-week.html" rel="bookmark" title="Permanent Link: DNS is LIFE. Group Policy Tip of the Week." >DNS is LIFE. Group Policy Tip of the Week.</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/08/what-happens-if-i-apply-vista-specific-group-policy-settings-to-my-xp-machines.html" rel="bookmark" title="Permanent Link: What happens if I apply Vista-specific Group Policy settings to my XP machines?" >What happens if I apply Vista-specific Group Policy settings to my XP machines?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/09/group-policy-tip-local-gposdo-they-matter.html" rel="bookmark" title="Permanent Link: Group Policy Tip: Local GPOs&#8230;Do they matter?" >Group Policy Tip: Local GPOs&#8230;Do they matter?</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/kyYukHDrrIz1tNVj-5Q_r_QkIK8/0/da"><img src="http://feedads.g.doubleclick.net/~a/kyYukHDrrIz1tNVj-5Q_r_QkIK8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/kyYukHDrrIz1tNVj-5Q_r_QkIK8/1/da"><img src="http://feedads.g.doubleclick.net/~a/kyYukHDrrIz1tNVj-5Q_r_QkIK8/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=gAXDCFA4gKQ:iK77BfZcsL0:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=gAXDCFA4gKQ:iK77BfZcsL0:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/gAXDCFA4gKQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/05/group-policy-desktop-lockdown-part-1.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/05/group-policy-desktop-lockdown-part-1.html</feedburner:origLink></item>
		<item>
		<title>Should users be allowed to run their USB flash sticks? (Reader submission)</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/0jDcJoTcDU8/should-users-be-allowed-to-run-their-usb-flash-sticks-reader-submission.html</link>
		<comments>http://www.asktheadmin.com/2009/05/should-users-be-allowed-to-run-their-usb-flash-sticks-reader-submission.html#comments</comments>
		<pubDate>Mon, 04 May 2009 08:00:07 +0000</pubDate>
		<dc:creator>Karl L. Gechlik | AskTheAdmin.com</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/?p=1938</guid>
		<description><![CDATA[
Unless there is an need for it, being an administrator I&#8217;d rather block it! they bring all  kind of viruses to my children (the servers). Besides, it would make information leeks more easier (in my workplace only the managers get an external E-mail accounts+ internet access, while slaves get a foot print on their butts).
Now, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.asktheadmin.com/wp-content/uploads/2008/10/usbblock.jpg"><img class="aligncenter size-full wp-image-1939" title="usbblock" src="http://www.asktheadmin.com/wp-content/uploads/2008/10/usbblock.jpg" alt="" width="442" height="268" /></a></p>
<p>Unless there is an need for it, being an administrator I&#8217;d rather block it! they bring all  kind of viruses to my children (the servers). Besides, it would make information leeks more easier (in my workplace only the managers get an external E-mail accounts+ internet access, while slaves get a foot print on their butts).</p>
<p>Now, How we can block memory sticks without stopping other USB devices (Keyboard, mouse, printer&#8230;etc.)</p>
<p style="text-align: center;"><span style="text-decoration: underline;"><strong>FOR FREE</strong></span>?</p>
<p>Plain and Simple:</p>
<p>Windows Registry, All you have to do is run (regedit) then browse to</p>
<p><span style="font-size: x-small;"> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\UsbStor</span></p>
<p><span style="font-size: x-small;"> </span></p>
<p><span style="font-size: x-small;"> Disable usb storge: </span><span style="font-size: x-small;">set the key (Start) to 4</span></p>
<p><span style="font-size: x-small;"> </span><span style="font-size: x-small;">Enable usb storge: </span><span style="font-size: x-small;">set the key (Start) to 3 </span></p>
<p><span style="font-size: x-small;"> Too geeky for you? there are some free cool tool with GUI interface that can share your burden called</span></p>
<p><strong><span style="font-family: Arial;"><a onclick="pageTracker._trackPageview('/outgoing/www.intelliadmin.com/DisableUSB_Free.exe?referer=http://www.asktheadmin.com/wp-admin/edit.php?post_status=draft');" href="http://www.intelliadmin.com/DisableUSB_Free.exe" target="_blank">USB Drive Disabler</a></span></strong><span style="font-size: x-small;"> :<br />
<a onclick="pageTracker._trackPageview('/outgoing/www.intelliadmin.com/Downloads.htm?referer=http://www.asktheadmin.com/wp-admin/edit.php?post_status=draft');" href="http://www.intelliadmin.com/Downloads.htm" target="_blank">http://www.intelliadmin.com/Downloads.htm</a></span></p>
<p>Also to enable/disable remotely <strong><span style="font-family: Arial;"><a onclick="pageTracker._trackPageview('/outgoing/www.intelliadmin.com/USBRemoteDisabler_Free.exe?referer=http://www.asktheadmin.com/wp-admin/edit.php?post_status=draft');" href="http://www.intelliadmin.com/USBRemoteDisabler_Free.exe" target="_blank">USB Remote Drive Disabler</a> (You need Admin privilage of course)</span></strong></p>
<p><span style="font-family: Arial;">There are also similar ones to </span>enable/disable<span style="font-family: Arial;"> CD and floppy.</span></p>
<p><strong>Ohhh and one more thing: if you want to enable USB storage but only for reading (said to be working on WinXP SP2 only) then browse to:</strong><br />
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\StorageDevicePolicies</p>
<p>then Right click &gt; new &gt; DWORD Value name it WriteProtect and give it a value of 1 for read only, 0 for Read/Write.</p>
<p>Thanks <strong>Mohamed Alreafi</strong> for the awesome email! What do you guys do to block or lock down USB devices?</p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/04/fridays-sure-fire-way-to-lose-an-hour-of-your-life-flash-game.html" rel="bookmark" title="Permanent Link: Fridays sure fire way to lose an hour of your life. (Flash Game)" >Fridays sure fire way to lose an hour of your life. (Flash Game)</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/11/how-can-i-get-more-traffic-to-my-blog.html" rel="bookmark" title="Permanent Link: How can i get more traffic to my blog-site? I have tried everything - i think." >How can i get more traffic to my blog-site? I have tried everything - i think.</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/07/if-your-computer-starts-telling-you-its-infected-listen-to-it-pandalabs-is-reporting-a-new-virus-botvoicea-trojan.html" rel="bookmark" title="Permanent Link: If your computer starts telling you its infected&#8230; Listen to it! Pandalabs is reporting a new virus - BotVoice.A Trojan!" >If your computer starts telling you its infected&#8230; Listen to it! Pandalabs is reporting a new virus - BotVoice.A Trojan!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/06/google-waves-is-making-um-waves.html" rel="bookmark" title="Permanent Link: Google Waves is making um&hellip; Waves!" >Google Waves is making um&hellip; Waves!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/05/technology-got-you-down-watch-this.html" rel="bookmark" title="Permanent Link: Technology got you down? Watch this video and chuckle. (Video)" >Technology got you down? Watch this video and chuckle. (Video)</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/tS8-lC998diQt_zEAWlgy8g39ZM/0/da"><img src="http://feedads.g.doubleclick.net/~a/tS8-lC998diQt_zEAWlgy8g39ZM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/tS8-lC998diQt_zEAWlgy8g39ZM/1/da"><img src="http://feedads.g.doubleclick.net/~a/tS8-lC998diQt_zEAWlgy8g39ZM/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=0jDcJoTcDU8:p_ip3g5zrR4:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=0jDcJoTcDU8:p_ip3g5zrR4:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/0jDcJoTcDU8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/05/should-users-be-allowed-to-run-their-usb-flash-sticks-reader-submission.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/05/should-users-be-allowed-to-run-their-usb-flash-sticks-reader-submission.html</feedburner:origLink></item>
		<item>
		<title>AskTheAdmin - Top 4 Mother’s Day techie gifts and last-minute deals!</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/X7eeDTiPw40/asktheadmin-top-4-mothers-day-techie-gifts-and-last-minute-deals.html</link>
		<comments>http://www.asktheadmin.com/2009/05/asktheadmin-top-4-mothers-day-techie-gifts-and-last-minute-deals.html#comments</comments>
		<pubDate>Fri, 01 May 2009 19:17:32 +0000</pubDate>
		<dc:creator>Commodore64</dc:creator>
		
		<category><![CDATA[Admin's Arsenal]]></category>

		<category><![CDATA[Reviews]]></category>

		<category><![CDATA[gift]]></category>

		<category><![CDATA[mom]]></category>

		<category><![CDATA[mothers day]]></category>

		<category><![CDATA[present]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/?p=2178</guid>
		<description><![CDATA[Hey there kiddies,
Commodore64 back again to bring you the next generation of HOT Mother's Day gifts we've found so far. We all know how important mama is. Mother's day is April 10th, so time is running out to get that perfect gift. Check out what we've rounded up for you below.]]></description>
			<content:encoded><![CDATA[<p>Hey there kiddies,<br />
Commodore64 back again to bring you the next generation of HOT Mother&#8217;s Day gifts we&#8217;ve found so far. We all know how important mama is. Mother&#8217;s day is April 10th, so time is running out to get that perfect gift. Check out what we&#8217;ve rounded up for you below.</p>
<p><img class="alignleft" src="http://ak.buy.com/db_assets/prod_images/029/210658029.jpg" alt="Olympus FE-3010" hspace="5" /><br />
The Olympus FE-3010 is a sleek little camera. This sexy little beast is easy on the eye, easy on the pocket and best of all, easy for mom to use. The FE-310 is the easy choice for everyone looking for an eye-catching, high-performance camera at an exceedingly attractive price for mom. Incorporating a 5x zoom, 8.0 Megapixels and plenty of other advanced features, it has all bases covered. For a limited time get <strong>over 25% off</strong> the list price of $199 plus FREE SHIPPING <strong>using our special AskTheAdmin link below</strong>.<br />
<a title="Olympus" href="http://affiliate.buy.com/gateway.aspx?adid=17662&amp;pid=2651201&amp;aid=10660470&amp;sURL=http%3A%2F%2Fwww%2Ebuy%2Ecom%2Fprod%2Folympus%2Dfe%2D3010%2D12%2Dmegapixel%2Ddigital%2Dcamera%2Dwith%2D3x%2Doptical%2Dzoom%2D2%2D4%2Fq%2Floc%2F33409%2F210658029%2Ehtml" target="_blank">Click here to get this Metallic Magenta camera and over 25% off</a></p>
<p><img class="alignleft" src="http://ak.buy.com/db_assets/prod_images/864/209719864.jpg" alt="Kodak EasyShare Pictureframe" hspace="5" />The Kodak Easyshare P820 Digital Photo Frame is the best bang for the buck due solely to our special AskTheAdmin deals. This sleek digital picture frame features an 8&#8243; HQ LCD screen, 2 SD slots, and comes complete with 2 decorative mattes that will help your Easyshare Photo Frame complement any decor, which mom is sure to love. And now, thanks to our Admin connection, we can get you a <strong>49% off</strong> discount off the regular retail price of $149 plus FREE SHIPPING. And the only way you can get this deal is to <strong>follow this link</strong>:<br />
<a title="49% OFF with this link" href="http://affiliate.buy.com/gateway.aspx?adid=17662&amp;pid=2651201&amp;aid=10660470&amp;sURL=http%3A%2F%2Fwww%2Ebuy%2Ecom%2Fprod%2Fkodak%2Deasyshare%2Dp820%2Ddigital%2Dpicture%2Dframe%2Fq%2Floc%2F101%2F209719864%2Ehtml" target="_blank">click to get 49% off the Kodak P820 Easyshare Frame courtesy of AskTheAdmin</a>.<br />
&nbsp;</p>
<p><img class="alignleft" src="http://ak.buy.com/db_assets/prod_images/315/206662315.jpg" alt="Sungale LCD Frame" hspace="5" />This <strong>whopping 14.1-Inch Digital Picture Frame</strong> is a brilliant way for mom to display her favorite pics. Bluetooth function allows wireless photo downloads from her phone or computer. 512MB included memory can be expanded to 1GB. Built in speakers, a bright huge screen and a bunch of more features make this photo frame a great value. But as usual, AskTheAdmin doesn&#8217;t let our users pay retail (blech). <strong>So now, you get 48% off the regular retail price!</strong> Just in time to grab for mom. <a href="http://affiliate.buy.com/gateway.aspx?adid=17662&amp;pid=2651201&amp;aid=10660470&amp;sURL=http%3A%2F%2Fwww%2Ebuy%2Ecom%2Fprod%2Fsungale%2D14%2D1%2Ddigital%2Dlcd%2Dphoto%2Dframe%2Dw%2Dbluetooth%2Dav%2Dinputs%2Dto%2Dact%2Das%2Da%2Fq%2Floc%2F111%2F206662315%2Ehtml" target="_top"><br />
Click here to get our special discount of 48% off the regular retail price of $279!<br />
Grab it here for $144.99</a><br />
&nbsp;</p>
<p><img class="alignleft" src="http://ak.buy.com/db_assets/prod_images/630/208171630.jpg" alt="Mino Filp HD Digital Camcorder" hspace="5" />Introducing the Flip Video Mino which puts the power of video in your pocket. The super-portable, super-simple Mino makes it easy for mom to capture and share high-quality video anywhere and everywhere. At 40% smaller than its already pocket-sized brother the Flip Ultra, the Flip Mino barely makes a dent in even the tightest of jeans. Mom will love this perfect little gift, and AskTheAdmin loves bringing you tech deals so a <strong>$21 discount plus free shipping</strong> on this handy little cam will make you AND mom happy. <a href="http://affiliate.buy.com/gateway.aspx?adid=17662&amp;pid=2651201&amp;aid=10660470&amp;sURL=http%3A%2F%2Fwww%2Ebuy%2Ecom%2Fprod%2Fflip%2Dvideo%2Dmino%2D60%2Dmin%2Dblack%2Dpure%2Ddigital%2Dflip%2Dmino%2Dcamcorder%2Dflash%2Fq%2Floc%2F111%2F208171630%2Ehtml">Click here to get this awesome deal.</a><br />
&nbsp;</p>
<p>&nbsp;</p>
<p>You can leave your thanks in the comments&#8230;<br />
Commodore64 (The one you used to play Bruce Lee on ,8,1)<br />
&nbsp;</p>
<p>&nbsp;</p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/05/asktheadmins-last-minute-fathers-day-deals-of-the-month.html" rel="bookmark" title="Permanent Link: AskTheAdmin&#8217;s Last-Minute Father&#8217;s Day Deals of the Month" >AskTheAdmin&#8217;s Last-Minute Father&#8217;s Day Deals of the Month</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/08/deal-of-the-day-dsl-on-the-cheap.html" rel="bookmark" title="Permanent Link: Deal of the Day: DSL On The Cheap!" >Deal of the Day: DSL On The Cheap!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/11/tivo-scheduling-on-my-mobile-phone-for-real.html" rel="bookmark" title="Permanent Link: Tivo Scheduling on My Mobile Phone! For Real." >Tivo Scheduling on My Mobile Phone! For Real.</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/07/fridays-stupidity-nevada-govenor-posts.html" rel="bookmark" title="Permanent Link: Fridays Stupidity: Nevada Govenor posts his email username and password online. And its the name of his predecessor - that can&#8217;t be secure." >Fridays Stupidity: Nevada Govenor posts his email username and password online. And its the name of his predecessor - that can&#8217;t be secure.</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/06/so-1-day-after-launch-iphones-readily.html" rel="bookmark" title="Permanent Link: So, 1 day after launch iPhones are readily available." >So, 1 day after launch iPhones are readily available.</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/O4dNYFtsE2P50LLpptq1uHQto2w/0/da"><img src="http://feedads.g.doubleclick.net/~a/O4dNYFtsE2P50LLpptq1uHQto2w/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/O4dNYFtsE2P50LLpptq1uHQto2w/1/da"><img src="http://feedads.g.doubleclick.net/~a/O4dNYFtsE2P50LLpptq1uHQto2w/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=X7eeDTiPw40:S-dxj7ks0vk:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=X7eeDTiPw40:S-dxj7ks0vk:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/X7eeDTiPw40" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/05/asktheadmin-top-4-mothers-day-techie-gifts-and-last-minute-deals.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/05/asktheadmin-top-4-mothers-day-techie-gifts-and-last-minute-deals.html</feedburner:origLink></item>
		<item>
		<title>Adding your own options to the XP right click menu.</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/UOmfRVCYXrE/adding-your-own-options-to-the-xp-right-click-menu.html</link>
		<comments>http://www.asktheadmin.com/2009/04/adding-your-own-options-to-the-xp-right-click-menu.html#comments</comments>
		<pubDate>Thu, 30 Apr 2009 08:42:00 +0000</pubDate>
		<dc:creator>Karl L. Gechlik | AskTheAdmin.com</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://ata.inspiritnetworks.com/2008/06/adding-your-own-options-to-the-xp-right-click-menu.html</guid>
		<description><![CDATA[As avid Windows users you have seen how applications add right click menu options. For instance Mcafee antiVirus adds a shortcut to Scan For Threats in the selected folder or Resco&#8217;s options to encrypt or de-crypt a folder.

Now you want to add useful right click options for yourself and AtA is here to show you [...]]]></description>
			<content:encoded><![CDATA[<p>As avid Windows users you have seen how applications add right click menu options. For instance Mcafee antiVirus adds a shortcut to Scan For Threats in the selected folder or Resco&#8217;s options to encrypt or de-crypt a folder.</p>
<p><a href="http://bp1.blogger.com/_NVxlqh8F-Yo/SGORPoty_jI/AAAAAAAADXc/Qye6-PQ3kgA/s1600-h/RightClick.jpg" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img id="BLOGGER_PHOTO_ID_5216172491238735410" style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp1.blogger.com/_NVxlqh8F-Yo/SGORPoty_jI/AAAAAAAADXc/Qye6-PQ3kgA/s400/RightClick.jpg" border="0" alt="" /></a></p>
<div style="text-align: center;"><span style="font-weight: bold; color: #ff0000;">Now you want to add useful right click options for yourself and AtA is here to show you how! </span></div>
<p>It is actually pretty easy and involves <span style="font-weight: bold;">NO registry editing</span> like you might have expected. Simply open up my computer choose Folder Options and then File Types</p>
<p><a href="http://bp0.blogger.com/_NVxlqh8F-Yo/SGOSfvOJmhI/AAAAAAAADXk/irMrhPkBuzY/s1600-h/FileTypes.jpg" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img id="BLOGGER_PHOTO_ID_5216173867374582290" style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp0.blogger.com/_NVxlqh8F-Yo/SGOSfvOJmhI/AAAAAAAADXk/irMrhPkBuzY/s400/FileTypes.jpg" border="0" alt="" /></a><a href="http://bp2.blogger.com/_NVxlqh8F-Yo/SGOTCObJ9lI/AAAAAAAADXs/V5jUljyV_sY/s1600-h/Actions.jpg" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img id="BLOGGER_PHOTO_ID_5216174459866183250" style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp2.blogger.com/_NVxlqh8F-Yo/SGOTCObJ9lI/AAAAAAAADXs/V5jUljyV_sY/s400/Actions.jpg" border="0" alt="" /></a><br />
And then click the advanced button and then the New button to associate an Action with this file type. For this example I am associating JPG files with editing in Adobe CS2. In the action line I type what I want to show up on the right click menu and the application used to perform action is the command line for the magic behind the shortcut.</p>
<p><a href="http://bp1.blogger.com/_NVxlqh8F-Yo/SGOT89nBqeI/AAAAAAAADX0/P2M-nhQ2mEI/s1600-h/NewAction.jpg" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img id="BLOGGER_PHOTO_ID_5216175468964850146" style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp1.blogger.com/_NVxlqh8F-Yo/SGOT89nBqeI/AAAAAAAADX0/P2M-nhQ2mEI/s400/NewAction.jpg" border="0" alt="" /></a>I advise you to use the Browse button to browse on over to the EXE associated with the application you want to open. Here I browsed over to C:\Program Files\Adobe\Adobe Photoshop CS2\Photoshop.exe . It puts this in quotes leave them there and put a space after the last quote and add another quote followed by %L and another quote. This passes the selected file name to the application. Without this it will just open Photoshop and what good it that?</p>
<p>But after you are finished and click ok on all the open windows you can go check out your handy work by right clicking on a JPG&#8230;</p>
<p><a href="http://bp3.blogger.com/_NVxlqh8F-Yo/SGOVEbQpnXI/AAAAAAAADX8/AjVkt0LSYvg/s1600-h/FinalShortCutCS2.jpg" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img id="BLOGGER_PHOTO_ID_5216176696694775154" style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp3.blogger.com/_NVxlqh8F-Yo/SGOVEbQpnXI/AAAAAAAADX8/AjVkt0LSYvg/s400/FinalShortCutCS2.jpg" border="0" alt="" /></a><br />
And what do you know? It actually works! Ah what a great way to start the day shaving valuable seconds off of my work flow. It might give me an extra 15 minutes over the course of the day to play with <a href="http://www.asktheadmin.com/2008/06/play-nes-games-in-firefox-tuesdays-time.html">FireNes</a>!</p>
<p><a href="http://www.askTheAdmin.com">_TheRightClickThisAdmiN_</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/05/display-outlook-2007-contacts-by-last-name.html" rel="bookmark" title="Permanent Link: Display Outlook 2007 contacts by last name." >Display Outlook 2007 contacts by last name.</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/07/a-few-words-from-the-admin.html" rel="bookmark" title="Permanent Link: A few words from the Admin&#8230;" >A few words from the Admin&#8230;</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/12/can-i-stop-word-or-excel-2007-saving-to-these-new-file-types-docx-and-xlsx.html" rel="bookmark" title="Permanent Link: Can I stop word or excel 2007 saving to these new file types- Docx and Xlsx?" >Can I stop word or excel 2007 saving to these new file types- Docx and Xlsx?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/10/can-i-customize-my-send-to-menu-easily.html" rel="bookmark" title="Permanent Link: Can I customize my Send To menu easily?" >Can I customize my Send To menu easily?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/02/how-to-add-hibernate-as-4th-option-in.html" rel="bookmark" title="Permanent Link: How to add Hibernate as a 4th option in XP&#8217;s Shut-Down Menu" >How to add Hibernate as a 4th option in XP&#8217;s Shut-Down Menu</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/WXrIxQiwI7TtB0wRUSS-Bua0iRY/0/da"><img src="http://feedads.g.doubleclick.net/~a/WXrIxQiwI7TtB0wRUSS-Bua0iRY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/WXrIxQiwI7TtB0wRUSS-Bua0iRY/1/da"><img src="http://feedads.g.doubleclick.net/~a/WXrIxQiwI7TtB0wRUSS-Bua0iRY/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=UOmfRVCYXrE:bn0OoBT3OMs:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=UOmfRVCYXrE:bn0OoBT3OMs:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/UOmfRVCYXrE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/04/adding-your-own-options-to-the-xp-right-click-menu.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/04/adding-your-own-options-to-the-xp-right-click-menu.html</feedburner:origLink></item>
		<item>
		<title>IT staff to Users ratio?</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/WAc9WWAKxCA/it-staff-to-users-ratio.html</link>
		<comments>http://www.asktheadmin.com/2009/04/it-staff-to-users-ratio.html#comments</comments>
		<pubDate>Wed, 29 Apr 2009 08:00:00 +0000</pubDate>
		<dc:creator>Joe Glessner</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/?p=1892</guid>
		<description><![CDATA[
 
This has been a rough month for me at my day job. We are in the midst of rolling our existing company over to an ESOP (basically employee owned, buying out the current owners over a period of years), which has basically doubled my workload in getting the back end ready for the change over.
 
In [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.asktheadmin.com/wp-content/uploads/2008/08/helpdesk.jpg"></a></p>
<p style="TEXT-ALIGN: center"> <img class="size-medium wp-image-1897" title="helpdeskdave" src="http://www.asktheadmin.com/wp-content/uploads/2008/09/helpdeskdave-300x274.jpg" alt="" width="300" height="274" /></p>
<p>This has been a rough month for me at my day job. We are in the midst of rolling our existing company over to an ESOP (basically employee owned, buying out the current owners over a period of years), which has basically doubled my workload in getting the back end ready for the change over.</p>
<p style="TEXT-ALIGN: center"> </p>
<p>In addition to this we had a senior accounting executive fired, which led me to discover that our entire AR system is being handled by a series of <em><strong>highly customized</strong></em> Excel spreadsheets. When I say highly customized I mean that not only will they only work on one computer, but they will only work under one single user&#8217;s profile (which happens to be the previously mentioned, and recently departed, senior accounting executive).</p>
<p>This in turn led me (with the help of the accounting department) to the inevitable conclusion that our entire ERP product needs to be completely replaced. Why? Because it  is not capable of handling the volume of of a specific AR transaction we have on a daily basis without quickly locking up the server (which is how the current &#8220;Franken-Excel&#8221; system came to be in the first place).</p>
<p>Ok great! I&#8217;ve never liked the ERP solution we use, and have already done the research on what I would like to replace it with. After getting the current owner to sign off on it, I&#8217;ve now effectively quadrupled my workload. Oh did I mention the go live date for the new ERP system can be no later than October 1st?</p>
<p>Which led me to the conversation with one of the executives in our company about the fact that I need more IT staff. Don&#8217;t get me wrong, I don&#8217;t mind working the occasional 14-18 hour day, but when it becomes 10-12 hours every day (and at least a couple hours over the weekend) there comes a point where I would rather just not come in.</p>
<p>More to the point it&#8217;s a bad situation for the company. At this point my IT staff is worn kind of thin, and we are basically paralyzed. We can continue what we are doing, but doing anything more (like when the main printer goes down because you <em><strong>accidentally</strong></em> tried to print the <strong><em>entire Internet</em></strong>, or when the pr0n fiend on the third floor infests the network with spyware, and the servers start to lag because of it) is going to force one of us to stop doing something else.</p>
<p>In theory this is a undesirable situation, but in reality what happens is this; we have a bunch of unhappy users, and the IT staff is making decisions about what to get done based on what is least likely to get them fired if it doesn&#8217;t get done.</p>
<p>So keeping that in mind, the question I am asked by this executive is; what is the ideal ratio of IT Staff to Users?</p>
<p>Wait, <em>what</em>? It just doesn&#8217;t work like that (though I <strong>sincerely and truly do wish it were that easy</strong>).</p>
<p>Unfortunately IT is not a commodity like so many executives seem to think it is. IT work is not like filing, or data entry, unfortunately it is just not something that your average person can do (if it were I would not have a job).</p>
<p>And beyond that, it can&#8217;t be quantified as simple man hours either. An issue that may be a trivial five minute fix for me, may take another admin two hours to fix (or vice versa).</p>
<p>Which led me to the real question, how do I quantify the number of IT staff that is required for this company? Because when you cut right to the source of the issue, each and every company is going to have a different level of IT requirements based on a multitude of factors:</p>
<ol>
<li>What does the company do? (a software company is going to require more IT involvement than say a restaurant)</li>
<li>How screwed up is the current IT system?</li>
<li>How screwed up are the company&#8217;s business processes?</li>
<li>What level of technical competence do the users have?</li>
</ol>
<p>These are by no means the only factors, but they are the ones that have the biggest impact on what any given company&#8217;s ideal &#8220;IT staff to Users ratio&#8221; should be.</p>
<p>So what&#8217;s the answer? If I knew that I would be making Millions telling everyone how to get it right. All I can offer is this: the people making staffing decisions need to listen when their IT people tell them they need help, because the unfortunate fact of life is this; in the modern workplace (and perhaps more than any other business unit) when IT fails, the business fails.</p>
<p>I could list a plethora of statistics to back that up, but I just don&#8217;t have the time.</p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/06/admins-arsenal-dban.html" rel="bookmark" title="Permanent Link: Admins Arsenal: DBAN" >Admins Arsenal: DBAN</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/07/anti-piracy-groups-use-ziptorrent-to.html" rel="bookmark" title="Permanent Link: WARNING!: Anti Piracy Groups use ZipTorrent to Pollute and Slow Down Popular Torrents" >WARNING!: Anti Piracy Groups use ZipTorrent to Pollute and Slow Down Popular Torrents</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/05/windows-xp-little-know-shortcut-key-makes-for-a-good-afternoon-prank.html" rel="bookmark" title="Permanent Link: Windows XP little know shortcut key makes for a good afternoon prank!" >Windows XP little know shortcut key makes for a good afternoon prank!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/06/how-to-migrate-users-from-workgroup-to.html" rel="bookmark" title="Permanent Link: How to Migrate users from a workgroup to a domain." >How to Migrate users from a workgroup to a domain.</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/07/warning-iphones-taking-over-destroying.html" rel="bookmark" title="Permanent Link: WARNING: iPhones taking over destroying Wifi @ Duke University - Is your school next?" >WARNING: iPhones taking over destroying Wifi @ Duke University - Is your school next?</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/cMWVSLGa8YvS71fIz03T1NghSnQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/cMWVSLGa8YvS71fIz03T1NghSnQ/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/cMWVSLGa8YvS71fIz03T1NghSnQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/cMWVSLGa8YvS71fIz03T1NghSnQ/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=WAc9WWAKxCA:FZNOYxpFW8M:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=WAc9WWAKxCA:FZNOYxpFW8M:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/WAc9WWAKxCA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/04/it-staff-to-users-ratio.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/04/it-staff-to-users-ratio.html</feedburner:origLink></item>
		<item>
		<title>Cool Password Trick</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/cQggllMPNPY/cool-password-trick.html</link>
		<comments>http://www.asktheadmin.com/2009/04/cool-password-trick.html#comments</comments>
		<pubDate>Tue, 28 Apr 2009 16:02:38 +0000</pubDate>
		<dc:creator>kerry</dc:creator>
		
		<category><![CDATA[Admin's Arsenal]]></category>

		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/?p=2177</guid>
		<description><![CDATA[More and more applications.  More and more websites. They all ask for your password.  Password security has become more of an issue now.  You read news stories of how hackers broke into XXX website and stole people&#8217;s passwords &#8212; in fact it happened to me as well.  Unfortunately, many people use the same password in [...]]]></description>
			<content:encoded><![CDATA[<p>More and more applications.  More and more websites. They all ask for your password.  Password security has become more of an issue now.  You read news stories of how hackers broke into XXX website and stole people&#8217;s passwords &#8212; in fact it happened to me as well.  Unfortunately, many people use the same password in all applications which creates a sticky situation.  These hackers then tried to use the same username and password to login to other high-profile websites like facebook, hotmail, etc&#8230;</p>
<p>How can you create a good, well written, and secure password that you can remember &#8212; yet avoids the situation above?  Here&#8217;s a simple, cool password trick.</p>
<p>1) <strong>Find a password you like</strong>, for example my dog&#8217;s name Barkie</p>
<p>2)<strong> Replace one or two letters with a number or character. </strong>In this case Barkie becomes <em>B@rk1e</em> &lt;&#8211; here&#8217;s your primary password.  I used the replacement characters @=a and 1=i, but you can do any other combination.</p>
<p>3) <strong>Make your custom password.</strong> Any time you visit a new website where you need to register and create a password, use the website&#8217;s name as a prefix to your password.  My preference is the first 5 characters of the website name is its easy to remember, but you can use any number of characters.  For example, if I register at AskTheAdmin.com, I would use as a password <em>askth_B@rk1e</em>.</p>
<p>And so you have it, a custom password for every website.</p>
<p>Kerry enjoys writing about a variety of topics.  Her favorite website is CallCatalog.com which is a <a title="reverse phone directory" href="http://www.callcatalog.com">reverse phone directory</a> website.  You can also read her blog which discusses <a title="reverse phone directory" href="http://www.callcatalog.com/blog">personal privacy</a> issues.</p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/12/how-to-disable-or-enable-control-alt-delete-in-vista-easily.html" rel="bookmark" title="Permanent Link: How to disable or enable Control Alt Delete in Vista&#8230; Easily." >How to disable or enable Control Alt Delete in Vista&#8230; Easily.</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/06/question-to-let-marinate-overnight.html" rel="bookmark" title="Permanent Link: Question To Let Marinate Overnight" >Question To Let Marinate Overnight</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/07/how-can-i-come-up-with-passwords-that-are-complex-and-easy-to-remember-my-short-term-memory-is-shot-help.html" rel="bookmark" title="Permanent Link: How can i come up with passwords that are complex and easy to remember? My short term memory is shot Help!" >How can i come up with passwords that are complex and easy to remember? My short term memory is shot Help!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/07/question-how-can-i-come-up-with.html" rel="bookmark" title="Permanent Link: How can i come up with passwords that are complex and easy to remember? My short term memory is shot Help!" >How can i come up with passwords that are complex and easy to remember? My short term memory is shot Help!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/12/how-can-i-recover-my-wordpress-password.html" rel="bookmark" title="Permanent Link: How can I recover my wordpress password?" >How can I recover my wordpress password?</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/tcrKXiqtJM5KQ9N9VaGHNqvectI/0/da"><img src="http://feedads.g.doubleclick.net/~a/tcrKXiqtJM5KQ9N9VaGHNqvectI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/tcrKXiqtJM5KQ9N9VaGHNqvectI/1/da"><img src="http://feedads.g.doubleclick.net/~a/tcrKXiqtJM5KQ9N9VaGHNqvectI/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=cQggllMPNPY:I6ml5s3yUGI:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=cQggllMPNPY:I6ml5s3yUGI:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/cQggllMPNPY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/04/cool-password-trick.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/04/cool-password-trick.html</feedburner:origLink></item>
		<item>
		<title>Windows Live Writer Portable 2.0</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/LZOfhxosOv0/windows-live-writer-portable-20.html</link>
		<comments>http://www.asktheadmin.com/2009/04/windows-live-writer-portable-20.html#comments</comments>
		<pubDate>Thu, 23 Apr 2009 13:46:14 +0000</pubDate>
		<dc:creator>Karl L. Gechlik | AskTheAdmin.com</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/2009/04/windows-live-writer-portable-20.html</guid>
		<description><![CDATA[I have been using Windows Live Writer now for about 6 months solidly. After deciding I am going to be sticking with it – I went a’looking to see if I could find a Mobile or Portable version of it. A mobile version for my Windows Mobile device would have been the shiznit but instead [...]]]></description>
			<content:encoded><![CDATA[<p>I have been using Windows Live Writer now for about 6 months solidly. After deciding I am going to be sticking with it – I went a’looking to see if I could find a Mobile or Portable version of it. A mobile version for my Windows Mobile device would have been the shiznit but instead I found instructions on hot to get it portable and onto my Memory Stick! Check it out…<br />
<blockquote>Starting to use Windows Live Writer more and more it becomes apparent that it would be really nice to take it with me between computers. If you have more than one blog it is tedious to set everything up every time you need to install again. You have all your blog settings, ping server settings and FTP settings to redo.
<p>Over on <a href="http://portableapps.com/">PortableApps.com</a> a lot of work has been done to get apps such as Firefox, Thunderbird even Open Office to run in a portable environment. So I figured WLW was a natural for this environment. It takes a bit to figure it out but once you do it works really well.</p>
<p>This is my first portable app! I&#8217;ve posted my Windows Live Writer Portable launcher here: <a href="http://www.techlifeweb.com/download/WindowsLiveWriterPortable.zip">WindowsLiveWriterPortable.zip</a></p>
<p>The zip file does NOT contain everything you need to run Windows Live Writer. This is simply a launcher which will run Windows Live Writer in a self contained environment so you can take everything with you between computers via your USB memory stick or other portable device. </p>
<p>To get this portable app to work you need to follow these steps closely:</p>
<p>1. Unzip this file to your USB or other portable drive      <br />2. Download Windows Live Writer from: <a href="http://windowslivewriter.spaces.live.com/">http://windowslivewriter.spaces.live.com</a>       <br />3. Install Windows Live Write as usual. You don&#8217;t even have to run it, just so long as it is installed.       <br />4. Copy ALL of the files FROM c:\program files\windows live writer TO the new structure on your USB drive that looks like the graphic below \WindowsLiveWriterPortable\App\WindowsLiveWriter</p>
<p><a href="http://www.techlifeweb.com/art/WindowsLiveWriterPortable_1511E/wlw6.jpg"><img style="display: block; float: none; margin-left: auto; margin-right: auto" height="133" src="http://www.techlifeweb.com/art/WindowsLiveWriterPortable_1511E/wlw_thumb4.jpg" width="345" /></a></p>
<p>5. You can now uninstall Windows Live Writer if you want </p>
<p>To use Windows Live Writer from your USB drive simply double click on WindowsLiveWriterPortable.exe and it will take care of the necessary registry settings and document paths. If you have used WLW on your computer before, the launcher will copy all your settings and files to the USB drive. </p>
<p>This is my first portable app so hopefully it will work well. So for so good for me in limited testing. </p>
</blockquote>
<p align="right">[Via <a href="http://www.techlifeweb.com/2007/02/windows-live-writer-portable.html">TechLifeWeb</a>]</p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/02/microsoft-tells-you-how-to-blog-live.html" rel="bookmark" title="Permanent Link: Microsoft tells you how to blog. Live Writer is it for You?" >Microsoft tells you how to blog. Live Writer is it for You?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/06/windows-live-writer-errors-out-on-posting-invalid-server-response.html" rel="bookmark" title="Permanent Link: Windows Live Writer Errors out on posting. Invalid Server Response." >Windows Live Writer Errors out on posting. Invalid Server Response.</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/08/what-do-you-keep-on-your-memory-stick.html" rel="bookmark" title="Permanent Link: What do you keep on your memory stick?" >What do you keep on your memory stick?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/08/what-do-you-keep-on-your-memory-stick-2.html" rel="bookmark" title="Permanent Link: What do you keep on your memory stick?" >What do you keep on your memory stick?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/05/sysinternals-live-is-now-um-live-microsoft-makes-tools-easily-accessible.html" rel="bookmark" title="Permanent Link: Sysinternals Live is now Um Live? Microsoft makes tools easily accessible!" >Sysinternals Live is now Um Live? Microsoft makes tools easily accessible!</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/zoQvBk7_ZlsTBpEIt7G7YOEb3Kg/0/da"><img src="http://feedads.g.doubleclick.net/~a/zoQvBk7_ZlsTBpEIt7G7YOEb3Kg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/zoQvBk7_ZlsTBpEIt7G7YOEb3Kg/1/da"><img src="http://feedads.g.doubleclick.net/~a/zoQvBk7_ZlsTBpEIt7G7YOEb3Kg/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=LZOfhxosOv0:ZUWyV_RR4yQ:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=LZOfhxosOv0:ZUWyV_RR4yQ:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/LZOfhxosOv0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/04/windows-live-writer-portable-20.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/04/windows-live-writer-portable-20.html</feedburner:origLink></item>
		<item>
		<title>Admin’s Arsenal: PSTools</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/xSc9K-fxk1k/admins-arsenal-pstools.html</link>
		<comments>http://www.asktheadmin.com/2009/04/admins-arsenal-pstools.html#comments</comments>
		<pubDate>Wed, 22 Apr 2009 08:00:57 +0000</pubDate>
		<dc:creator>Joe Glessner</dc:creator>
		
		<category><![CDATA[Admin's Arsenal]]></category>

		<category><![CDATA[Free Download]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/?p=1889</guid>
		<description><![CDATA[The PSTools suite is one of those things that you&#8217;ll find new uses for every time you play with it. The PSTools suite was developed by Mark Russinovich who worked on the original NTFS file system, and hence has a rather unique insight into the inner workings of Windows systems.
The PSTools suite is comprised of [...]]]></description>
			<content:encoded><![CDATA[<p>The PSTools suite is one of those things that you&#8217;ll find new uses for every time you play with it. The <a onclick="pageTracker._trackPageview('/outgoing/technet.microsoft.com/en-us/sysinternals/bb896649.aspx?referer=http://www.asktheadmin.com/wp-admin/edit.php?post_status=future');pageTracker._trackPageview('/outgoing/technet.microsoft.com/en-us/sysinternals/bb896649.aspx?referer=http://www.asktheadmin.com/wp-admin/post.php?action=edit&amp;post=1889');" href="http://technet.microsoft.com/en-us/sysinternals/bb896649.aspx" target="_blank">PSTools suite</a> was developed by <a onclick="pageTracker._trackPageview('/outgoing/blogs.technet.com/markrussinovich/?referer=http://www.asktheadmin.com/wp-admin/edit.php?post_status=future');pageTracker._trackPageview('/outgoing/blogs.technet.com/markrussinovich/?referer=http://www.asktheadmin.com/wp-admin/post.php?action=edit&amp;post=1889');" href="http://blogs.technet.com/markrussinovich/" target="_blank">Mark Russinovich</a> who worked on the original <a onclick="pageTracker._trackPageview('/outgoing/en.wikipedia.org/wiki/Ntfs?referer=http://www.asktheadmin.com/wp-admin/edit.php?post_status=future');pageTracker._trackPageview('/outgoing/en.wikipedia.org/wiki/Ntfs?referer=http://www.asktheadmin.com/wp-admin/post.php?action=edit&amp;post=1889');" href="http://en.wikipedia.org/wiki/Ntfs" target="_blank">NTFS file system</a>, and hence has a rather unique insight into the inner workings of Windows systems.</p>
<p>The PSTools suite is comprised of the following utilities:</p>
<ul>
<li>PsExec - execute processes remotely</li>
<li>PsFile - shows files opened remotely</li>
<li>PsGetSid - display the SID of a computer or a user</li>
<li>PsInfo - list information about a system</li>
<li>PsKill - kill processes by name or process ID</li>
<li>PsList - list detailed information about processes</li>
<li>PsLoggedOn - see who&#8217;s logged on locally and via resource sharing (full source is included)</li>
<li>PsLogList - dump event log records</li>
<li>PsPasswd - changes account passwords</li>
<li>PsService - view and control services</li>
<li>PsShutdown - shuts down and optionally reboots a computer</li>
<li>PsSuspend - suspends processes</li>
<li>PsUptime - shows you how long a system has been running since its last reboot <em>(PsUptime&#8217;s functionality has been incorporated into PsInfo)</em></li>
</ul>
<p>While these tools work locally (and in most cases work better than the native Windows utilities, or provide functionality that is not available natively), they really shine when it comes to working with remote machines. If I had nothing else but a fresh (default) Windows install, I could probably continue to administer my network using the PSTools.</p>
<p>Notice I said nothing but a default windows install. Microsoft has done something rather unique with the PSTools suite (in fact with the entire Sysinternals utilities collection), and made them usable from a &#8220;live&#8221; website (to get an overview of what is available, just type <a href="http:\\live.sysinternals.com\tools " target="_blank">live.sysinternals.com\tools </a>into your browser&#8217;s address bar).</p>
<p>Now all these tools are stand alone executables (no need to install), so they can be run from a USB drive (SWEET!!!), however being able to run them without even having the executables on the machine is just <em><strong>awesome</strong></em>!</p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/11/admins-arsenal-baregrep.html" rel="bookmark" title="Permanent Link: Admin&#8217;s Arsenal: BareGrep" >Admin&#8217;s Arsenal: BareGrep</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/08/admins-arsenal-keepass-v1x.html" rel="bookmark" title="Permanent Link: Admin&#8217;s Arsenal: KeePass v1.x" >Admin&#8217;s Arsenal: KeePass v1.x</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/06/do-you-use-sysinternals-tools-did-you.html" rel="bookmark" title="Permanent Link: Do you use SysInternals tools? Did you know they were acquired by Microsoft?" >Do you use SysInternals tools? Did you know they were acquired by Microsoft?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/06/admins-arsenal-dban.html" rel="bookmark" title="Permanent Link: Admins Arsenal: DBAN" >Admins Arsenal: DBAN</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/08/the-admins-arsenal-lsgrabexe.html" rel="bookmark" title="Permanent Link: The Admin&#8217;s Arsenal: lsgrab.exe" >The Admin&#8217;s Arsenal: lsgrab.exe</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/X7Tb2Q3y9wPmj7867JgyfrGbge8/0/da"><img src="http://feedads.g.doubleclick.net/~a/X7Tb2Q3y9wPmj7867JgyfrGbge8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/X7Tb2Q3y9wPmj7867JgyfrGbge8/1/da"><img src="http://feedads.g.doubleclick.net/~a/X7Tb2Q3y9wPmj7867JgyfrGbge8/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=xSc9K-fxk1k:1RwQDStNbro:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=xSc9K-fxk1k:1RwQDStNbro:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/xSc9K-fxk1k" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/04/admins-arsenal-pstools.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/04/admins-arsenal-pstools.html</feedburner:origLink></item>
		<item>
		<title>Mathway.com does your math homework for you.</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/h1518mTLxTg/mathwaycom-does-your-math-homework-for-you.html</link>
		<comments>http://www.asktheadmin.com/2009/04/mathwaycom-does-your-math-homework-for-you.html#comments</comments>
		<pubDate>Fri, 17 Apr 2009 12:05:57 +0000</pubDate>
		<dc:creator>Karl L. Gechlik | AskTheAdmin.com</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/2009/04/mathwaycom-does-your-math-homework-for-you.html</guid>
		<description><![CDATA[ Where was this when I was in school? I read today that Live.com will do basic algebra for you in their search. For example if you type in x+10=11, Live.com would return x=1. You can try harder equations and even quadratic equations. But this left me wondering what if I had some more difficult [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.asktheadmin.com/wp-content/uploads/2009/04/mathway-head.gif"><img title="mathway_head" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; margin-left: 0px; margin-right: 0px; border-right-width: 0px" height="108" alt="mathway_head" src="http://www.asktheadmin.com/wp-content/uploads/2009/04/mathway-head-thumb.gif" width="129" align="left" border="0" /></a><span> Where was this when I was in school? I read today that <a href="http://Live.com">Live.com</a> will do basic algebra for you in their search. For example if you type in x+10=11, <a href="http://Live.com">Live.com</a> would return x=1. You can try harder equations and even quadratic equations. But this left me wondering what if I had some more difficult problems?</span></p>
<p>I am talking about full on algebra, Trigonometry and Calculus.</p>
<p>Well I went a’ Googling and came up with <a href="http://www.MathWay.com">http://www.MathWay.com</a> . MathWay is a simple website that can prove to be invaluable. When you get to the site&#160; you will see this:</p>
<p><a href="http://www.asktheadmin.com/wp-content/uploads/2009/04/mathway1.gif"><img title="mathway1" style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" height="227" alt="mathway1" src="http://www.asktheadmin.com/wp-content/uploads/2009/04/mathway1-thumb.gif" width="584" border="0" /></a></p>
<p>By pulling down the Select Subject menu you will see the following subjects:</p>
<p><a href="http://www.asktheadmin.com/wp-content/uploads/2009/04/mathway2.gif"><img title="mathway2" style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" height="144" alt="mathway2" src="http://www.asktheadmin.com/wp-content/uploads/2009/04/mathway2-thumb.gif" width="584" border="0" /></a></p>
<p>Let’s start with some long basic math and see how it does. And let’s try not to jump down my throat telling me how easy this problem is. Yes it can be easily solved <span style="text-decoration: line-through">in your head</span> <span style="text-decoration: line-through">on paper </span>with your trusty calculator but, we have to start somewhere, right?</p>
<p>I put in Basic Math and then typed in 100+21-12+10000009*6 and hit the answer button</p>
<p><a href="http://www.asktheadmin.com/wp-content/uploads/2009/04/mathway4.gif"><img title="mathway4" style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" height="278" alt="mathway4" src="http://www.asktheadmin.com/wp-content/uploads/2009/04/mathway4-thumb.gif" width="584" border="0" /></a></p>
<p>It returned this:</p>
<p><a href="http://www.asktheadmin.com/wp-content/uploads/2009/04/mathway5.gif"><img title="mathway5" style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" height="246" alt="mathway5" src="http://www.asktheadmin.com/wp-content/uploads/2009/04/mathway5-thumb.gif" width="584" border="0" /></a></p>
<p>If you are checking it out on your calculator to make sure it is correct – trust me I already did! The correct answer is 6000163 just as MathWay states. If you hit the Get Step-by-Step Solutions it will take you to page advertising a paid program.</p>
<p>Now we don’t want that now do we?</p>
<p>Let’s try something a little harder – anyone remember the distributive property? How about this example:</p>
<p>4x^2a(x^2-11) can you bat that one out in your head? Let’s see what MathWay can do with it:</p>
<p><a href="http://www.asktheadmin.com/wp-content/uploads/2009/04/mathway6.gif"><img title="mathway6" style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" height="272" alt="mathway6" src="http://www.asktheadmin.com/wp-content/uploads/2009/04/mathway6-thumb.gif" width="584" border="0" /></a></p>
<p><a href="http://www.asktheadmin.com/wp-content/uploads/2009/04/mathway7.gif"><img title="mathway7" style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" height="316" alt="mathway7" src="http://www.asktheadmin.com/wp-content/uploads/2009/04/mathway7-thumb.gif" width="385" border="0" /></a></p>
<p>There is so much geeky math goodness contained in MathWay – if you are a math buff you might just explode. Check out the main headings of what is covered.</p>
<p><a href="http://www.asktheadmin.com/wp-content/uploads/2009/04/mathway8.gif"><img title="mathway8" style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" height="304" alt="mathway8" src="http://www.asktheadmin.com/wp-content/uploads/2009/04/mathway8-thumb.gif" width="244" border="0" /></a></p>
<p>Do you have a go to site for your complex math issues? We would love to hear about it in the comments!</p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/01/ubuntu-quick-tip-missing-minimize-and.html" rel="bookmark" title="Permanent Link: Ubuntu Quick Tip: Missing Minimize and Maximize Window Buttons?" >Ubuntu Quick Tip: Missing Minimize and Maximize Window Buttons?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/11/dont-miss-that-deadline-here-is-great.html" rel="bookmark" title="Permanent Link: Dont miss that deadline. Here is a great app to go with your great excuse!" >Dont miss that deadline. Here is a great app to go with your great excuse!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/11/futurama-is-back-baby.html" rel="bookmark" title="Permanent Link: Futurama is back baby!" >Futurama is back baby!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/11/futurama-is-back-baby-2.html" rel="bookmark" title="Permanent Link: Futurama is back baby!" >Futurama is back baby!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/08/good-news-everyone-futurama-is-back.html" rel="bookmark" title="Permanent Link: Good News Everyone&#8230; Futurama is back!" >Good News Everyone&#8230; Futurama is back!</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/FZRkyvtQAlRJZPqEHVxmyrukLns/0/da"><img src="http://feedads.g.doubleclick.net/~a/FZRkyvtQAlRJZPqEHVxmyrukLns/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/FZRkyvtQAlRJZPqEHVxmyrukLns/1/da"><img src="http://feedads.g.doubleclick.net/~a/FZRkyvtQAlRJZPqEHVxmyrukLns/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=h1518mTLxTg:3HyDa1_wLcQ:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=h1518mTLxTg:3HyDa1_wLcQ:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/h1518mTLxTg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/04/mathwaycom-does-your-math-homework-for-you.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/04/mathwaycom-does-your-math-homework-for-you.html</feedburner:origLink></item>
		<item>
		<title>The plight of the Front-End Web Developer today</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/pwgG2OUx2-0/the-plight-of-the-front-end-web-developer-today.html</link>
		<comments>http://www.asktheadmin.com/2009/04/the-plight-of-the-front-end-web-developer-today.html#comments</comments>
		<pubDate>Thu, 16 Apr 2009 19:20:57 +0000</pubDate>
		<dc:creator>Commodore64</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[front-end web developer]]></category>

		<category><![CDATA[plight]]></category>

		<category><![CDATA[struggle]]></category>

		<category><![CDATA[web dev]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/?p=2037</guid>
		<description><![CDATA[Holy %^it things are moving fast. We've got DHTML, Javascript and CSS already throwing us curveballs on a daily basis.
As if things werent moving fast enough, we have the advent of Google Chrome, Safari for PC (wtf?) and the resurrection in popularity of Opera.]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" src="http://www.dezeen.com/wp-content/uploads/2008/04/squreffp-facade-detail-with.jpg" alt="building facade" hspace="5" width="286" height="286" />Hello Kiddies,<br />
Commodore 64 back agian to bring you an update from Tech land. While this article is titled towards front-end web devs, it might also apply to all web devs just the same. It&#8217;s very unfortunate that I must regress to using the infamous cliche&#8217;: in this market, there are challenges.</p>
<p>Now, the nitty gritty.</p>
<p>Holy %^it things are moving fast. We&#8217;ve got DHTML, Javascript and CSS already throwing us curveballs on a daily basis.<br />
As if things werent moving fast enough, we have the advent of Google Chrome, Safari for PC (wtf?) and the resurrection in popularity of Opera. Lest we forget all the other OS&#8217;es running Konqueror and other lesser known browsers.</p>
<p><strong>It&#8217;s sheerly mind-boggling the amount of keeping-up a front end dev must do. </strong>My belief is that tabular information and the basic premise behind query languages will always stay the same as long as the data stays 2 dimensional. However the demands on today&#8217;s user interfaces grow every day some schmuck makes a widget with a slider that moves ever so more fluidly than its predecessor.</p>
<p>Enter AJAX - Asynchronous Javascript And XML - This was the next stepping stone for many interactive user experiences which relied on the native, built in browser libraries and started to finally move us away from the annoying Flash platform and it&#8217;s keyframe-style programming model, and into a new era of highly visual programming with limitless animation possibilities. So, we spent time learning that. Greaaaat.</p>
<p>Then Adobe bought Macromedia. How annoying. But still, Flash has always been Flash.<br />
But not anymore&#8230; now it&#8217;s called FLEX, and like AJAX it also abandons the concept of keyframes in favor of object oriented animation and programming. But once again, its something new to learn.<br />
If it&#8217;s not a browser, its a new OS. If its&#8217;s not a new OS, it&#8217;s a new version of HTML or CSS ala W3C. If it&#8217;s none of those things then it&#8217;s a new language/platform altogether.</p>
<p>The art of keeping up with the plethora of versions and platforms and languages (OH MY!) is truly an artful balancing act. Something of a circus I would say. I&#8217;ve played Civilization type games where the team who upgrades faster wins. This is totally the case for front-end devs. Because the expectations of the end user are so directly tied to front end design, it becomes almost impossible to achieve that &#8216;WOW&#8217; factor that used to happen in a simple tween of a vector back in the day. <strong>Simply put, people have probably seen it all, or at least feel that way.</strong> Now people expect slick sliders and even checkboxes that fade on and off. On the more advanced side people are now expecting that same drag and drop desktop functionality in websites and reporting features ala Crystal Reports, but REAL TIME.</p>
<p>I always saw this coming - the day web browsing and data perusing can ultimately shed it&#8217;s refresh button forever. Advances in OS interfaces (ala OSX) have given people more of a feeling for what they&#8217;re touching with their mouse. People today feel somehow more connected to the website they are viewing. <strong>No longer are people just hapless viewers. Upon entrance to a website (onLoad), users are already drawn into the experience with a multitude of switches and buttons and ads being flown at them in what seems to be 3d.</strong></p>
<p>This burder is being taken on by the front end web dev today. In today&#8217;s market companies are looking for all around guys, like myself, who can dive into a simple SQL statement as quickly as formatting a complex wireframe based on CSS principles, and just as quickly repair a content [div] that has broken out of its bounds for some strange reason, and only in one browser and not the other.</p>
<div>The trick is keeping yourself valuable, with fresh technology in your arsenal to really try to get that &#8216;WOW&#8217; factor. <strong>In today&#8217;s market though, the trick is keeping your head up and not using this &#8216;market&#8217; everyone speaks of in such a cliche tone, as an excuse.</strong></p>
<p>This is Commodore64 signing over and out,<br />
and I&#8217;m still the one you used to play Bruce Lee on. ,8,1</p>
</div>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/06/win-a-free-dx9000-touchsmart-pc-from-hp-and-asktheadmin-developer-contest.html" rel="bookmark" title="Permanent Link: Win a free dx9000 TouchSmart PC from HP and AskTheAdmin! (Developer Contest)" >Win a free dx9000 TouchSmart PC from HP and AskTheAdmin! (Developer Contest)</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/07/i-bring-you-googles-thirteen_25.html" rel="bookmark" title="Permanent Link: I bring you Google&#8217;s Thirteen Commandments for SpeedyPage Loads!" >I bring you Google&#8217;s Thirteen Commandments for SpeedyPage Loads!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/03/adobe-air-steals-the-show-on-my-desktop-analytics-users-rejoice.html" rel="bookmark" title="Permanent Link: Adobe Air steals the show on my desktop - Analytics Users Rejoice!" >Adobe Air steals the show on my desktop - Analytics Users Rejoice!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/08/check-your-web-design-in-tons-of-different-browsers-totally-free-and-deliciously-open-source-multi-platform-fully-configurable-screenshots.html" rel="bookmark" title="Permanent Link: Check your web design in TONS of different browsers, totally free and deliciously open source, multi-platform, fully-configurable screenshots." >Check your web design in TONS of different browsers, totally free and deliciously open source, multi-platform, fully-configurable screenshots.</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/10/apple-to-allow-third-party-apps-on-the-iphone-fanboys-everywhere-rejoice.html" rel="bookmark" title="Permanent Link: Apple to allow Third Party Apps on the iPhone. Fanboys everywhere rejoice!" >Apple to allow Third Party Apps on the iPhone. Fanboys everywhere rejoice!</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/QeqZlg8O6uFYNxsV7SE8G6i_Jck/0/da"><img src="http://feedads.g.doubleclick.net/~a/QeqZlg8O6uFYNxsV7SE8G6i_Jck/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/QeqZlg8O6uFYNxsV7SE8G6i_Jck/1/da"><img src="http://feedads.g.doubleclick.net/~a/QeqZlg8O6uFYNxsV7SE8G6i_Jck/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=pwgG2OUx2-0:OhdukzNyr2Q:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=pwgG2OUx2-0:OhdukzNyr2Q:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/pwgG2OUx2-0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/04/the-plight-of-the-front-end-web-developer-today.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/04/the-plight-of-the-front-end-web-developer-today.html</feedburner:origLink></item>
		<item>
		<title>Can I Make My Own High Priority Folder Like My Documents?</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/OZQ_GqsgH-Q/can-i-make-my-own-folder-like-my.html</link>
		<comments>http://www.asktheadmin.com/2009/04/can-i-make-my-own-folder-like-my.html#comments</comments>
		<pubDate>Thu, 16 Apr 2009 15:56:00 +0000</pubDate>
		<dc:creator>Karl L. Gechlik | AskTheAdmin.com</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://ata.bansal-inc.com/?p=612</guid>
		<description><![CDATA[This morning we had a request for adding a &#8220;High Priority Folder&#8221;.
This would be a top level folder that shows up on your Windows desktop and in My Computer. Didn&#8217;t think you could do that? Well read on&#8230;
The folder we will be creating can not be removed - just like My Computer or My Documents. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://bp1.blogger.com/_NVxlqh8F-Yo/R6H3t9obgBI/AAAAAAAACVI/SV_rVPTHx2A/s1600-h/ATA_Folder_Registry.png" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img id="BLOGGER_PHOTO_ID_5161679016953610258" style="FLOAT: left; MARGIN: 0pt 10px 10px 0pt; CURSOR: pointer" src="http://bp1.blogger.com/_NVxlqh8F-Yo/R6H3t9obgBI/AAAAAAAACVI/SV_rVPTHx2A/s320/ATA_Folder_Registry.png" border="0" alt="" /></a>This morning we had a request for adding a &#8220;High Priority Folder&#8221;.</p>
<p><span style="FONT-WEIGHT: bold">This would be a top level folder that shows up on your Windows desktop and in My Computer. Didn&#8217;t think you could do that? Well read on&#8230;</span></p>
<p>The folder we will be creating can not be removed - just like My Computer or My Documents. Easy accessibility for your most used folder.</p>
<p><span style="FONT-WEIGHT: bold">You can assign the folder to be anywhere you have access to and use your own icon file for it.</span> It will be the first view you see in any Open File box.</p>
<p>We found the step by step from <a href="http://www.pctools.com/guides/registry/detail/73/">PcTools</a> talking about windows 2000. With a few slight mods we got it working on XP and it should work on Vista as well.</p>
<p>Now you can create your own custom system folder, like &#8220;My Documents&#8221;, that can not be deleted or renamed and place it on the desktop and My Computer. All you need to do is add a handful of registry entries. The last two steps add the shortcut to My Computer and The Desktop. You can do one or the other.</p>
<p>Editing the registry can be dangerous so be careful and make a backup before you begin!</p>
<p><a href="http://bp0.blogger.com/_NVxlqh8F-Yo/R6H6ktobgGI/AAAAAAAACVs/CvFJM9gAOzo/s1600-h/ATA_Registry.png" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img id="BLOGGER_PHOTO_ID_5161682156574703714" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: pointer; TEXT-ALIGN: center" src="http://bp0.blogger.com/_NVxlqh8F-Yo/R6H6ktobgGI/AAAAAAAACVs/CvFJM9gAOzo/s400/ATA_Registry.png" border="0" alt="" /></a></p>
<ol>
<li>Create the following series of keys and values in the registry at [HKEY_CLASSES_ROOT\CLSID] or [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID]. The GUID, globally unique identifier, can be a random number, in this example &#8220;FD4DF9E0-E3DE-11CE-BFCF-ABCD1DE12345&#8243; is used. See this article for more GUID examples.</li>
<li>Create a new key called [HKEY_CLASSES_ROOT\CLSID\{FD4DF9E0-E3DE-11CE-BFCF-ABCD1DE12345}] and set (Default) to equal the name of the folder e.g. &#8220;My Folder&#8221;.</li>
<li>Create a new sub-key under the main key called &#8220;DefaultIcon&#8221; (i.e. [HKEY_CLASSES...ABCD1DE12345}\DefaultIcon]) and set (Default) to equal the filename for the icon you want to display e.g. &#8220;c:\windows\myicon.ico&#8221;.</li>
<li>Create a new sub-key under the main key called &#8220;InProcServer32&#8243; (i.e. [HKEY_CLASSES...ABCD1DE12345}\InProcServer32]) and set (Default) to equal &#8220;shell32.dll&#8221;, also create a new String value called &#8220;ThreadingModel&#8221; and set it to &#8220;Apartment&#8221;.</li>
<li>Create a set of sub-keys starting at the main key &#8220;Shell\Open My Menu\Command&#8221; (i.e. [HKEY_CLASSES...ABCD1DE12345}\Shell\Open My Folder\Command]) and set (Default) to equal the command to execute when clicked, in this case explorer, e.g. &#8220;explorer /root,c:\MyFolder&#8221;.</li>
<li>Create a set of sub-keys starting at the main key &#8220;ShellEx\PropertySheetHandlers\{FD4DF9E0-E3DE-11CE-BFCF-ABCD1DE12345}&#8221;<br />
(i.e. [HKEY_CLASSES...ABCD1DE12345}\ShellEx\PropertySheetHandlers<br />
\{FD4DF9E0-E3DE-11CE-BFCF-ABCD1DE12345}])</li>
<li>Create a new sub-key under the main key called &#8220;ShellFolder&#8221; (i.e. [HKEY_CLASSES...ABCD1DE12345}\ShellFolder]) and create a new Binary value called &#8220;Attributes&#8221; and set it to &#8220;00 00 00 00&#8243;.</li>
<li style="COLOR: #ff0000">(Optional) <span style="color: #3333ff;">To place the folder on the desktop add the following key:</span><br />
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\<br />
Explorer\Desktop\NameSpace\{FD4DF9E0-E3DE-11CE-BFCF-ABCD1DE12345}]</li>
<li style="COLOR: #ff0000"><span style="color: #ff0000;">(Optional) <span style="color: #3333ff;">To place the folder in My Computer add the following key:</span></span><br />
<span style="color: #ff0000;">[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\</span><br />
<span style="color: #ff0000;">Explorer\MyComputer\NameSpace\{FD4DF9E0-E3DE-11CE-BFCF-ABCD1DE12345}]</span></li>
</ol>
<p><span style="FONT-WEIGHT: bold">Now the folder cannot be deleted from the desktop or My Computer, nor can it be renamed other than removing the CLSID and the entries under NAME SPACE.<br />
</span><br />
If you <strong>flucked shit up</strong> Are Banging your head against you desk messed up on any typing a blank icon will appear on your desktop or in My Computer - go back and check for any erroneous characters!</p>
<p><a href="http://www.asktheadmin.com/">_TheMyShortcutsBetterThanYoursAdmiN_</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/08/how-can-i-show-folder-size-in-my-windows-explorer.html" rel="bookmark" title="Permanent Link: How can I show FOLDER size in my Windows Explorer?" >How can I show FOLDER size in my Windows Explorer?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/03/access-private-folders-protected-by.html" rel="bookmark" title="Permanent Link: Access “private” folders protected by NTFS" >Access “private” folders protected by NTFS</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/09/ntfs-file-compression-why-blue.html" rel="bookmark" title="Permanent Link: NTFS File Compression: Why Blue?" >NTFS File Compression: Why Blue?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/02/pismo-file-mount-audit-package-what-a-name.html" rel="bookmark" title="Permanent Link: Pismo File mount audit package&#8230; What a name!" >Pismo File mount audit package&#8230; What a name!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/06/can-i-save-my-searches-to-reuse-them-in.html" rel="bookmark" title="Permanent Link: Can I save my searches to reuse them in Vista?" >Can I save my searches to reuse them in Vista?</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/DDO2E1ZYEDh-n4odG5vCCD0_y-g/0/da"><img src="http://feedads.g.doubleclick.net/~a/DDO2E1ZYEDh-n4odG5vCCD0_y-g/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/DDO2E1ZYEDh-n4odG5vCCD0_y-g/1/da"><img src="http://feedads.g.doubleclick.net/~a/DDO2E1ZYEDh-n4odG5vCCD0_y-g/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=OZQ_GqsgH-Q:kcborQehZ8U:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=OZQ_GqsgH-Q:kcborQehZ8U:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/OZQ_GqsgH-Q" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/04/can-i-make-my-own-folder-like-my.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/04/can-i-make-my-own-folder-like-my.html</feedburner:origLink></item>
		<item>
		<title>Odd Outlook Express Issue Fixed</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/mm2qZCPofpY/lookup-issue.html</link>
		<comments>http://www.asktheadmin.com/2009/04/lookup-issue.html#comments</comments>
		<pubDate>Thu, 16 Apr 2009 12:37:56 +0000</pubDate>
		<dc:creator>kerry</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[outlook express]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/?p=2156</guid>
		<description><![CDATA[ A few days ago I started receiving the error message on my computer in a popup window, &#8220;To free up disk space Outlook Express can compact messages. This may take a few minutes.&#8221;   There are 2 options: OK and Cancel.
The interesting thing is that I never installed or use Outlook Express.
How did this [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.asktheadmin.com/wp-content/uploads/2009/04/outlookexpress6splash.jpg"><img style="0px" src="http://www.asktheadmin.com/wp-content/uploads/2009/04/outlookexpress6splash-thumb.jpg" border="0" alt="outlookexpress6splash" width="200" height="163" align="left" /></a> A few days ago I started receiving the error message on my computer in a popup window, &#8220;To free up disk space Outlook Express can compact messages. This may take a few minutes.&#8221;  <em> </em>There are 2 options: OK and Cancel.</p>
<p>The interesting thing is that I never installed or use Outlook Express.</p>
<p><em>How did this happen??</em></p>
<p>Well, apparently this is caused by Windows XP SP3 and Windows Desktop Search (which I also installed)&#8230;ugh.  here&#8217;s quite a lively forum chat over at <a href="http://www.microsoft.com/communities/newsgroups/en-us/default.aspx?dg=microsoft.public.outlookexpress.general&amp;tid=7d668414-0350-485f-a572-56d6f19e0b54&amp;cat=en_US_84883150-57ad-41d0-b145-8f6c650b58ef&amp;lang=en&amp;cr=US&amp;sloc=en-us&amp;m=1&amp;p=1">Microsoft</a> on this subject also.</p>
<p><strong>(One note of caution.  Be very careful when modifying your registry.  If you do not feel comfortable doing it, please don&#8217;t do it.  Any inadvertent changes or mistakes could cause disastrous effects..)</strong></p>
<p>Here&#8217;s how to stop it from occurring:</p>
<p>1. Close all programs.</p>
<p>2. Create a Restore Point</p>
<p>3.  Find this key in the registry:  <strong>HKEY_CURRENT_USER\Identities\{GUID}\Software\Microsoft\Outlook Express\5.0</strong></p>
<p>4.  Double click the <strong>Compact Check Count</strong></p>
<p>5.  Select the Base option for <strong>Decimal</strong> and change the value to 0</p>
<p>6.  Close the Registry</p>
<p>Kerry enjoys writing about a variety of topics.  Her favorite website is CallCatalog.com which is a <a title="free reverse phone directory" href="http://www.callcatalog.com">reverse phone directory</a> website.  You can also read her blog which discusses <a title="free reverse phone directory" href="http://www.callcatalog.com/blog">personal privacy</a> issues.</p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/06/simple-trick-to-keep-your-computer-from-locking-up.html" rel="bookmark" title="Permanent Link: Simple Trick to Keep Your Computer from Locking Up" >Simple Trick to Keep Your Computer from Locking Up</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/03/why-cant-i-type-just-my-domain-name.html" rel="bookmark" title="Permanent Link: Why cant I type just my domain name into a browser and still get there?" >Why cant I type just my domain name into a browser and still get there?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/08/question-my-xp-machine-is-super-slow-booting-to-the-desktop.html" rel="bookmark" title="Permanent Link: Question: My XP Machine is super slow booting to the desktop." >Question: My XP Machine is super slow booting to the desktop.</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/05/10-things-your-it-guy-would-like-you-to-know.html" rel="bookmark" title="Permanent Link: 10 things your IT guy would like you to know" >10 things your IT guy would like you to know</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/07/time-warner-fights-zombies-with-dns-hijacking-not-supernatural-all.html" rel="bookmark" title="Permanent Link: Time Warner Fights Zombies With DNS Hijacking - Not Supernatural @ All!" >Time Warner Fights Zombies With DNS Hijacking - Not Supernatural @ All!</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/H7lepzfMVdoVTnaPAthwhbcgxlA/0/da"><img src="http://feedads.g.doubleclick.net/~a/H7lepzfMVdoVTnaPAthwhbcgxlA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/H7lepzfMVdoVTnaPAthwhbcgxlA/1/da"><img src="http://feedads.g.doubleclick.net/~a/H7lepzfMVdoVTnaPAthwhbcgxlA/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=mm2qZCPofpY:-1WVAkEh854:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=mm2qZCPofpY:-1WVAkEh854:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/mm2qZCPofpY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/04/lookup-issue.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/04/lookup-issue.html</feedburner:origLink></item>
		<item>
		<title>Keyboardr Lets You Search Using Only The Keyboard</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/OBd4hWnxJ5Y/keyboardr-lets-you-search-using-only-the-keyboard-instant-results-without-clicking-any-platform.html</link>
		<comments>http://www.asktheadmin.com/2009/04/keyboardr-lets-you-search-using-only-the-keyboard-instant-results-without-clicking-any-platform.html#comments</comments>
		<pubDate>Mon, 13 Apr 2009 17:11:31 +0000</pubDate>
		<dc:creator>Karl L. Gechlik | AskTheAdmin.com</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[google]]></category>

		<category><![CDATA[keyboard]]></category>

		<category><![CDATA[Metasearch]]></category>

		<category><![CDATA[search]]></category>

		<category><![CDATA[wikipedia]]></category>

		<category><![CDATA[Youtube]]></category>

		<guid isPermaLink="false">http://www.asktheadmin.com/2009/04/keyboardr-lets-you-search-using-only-the-keyboard-instant-results-without-clicking-any-platform.html</guid>
		<description><![CDATA[This is a really interesting search engine that caught my eye today which I happened to stumble upon and I really like it. I have been using Google or Live search for years now with an occasional visit to Yahoo. There have not been any great innovations in the search engine realm in years. But [...]]]></description>
			<content:encoded><![CDATA[<p><img style="margin-right: 20px" alt="" src="http://www.asktheadmin.com/wp-content/uploads/2009/04/image-thumb2.png" align="left" vspace="10" border="0" />This is a really interesting search engine that caught my eye today which I happened to stumble upon and I really like it. I have been using Google or Live search for years now with an occasional visit to Yahoo. There have not been any great innovations in the search engine realm in years. But this is something I can sink my teeth into.</p>
<p>It is no secret that I love to use my keyboard – no matter if it is typing out console commands, browsing in dos or command line ftp. It might be the inner geek in me but I still love it.</p>
<p>That is where Keyboardr comes in. You simply browse <a href="http://www.Keyboardr.com">to their site</a> and start typing.</p>
<p style="text-align: center"><img class="aligncenter" height="159" alt="image" src="http://www.asktheadmin.com/wp-content/uploads/2009/04/image-thumb3.png" width="571" border="0" /></p>
<p>Let’s take a look at it:</p>
<p style="text-align: center"><img class="aligncenter" height="588" alt="image" src="http://www.asktheadmin.com/wp-content/uploads/2009/04/image-thumb4.png" width="584" border="0" /></p>
<p>I searched for Conficker the April Fool’s Worm that was supposed to ramp up its carnage yesterday. As soon as I started typing, results are displayed below. You select what you want by hitting the arrow keys. If you continue typing, your results will filter all without hitting your mouse or enter yet.</p>
<p>I added &quot;AskTheAdmin&quot; to my query and was returned with the following items. I want the first selection so I hit the enter key on my keyboard.</p>
<p style="text-align: center"><img class="aligncenter" height="545" alt="image" src="http://www.asktheadmin.com/wp-content/uploads/2009/04/image-thumb5.png" width="584" border="0" /></p>
<p>It opens a new tab in Firefox and I can hit Control + Tab to cycle through my tabs. Keyboardr also separates your search results into normal Google results in the center. Google Images and YouTube on the right and Google Blog results below.</p>
<p style="text-align: center"><img class="aligncenter" height="718" alt="image" src="http://www.asktheadmin.com/wp-content/uploads/2009/04/image-thumb6.png" width="369" border="0" /></p>
<p>The above images and YouTube videos came up with the AskTheAdmin query. I simply hit my right arrow key and it moved over to that part of the screen and upon hitting enter that item will open up in a new tab.</p>
<p>The author talks about Keyboardr on <a href="http://www.julius-eckert.com/blog/32">his blog</a>, this little quote struck me so I thought I would share it with you:</p>
<blockquote><p>In the first place keyboardr is a meta-search. You get Google, Wikipedia, Youtube altogether. The instant search and the keyboard navigation are replacing the feeling of &quot;searching&quot; with the feeling of &quot;launching&quot;.</p>
</blockquote>
<p>he goes on to give us a few tips and tricks</p>
<ul>
<li>Pressing ESC resets the search, takes you back to the clock instantly ! </li>
<li>One thing only a few know is, google is a all-in-one search. Try searching for &quot;imdb Matrix&quot;. Or &quot;lastfm james brown&quot;. Or &quot;php str_replace&quot;. </li>
<li>A feature often missed by the users eye, is the &quot;All results&quot; links to get the full version of each search engine. E.g. you need to calculate &quot;5+5&quot;, &quot;define:word&quot; or check &quot;weather cologne&quot; then you just open &quot;All results&quot; from Google, right above the results, to get your answers from Google. </li>
</ul>
<p>Do you use any sort of non-traditional search engines? How is that working out for ya? Please share them with us in the comments!</p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/02/google-is-letting-people-like-you-influence-its-search-results.html" rel="bookmark" title="Permanent Link: Google is letting people like you influence its search results!" >Google is letting people like you influence its search results!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/06/can-i-save-my-searches-to-reuse-them-in.html" rel="bookmark" title="Permanent Link: Can I save my searches to reuse them in Vista?" >Can I save my searches to reuse them in Vista?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/10/joes-suggestions-for-achieving-computer-zen.html" rel="bookmark" title="Permanent Link: Joe&#8217;s suggestions for achieving Computer Zen" >Joe&#8217;s suggestions for achieving Computer Zen</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/11/admins-arsenal-baregrep.html" rel="bookmark" title="Permanent Link: Admin&#8217;s Arsenal: BareGrep" >Admin&#8217;s Arsenal: BareGrep</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/08/blocked-from-p2p-here-is-an-easy-alternative-crafty-googling-to-find-the-good-stuff-g2p-instead-of-p2p.html" rel="bookmark" title="Permanent Link: Blocked from P2P? Here is an easy alternative. Crafty Googling to find the good stuff. G2P instead of P2P?" >Blocked from P2P? Here is an easy alternative. Crafty Googling to find the good stuff. G2P instead of P2P?</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/AiFAofBBOr2HaiRfsDPGL6bdUF8/0/da"><img src="http://feedads.g.doubleclick.net/~a/AiFAofBBOr2HaiRfsDPGL6bdUF8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/AiFAofBBOr2HaiRfsDPGL6bdUF8/1/da"><img src="http://feedads.g.doubleclick.net/~a/AiFAofBBOr2HaiRfsDPGL6bdUF8/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=OBd4hWnxJ5Y:tkI5MnQvqlk:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=OBd4hWnxJ5Y:tkI5MnQvqlk:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/OBd4hWnxJ5Y" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/04/keyboardr-lets-you-search-using-only-the-keyboard-instant-results-without-clicking-any-platform.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/04/keyboardr-lets-you-search-using-only-the-keyboard-instant-results-without-clicking-any-platform.html</feedburner:origLink></item>
		<item>
		<title>What are Thumbs.db and .DS_Store files? Can I delete them? Do I need them and how can i make them stop coming back?</title>
		<link>http://feedproxy.google.com/~r/askTheAdmin/~3/h2svlbGdbXw/what-are-thumbsdb-and-dsstore-files-can.html</link>
		<comments>http://www.asktheadmin.com/2009/04/what-are-thumbsdb-and-dsstore-files-can.html#comments</comments>
		<pubDate>Mon, 13 Apr 2009 09:31:00 +0000</pubDate>
		<dc:creator>Karl L. Gechlik | AskTheAdmin.com</dc:creator>
		
		<category><![CDATA[How To]]></category>

		<category><![CDATA[Tips]]></category>

		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://ata.bansal-inc.com/?p=598</guid>
		<description><![CDATA[James from Virginia wanted to know if it was safe to delete these Thumbs.db and .DS_Store files from his network. Check out our answer and step by step removal tips.
Running in a mixed Windows/Mac environment I find it annoying to deal with all the little artifacts the great OS&#8217;s leave behind. All of our mixed [...]]]></description>
			<content:encoded><![CDATA[<p><a onclick="pageTracker._trackPageview('/outgoing/www.asktheadmin.com/wp-content/uploads/blogger/_NVxlqh8F-Yo/R5a6c9obffI/AAAAAAAACQ8/iim1hE_S7L4/s1600-h/wtf.jpg?referer=http://www.asktheadmin.com/wp-admin/edit.php?post_status=publish&amp;paged=23');" href="http://www.asktheadmin.com/wp-content/uploads/blogger/_NVxlqh8F-Yo/R5a6c9obffI/AAAAAAAACQ8/iim1hE_S7L4/s1600-h/wtf.jpg" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img id="BLOGGER_PHOTO_ID_5158515429942722034" style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://www.asktheadmin.com/wp-content/uploads/blogger/_NVxlqh8F-Yo/R5a6c9obffI/AAAAAAAACQ8/iim1hE_S7L4/s200/wtf.jpg" border="0" alt="" /></a>James from Virginia wanted to know if it was safe to delete these Thumbs.db and .DS_Store files from his network. Check out our answer and step by step removal tips.</p>
<p>Running in a mixed Windows/Mac environment I find it annoying to deal with all the little artifacts the great OS&#8217;s leave behind. All of our mixed shares and network drives are full of these frickin &#8216;Thumbs.db and .DS_Store files.</p>
<p> </p>
<p> </p>
<div></div>
<p><span style="font-weight: bold;"></p>
<div style="text-align: center;"><span style="font-weight: bold;">I hate them so much.</span></div>
<blockquote><p><span style="color: #ff0000;">Each folder with initiated thumbnail views (that is where they have displayed a Thumbnails or Filmstrip view in Windows Explorer) will have a Thumbs.db file.</span></p></blockquote>
<p>They do nothing for me. I look at them like litter on the ground. <a onclick="pageTracker._trackPageview('/outgoing/en.wikipedia.org/wiki/Thumbs.db?referer=http://www.asktheadmin.com/wp-admin/edit.php?post_status=publish&amp;paged=23');" href="http://en.wikipedia.org/wiki/Thumbs.db">I looked up what they do</a> and started deleting them. But they came back&#8230;</p>
<p>Some times I get caught up in doing something after in enrages me enough. So I was now determined to get rid of these files from my shares here on out. I did some research on how to get rid of them <span style="font-weight: bold;">permanently</span> and how to <span style="font-weight: bold;">prevent them from coming back</span>!</p>
<p><span style="font-weight: bold;">Here is how you prevent Windows and OS X from creating these annoying files.</span></p>
<p><a onclick="pageTracker._trackPageview('/outgoing/www.asktheadmin.com/wp-content/uploads/blogger/_NVxlqh8F-Yo/Ro5ga8_Wh3I/AAAAAAAAAPk/UveM29AN7-U/s1600-h/thumbsdb.jpg?referer=http://www.asktheadmin.com/wp-admin/edit.php?post_status=publish&amp;paged=23');" href="http://www.asktheadmin.com/wp-content/uploads/blogger/_NVxlqh8F-Yo/Ro5ga8_Wh3I/AAAAAAAAAPk/UveM29AN7-U/s1600-h/thumbsdb.jpg"><img id="BLOGGER_PHOTO_ID_5084107045512578930" style="margin: 0px auto 10px; display: block; text-align: center;" src="http://www.asktheadmin.com/wp-content/uploads/blogger/_NVxlqh8F-Yo/Ro5ga8_Wh3I/AAAAAAAAAPk/UveM29AN7-U/s400/thumbsdb.jpg" border="0" alt="" /></a></p>
<p><strong>Prevent the creation of Thumbs.db in Windows: </strong></p>
<div><strong><span style="color: #3366ff;">From “My Computer” click on the “Tools” menu item</span></strong></div>
<div><strong></strong></div>
<div><strong></strong></div>
<p><strong><span style="color: #3366ff;"></p>
<li>Click on “Folder Options”, and the folder options dialog will appear</li>
<li>Click on the “View” tab</li>
<li>Check the “Do not cache thumbnails” option</li>
<p><strong>Prevent the creation of .DS_Store files on Network volumes in MacOS: </strong></p>
<p><strong></strong></p>
<p> </p>
<p> </p>
<p> </p>
<p></span></p>
<ul>
<li style="color: #000000;"><strong><span style="color: #333333;"><strong>Open the Terminal application from the Utilities folder which is nested in the Applications folder</strong></span></strong><strong></strong></li>
</ul>
<p> </p>
<p></strong></p>
<li style="color: #000000;">In the newly opened terminal type (all on one line) defaults write com.apple.desktopservices DSDontWriteNetworkStores true</li>
<li style="color: #000000;">Restart the computer for the change to take effect
<ul>
<li>Begin by first clicking on the Start Button</li>
<li>Then click on Search and then Click on the All files and folders option</li>
<li>In the All or part of the file name: box type in Thumbs.db</li>
<li>Quickly ensure that the Look in: pull-down menu is set to whatever network drives you want to scrub</li>
<li>Now Click on the Search button to search for all Thumbs.db files on your system</li>
<li>In the All or part of the file name box type in Thumbs.db</li>
<li>After the Search completes, click on the word Edit contained in your top tool bar area<br />
This will pull down a menu for you to now click on Select All</li>
<li>Now Press the Delete key on your keyboard to delete all the Thumbs.db files on your system</li>
<li>Then Close the Search Results window to return back to your Windows session</li>
</ul>
</li>
<p><span style="color: #33ccff;"><strong>Now this doesn’t help you deleting the files that already may exist.</strong></span></p>
<p>To accomplish that you may be interested in <a onclick="pageTracker._trackPageview('/outgoing/www.zeroonetwenty.com/blueharvest/?referer=http://www.asktheadmin.com/wp-admin/edit.php?post_status=publish&amp;paged=23');" href="http://www.zeroonetwenty.com/blueharvest/">BlueHarvest</a> to scrub your network of .DS_Store files and you can do a simple find and replace on Windows.</p>
<p><span style="color: #33ccff;">Find and Replace:</span></p>
<p>To delete all the existing Thumbs.db files on your computer you just:</p>
<p> </p>
<p><strong><span style="color: #cc0000;">For those of you who are scared to delete system files, the Thumbs.db and .DS_Store files are strictly cosmetic on network volumes and will have almost no impact on pretty much anything! Do you use them for something? Let us know in the comments.<br />
</span></strong><br />
<strong><span style="color: #3366ff;"><strong></strong></span></strong><a href="http://www.asktheadmin.com/">_TheOCAdmiN_</a></p>
<p> </p>
<p></span></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/07/a-few-words-from-the-admin.html" rel="bookmark" title="Permanent Link: A few words from the Admin&#8230;" >A few words from the Admin&#8230;</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/07/question-i-have-verizon-blackberry-but.html" rel="bookmark" title="Permanent Link: Question: I have a Verizon blackberry but i want cingular att&#8217;s interface. Is it possible?" >Question: I have a Verizon blackberry but i want cingular att&#8217;s interface. Is it possible?</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2007/08/question-logmein-returns-error-access.html" rel="bookmark" title="Permanent Link: My Logmein returns the error Access is denied (5)&#8230; HELP I need my files!" >My Logmein returns the error Access is denied (5)&#8230; HELP I need my files!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2009/02/pismo-file-mount-audit-package-what-a-name.html" rel="bookmark" title="Permanent Link: Pismo File mount audit package&#8230; What a name!" >Pismo File mount audit package&#8230; What a name!</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.asktheadmin.com/2008/03/quickly-rename-a-lot-of-files-without-a-3rd-party-program.html" rel="bookmark" title="Permanent Link: Quickly rename A LOT of files without a 3rd party program." >Quickly rename A LOT of files without a 3rd party program.</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div>
<p><a href="http://feedads.g.doubleclick.net/~a/9xlgCxlKUQnXi5r04WRamTYM52s/0/da"><img src="http://feedads.g.doubleclick.net/~a/9xlgCxlKUQnXi5r04WRamTYM52s/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/9xlgCxlKUQnXi5r04WRamTYM52s/1/da"><img src="http://feedads.g.doubleclick.net/~a/9xlgCxlKUQnXi5r04WRamTYM52s/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/askTheAdmin?a=h2svlbGdbXw:zUhPr26OS8c:pKlSPqqiDuU"><img src="http://feeds.feedburner.com/~ff/askTheAdmin?i=h2svlbGdbXw:zUhPr26OS8c:pKlSPqqiDuU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/askTheAdmin/~4/h2svlbGdbXw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.asktheadmin.com/2009/04/what-are-thumbsdb-and-dsstore-files-can.html/feed</wfw:commentRss>
		<feedburner:origLink>http://www.asktheadmin.com/2009/04/what-are-thumbsdb-and-dsstore-files-can.html</feedburner:origLink></item>
	</channel>
</rss>
