<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>dennis&#039; blog &#187; Windows</title>
	<atom:link href="http://dennispiccioni.com/wordpress/archives/tag/windows/feed" rel="self" type="application/rss+xml" />
	<link>http://dennispiccioni.com/wordpress</link>
	<description></description>
	<lastBuildDate>Mon, 19 Apr 2010 22:54:58 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Searching in Windows 7 part 2</title>
		<link>http://dennispiccioni.com/wordpress/archives/366</link>
		<comments>http://dennispiccioni.com/wordpress/archives/366#comments</comments>
		<pubDate>Sat, 20 Feb 2010 17:17:09 +0000</pubDate>
		<dc:creator>Dennis</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://dennispiccioni.com/wordpress/?p=366</guid>
		<description><![CDATA[Since writing Searching in Windows (part one), I have been doing more research on this. All recommendations I have read state not to index full hard disks as I suggested because it will slow down the index too much.

The next logical question is how do I find files that are not indexed?
The Search in Windows [...]]]></description>
			<content:encoded><![CDATA[<p>Since writing <a href="../archives/356">Searching in Windows (part one)</a>, I have been doing more research on this. All recommendations I have read state not to index full hard disks as I suggested because it will slow down the index too much.</p>
<p><br class="spacer_" /></p>
<p>The next logical question is <strong>how do I find files that are not indexed?</strong></p>
<p>The Search in Windows Vista had an Advanced Search button, which would allow you to check the option &#8220;Include non-indexed, hidden, and system files (might be slow)&#8221;. I see no way to do this in Windows 7.</p>
<p><br class="spacer_" /></p>
<p>One way to be able to actually find a DLL file is to go to the folder it is in (in this case c:\Windows\SysWOW64) and then search for it. In other words, <strong>if you know where a file is, Windows can help you find it</strong>. Very helpful. Actually it&#8217;s worse, it will only help you find it <strong>in that folder</strong>.</p>
<p><br class="spacer_" /></p>
<p>It is very weird how difficult it has been to find a solution to this question. I figured out one answer myself:</p>
<pre>dir c:\msxml6.dll /s</pre>
<p><br class="spacer_" /></p>
<p>Has it really come to this? Do I need to revert back to what I last did in DOS to find a file while running the latest Windows operating system in 2010?</p>
<p><br class="spacer_" /></p>
<p>In part 1 of exploring the Windows 7 search I thought it was simply unintuitive but had potential. Unfortunately, after more research, things have turned for the worse. <strong>I can&#8217;t see myself relying on this search for anything</strong>. I will have to resort to Google desktop for file content searches and the command prompt or some other tool for file searches.</p>
]]></content:encoded>
			<wfw:commentRss>http://dennispiccioni.com/wordpress/archives/366/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Searching in Windows 7</title>
		<link>http://dennispiccioni.com/wordpress/archives/356</link>
		<comments>http://dennispiccioni.com/wordpress/archives/356#comments</comments>
		<pubDate>Tue, 16 Feb 2010 01:13:24 +0000</pubDate>
		<dc:creator>Dennis</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://dennispiccioni.com/wordpress/?p=356</guid>
		<description><![CDATA[I have been running Windows 7 Ultimate x64 on one of my two main PCs for about 3-4 weeks now. I like it, it seems like an improvement from Windows XP and Vista (admittedly, I only worked on Vista part-time and only felt the real pain when having to figure out how to do things [...]]]></description>
			<content:encoded><![CDATA[<p>I have been running Windows 7 Ultimate x64 on one of my two main PCs for about 3-4 weeks now. I like it, it seems like an improvement from Windows XP and Vista (admittedly, I only worked on Vista part-time and only felt the real pain when having to figure out how to do things on my wife&#8217;s PC and my test virtual machines).</p>
<p>I really want to like the Windows 7 search. It certainly allows you to perform more, faster, and more thorough searches than previous Windows versions. It is also far more versatile. It&#8217;s just really unintuitive if you want to do anything other than the default. I want to try to use it as much as possible; sometimes new features turn out better than your first impression once you really use them.</p>
<p>Thus far, I ran into a couple of  gotchas, and here are solutions to both:</p>
<ul>
<li><strong>Searching full local drives</strong>
<p>I  typed the file name into the search window for example:</p>
<pre>msxml6.dll</pre>
<p>Out of the box, this returned all documents containing that file name as text, but not the locations  of that file on my PC, such as the Windows system32 folder. The problem was that the predefined  libraries did not include my complete local hard drives, but only some predefined locations, such as My Documents, Music and Videos. As a programmer, I often search for the locations of specific files on my entire local drive(s), just to make sure I don’t have a stray copy in the wrong place.</p>
<p>I added a  new library named All Local Drives and added C: and D: (both local drives) to it. Now the search finds all copies of this file on both local drives, as well as all files that contain the file name as text.</p>
<p>Caution: Your libraries are also used as default locations for the built-in Windows backup, so adding more locations as libraries for searches will also back up those locations by default. You can go in and change locations to back up in Control Panel &gt; Backup and Restore.</p>
<p>I  had expected this to be automatic after adding C: and D: to my indexed locations  in Control Panel &gt; Indexed Locations.</p>
<p>Caution: By default, Windows will exclude some locations such as the Windows and AppData folders from the Index and it&#8217;s quite cumbersome to even figure out what some of these locations are and include them. This really ought to be simpler!</p>
<p><strong>Update: </strong>It turns out that this issue is far worse than I thought. Please see <a href="http://dennispiccioni.com/wordpress/archives/366" target="_blank">Searching in Windows 7 part 2</a> for more.</p>
</li>
<li><strong>Filtering searches</strong>
<p>You  can use a filter to constrain the search results to only display files, and  not files containing the text. For example:</p>
<pre>msxml6.dll type:=.dll
</pre>
<p>Now the search finds all copies of this file on both local drives, but not files that contain the file name as text.</p>
</li>
</ul>
<ul>
<li><strong>Searching  multiple Exchange mailboxes</strong>
<p>I have a personal mailbox on our Exchange server, but I also have access to 2 additional mailboxes that I frequently need to find emails in. Windows 7 does not allow me to search these additional mailboxes.</p>
<p>I had really hoped not having to install Google desktop on my Windows 7 machine (why use two searches if one will do?), but this item is a big deal to me and that was ultimately the solution.</p>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://dennispiccioni.com/wordpress/archives/356/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tip: You don&#8217;t need a screen shot to capture an error message</title>
		<link>http://dennispiccioni.com/wordpress/archives/246</link>
		<comments>http://dennispiccioni.com/wordpress/archives/246#comments</comments>
		<pubDate>Sat, 18 Jul 2009 23:06:35 +0000</pubDate>
		<dc:creator>Dennis</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[errors]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://dennispiccioni.com/wordpress/?p=246</guid>
		<description><![CDATA[I get a lot of screen shots in my email, most of error messages. Don&#8217;t even get me started on Word documents containing 4 MB BMP screen shots and then attached to an email. Or better yet, a Word document with a bunch of screen shots, which are then discussed in the email, so I have [...]]]></description>
			<content:encoded><![CDATA[<p>I get a lot of screen shots in my email, most of error messages. Don&#8217;t even get me started on <a href="http://blogs.msdn.com/oldnewthing/archive/2008/08/19/8877486.aspx" target="_blank">Word documents containing 4 MB BMP screen shots and then attached to an email</a>. Or better yet, a Word document with a bunch of screen shots, which are then discussed in the email, so I have to keep switching back and forth.</p>
<p>The apparently best kept secret of a standard Windows error message is that it can be captured as plain text using Ctrl+C, since at least Windows XP. This is far better for emailing off to report an error, since it produces a far smaller email message, and it allows the recipient to select and copy text.</p>
<p>Typically, when someone sends me an error message screen shot, the first thing I do is to search for the exact error message text in one or more places (e.g. help, KBase, forums, etc.) If the error was sent to me as a screen shot, I now have to type in the whole error message. If it was sent as text, I can simply select and copy it, reducing the time it takes and the likelihood of transcription errors.</p>
<p>This works for any Windows message box. For example, this line of C# code</p>
<pre>MessageBox.Show("This is error # ZAV45273###Y: you forgot to finagle the gizmo", "ERROR");</pre>
<p>Displays this Windows message box:</p>
<p><img src="http://dennispiccioni.com/wordpress/wp-content/uploads/2009/07/WindowsMessageBox.jpg" alt="" width="332" height="107" /></p>
<p>When this message box has the focus, you can press Ctrl+C to copy it, resulting in this text:</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
 ERROR<br />
 &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
 This is error # ZAV45273###Y: you forgot to finagle the gizmo<br />
 &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
 OK   <br />
 &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>Now, if someone sends me the text version of the above error, it&#8217;s really easy to copy the complex error number and be sure I got it right.</p>
]]></content:encoded>
			<wfw:commentRss>http://dennispiccioni.com/wordpress/archives/246/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Vista Backup and Restore Center: not ready for prime time</title>
		<link>http://dennispiccioni.com/wordpress/archives/174</link>
		<comments>http://dennispiccioni.com/wordpress/archives/174#comments</comments>
		<pubDate>Sat, 27 Jun 2009 00:49:12 +0000</pubDate>
		<dc:creator>Dennis</dc:creator>
				<category><![CDATA[backup]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[hard drive]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://dennispiccioni.com/wordpress/?p=174</guid>
		<description><![CDATA[As you may know, I take backups seriously. I have been trying to find a reliable drive image backup solution for Windows Vista. Since Vista comes with a built-in backup offering, I decided to try it. While it works, there are still too many limitations that commercial (and even some free) backup products simply don&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>As you may know, I <a href="http://dennispiccioni.com/wordpress/archives/1" target="_blank">take backups seriously</a>. I have been trying to find a reliable drive image backup solution for Windows Vista. Since Vista comes with a built-in backup offering, I decided to try it. While it works, there are still too many limitations that commercial (and even some free) backup products simply don&#8217;t have.</p>
<h4>Issues</h4>
<ul>
<li><strong>Limited availability</strong><br />
The &#8216;backup your entire computer&#8217; (drive image) option is only available on premium versions of Vista. Since <a href="http://dennispiccioni.com/wordpress/archives/1" target="_blank">I don&#8217;t consider anything less than a full drive backup a &#8220;real&#8221; backup</a>, Vista Home users need another solution anyway. </li>
</ul>
<ul>
<li><strong>No compression<br />
</strong>Believe me, with the size of Vista image backups, you want compression! Of course, I didn&#8217;t do tests of the same drive type and free space on XP vs. Vista machines, but my rough guesstimate is that Vista drive image backups of drives containing the operating system are 8 times larger than similar XP versions.</li>
</ul>
<ul>
<li><strong>No differential backups<br />
</strong>Again, Vista backups take up a lot of space, so you really want to be able to save space via differential backups.</li>
</ul>
<ul>
<li><strong>No backup scheduling<br />
</strong>Scheduled backups are only available for data backups, not drive backups.</li>
</ul>
<ul>
<li><strong>Cannot mount drive images<br />
</strong>The commercial products available allow you to mount a drive image backups like a drive, browse it and restore individual files. Ghost has had this feature for many years. This allows you to use drive image backups as data backups, as well.</li>
</ul>
<ul>
<li><strong>You can only store one backup image per drive<br />
</strong>Vista backup stores drive image backups in a folder named WindowsImageBackup on the drive being backed up to, which limits backups to one per drive. I have not found any way to browse for folders, create subfolders, etc. to allow storing multiple backup sets on the same disk. You can get around this by renaming the folder/files, but that makes automation hard and increases another maintenance step.</li>
</ul>
<ul>
<li><strong>Cannot validate backup images<br />
</strong>The other products like this I have used allow you to validate a drive image backup to check it for errors and verify it will restore properly. I could not find this feature in the Vista backup program. </li>
</ul>
<h4>Backup products I&#8217;ve tried</h4>
<ul>
<li><strong>Norton Ghost 14.0 <br />
</strong>This was the first product I tried, simply because pre-Vista, I used Ghost successfully for many years. I still use Ghost 9 for my Windows XP PCs and we used Ghost exclusively for our in-house test PCs for many years. It just always worked. I didn&#8217;t have such luck with Ghost 14.0, it didn&#8217;t work for either of my 2 Vista PCs:<br />
- Vista Home Premium x64, HP, AMD Phenom 9550 quad core<br />
- Vista Business Ultimate x32, Dell, Intel Core Duo E8200A Symantec support technician remotely controlled one of the Vista PCs remotely for 2 full work days and couldn&#8217;t come up with any reason for the failure. At this point, I figured I had wasted enough time with this product and went on to try something else.</p>
<p><a href="http://www.symantec.com" target="_blank">Symantec</a>, $49</p>
</li>
</ul>
<ul>
<li><strong>Drive Snapshot 1.3<br />
</strong>Drive SnapShot was recommended by our network administrator. It&#8217;s extremely simple to install and use (you can actually just use a single .exe file without any installation). I was also happy with the support Tom Ehlert, the software&#8217;s author provided in figuring out how to allow me to boot from a boot disk and see the hard drives on the HP Vista x64 PC (set the SATA BIOS setting from the default RAID to IDE/legacy mode).</p>
<p>I&#8217;ve done numerous backups using the 30 day eval version of Drive SnapShot, verified them and restored from them. It just works!</p>
<p><a href="http://www.drivesnapshot.de" target="_blank">DriveSnapshot.de</a>, $39</p>
</li>
</ul>
<ul>
<li><strong>Acronis TrueImage 2009 Home<br />
</strong>I mostly tried TrueImage because anyplace I checked about what other people use and recommend, such as <a href="http://serverfault.com" target="_blank">Server Fault</a>, everyone spoke very highly of it, and boy were they right. This product just worked flawlessly from day one. The restore disk just figured out how to access the hard drive on the Vista x64 box without any messing around, the interface is really well done and easy to use. TrueImage allowed me to set up a scheduled incremental backup with compression very quickly and easily.</p>
<p>It also comes with a truckload of extra features.I&#8217;ve done numerous backups using the 15 day eval version of TrueImage, verified them and restored from them. It also just works!</p>
<p><a href="http://www.acronis.com/" target="_blank">Acronis</a>, $49</p>
</li>
</ul>
<p style="padding-left: 30px;">There are lots of other products out there for this purpose, both commercial and free. I did not try all of them, nor do I intend to. My goal was to spend as little time as possible to find a reliable and reasonably priced backup solution. </p>
<h4>Bottom line</h4>
<p>The commercial drive image products I tested are worth every penny of the $39-$49 retail price that single non-server PC versions of these products typically cost. I chose Acronis TrueImage 2009 Home for my Vista backups. Being able to simply connect an external drive (or even a second internal drive) and use true &#8221;set it and forget it&#8221; mode backup with scheduled incremental backups is just wonderful and <strong>I know I won&#8217;t forget to backup anything</strong>.</p>
]]></content:encoded>
			<wfw:commentRss>http://dennispiccioni.com/wordpress/archives/174/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe, stop hogging my resources!</title>
		<link>http://dennispiccioni.com/wordpress/archives/32</link>
		<comments>http://dennispiccioni.com/wordpress/archives/32#comments</comments>
		<pubDate>Sun, 14 Jun 2009 18:22:14 +0000</pubDate>
		<dc:creator>Dennis</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://dennispiccioni.com/wordpress/?p=32</guid>
		<description><![CDATA[This post isn&#8217;t original in many ways, but this issue continues to tick me off. The sheer fact that this has been going on unabated for years confirms that more of us need to speak up about it.
So the other day, I installed the latest Adobe Reader 8 patch, then pretty much forgot about it. [...]]]></description>
			<content:encoded><![CDATA[<p>This post isn&#8217;t original in many ways, but this issue continues to tick me off. The sheer fact that this has been going on unabated for years confirms that more of us need to speak up about it.</p>
<p>So the other day, I installed the latest Adobe Reader 8 patch, then pretty much forgot about it. Today I rebooted my PC, and there is an Adobe Reader 8 icon on my desktop. I immediately noticed this, because, with the exception of the Recycle Bin, I have no icons on my desktop. This reminded me to check my Windows Registry. Sure enough, in my Registry, I found this:</p>
<pre>[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run]
"Adobe Reader Speed Launcher"="\"C:\\Program Files\\Adobe
    \\Reader 8.0\\Reader\\Reader_sl.exe\""</pre>
<p>So what the Adobe Reader 8 patch installation did to <strong>my computer</strong> is:</p>
<ul>
<li>Wrote a Speed Launcher entry into the Run key of my Registry, which makes this program launch on start-up</li>
<li>Placed an icon to Adobe Reader 8 on my desktop</li>
</ul>
<p>It did all of this <strong>without asking me</strong>!</p>
<p>The Speed Launcher Registry entry is the kind of thing that gives Windows a bad name. While there are plenty of legitimate issues with Windows, one of the most often heard, and even used in Mac commercials, is that Windows slows down over time, both the boot-up time and performance while running programs. A lot of this is due to this type of behavior by companies like Adobe. Adobe Reader places a program into the Run key of the Registry so that part of the reader application gets loaded into memory when Windows boots up. The reasoning behind this is that less of the application has to be loaded up when a user actually opens a PDF document.</p>
<p>This practice is <strong>entirely self-serving</strong> of Adobe. Even if I just read one PDF document a month, part of Adobe Reader slows down my computer&#8217;s boot time and hogs my computer&#8217;s RAM 100% of the time I am running Windows. In other words, Adobe thinks that the Adobe Reader software is so important, so crucial to my everyday computing needs that part of it has to be running at all times, consuming some of the finite resources on my computer, no matter how detrimental this may be to the performance for anything else.</p>
<p>The desktop icon is mostly annoying, just another symptom of the audacity of Adobe to do whatever the heck it pleases to <strong>my computer</strong>. Also, why do I even need a desktop icon, or the Programs menu icon, for Adobe Reader? It&#8217;s not like I ever open Adobe Reader directly; it opens when I open a PDF document, most likely on some web site. This is clearly just another way for Adobe to put its logo in my face.</p>
<p>It would be one thing of the installation program to ask me if it was ok to do these things and allow me to make the decision, but to just do this behind my back is simply wrong! It&#8217;s also pretty underhanded to do this again during each patch installation, not just during the original program installation. This way, it forces me to clean up my Registry even more often.</p>
<p>I happened to pick on Adobe because it&#8217;s the most <strong>blatant and frequent offender</strong>, which uses these tactics with many of its products, but there are plenty of others:</p>
<ul>
<li>Microsoft Office &#8216;Microsoft Utility Startup&#8217;</li>
<li>Apple QuickTime (qttask.exe)</li>
</ul>
<p>Sadly, the list goes on and on. Together, if left unchecked, all of these programs would take up more and more time and resources on <strong>my computer</strong> until there aren&#8217;t enough left for the things <strong>I</strong> actually want to do.</p>
<p>Thanks Adobe!</p>
<p><br class="spacer_" /></p>
<h4>Update (July 1, 2009)</h4>
<p>It has been only two and a half weeks since I wrote this post. Today, Adobe Reader asked to install yet another patch and guess what was back in my Registry again? Looks like it&#8217;s time to seriously start looking for another PDF reader.</p>
<p><br class="spacer_" /></p>
<h4>Update (February 6, 2010)</h4>
<p>I have been using <a href="http://www.foxitsoftware.com/pdf/reader/" target="_blank">FoxIt Reader</a> for a few months now and really like it. Thanks Kalpesh!</p>
<p>Of course, the stated problem remains, Adobe Reader is just one of many offenders.</p>
]]></content:encoded>
			<wfw:commentRss>http://dennispiccioni.com/wordpress/archives/32/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
