<?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>FettesPS &#187; Windows</title>
	<atom:link href="http://www.fettesps.com/category/windows/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fettesps.com</link>
	<description>Fettes Programming Solutions</description>
	<lastBuildDate>Sun, 22 Jan 2012 18:21:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>The system administrator has set policies to prevent this installation</title>
		<link>http://www.fettesps.com/the-system-administrator-has-set-policies-to-prevent-this-installation/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=the-system-administrator-has-set-policies-to-prevent-this-installation</link>
		<comments>http://www.fettesps.com/the-system-administrator-has-set-policies-to-prevent-this-installation/#comments</comments>
		<pubDate>Sun, 11 Dec 2011 20:17:49 +0000</pubDate>
		<dc:creator>FettesPS</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[installer]]></category>
		<category><![CDATA[msi]]></category>
		<category><![CDATA[nsis]]></category>

		<guid isPermaLink="false">http://www.fettesps.com/?p=1740</guid>
		<description><![CDATA[While I was installing Arduino for Visual Studio I encountered this annoying message: There are a few ways to fix it, including deactivating User Account Control (UAC) or logging in as the Administrator user (and not a regular user with Administrator privileges), but the method I chose to handle it was the following. I chose [...]]]></description>
			<content:encoded><![CDATA[<p>While I was installing Arduino for Visual Studio I encountered this annoying message:</p>
<p><a href="http://www.fettesps.com/wp-content/uploads/2011/12/the-system-administrator-has-set-policies-to-prevent-this-installation.jpg"><img src="http://www.fettesps.com/wp-content/uploads/2011/12/the-system-administrator-has-set-policies-to-prevent-this-installation-300x130.jpg" alt="" title="the-system-administrator-has-set-policies-to-prevent-this-installation" width="300" height="130" class="alignright size-medium wp-image-1745" /></a></p>
<p>There are a few ways to fix it, including deactivating User Account Control (UAC) or logging in as the Administrator user (and not a regular user with Administrator privileges), but the method I chose to handle it was the following.  I chose this method because it didn&#8217;t not open any needless security risks such as turning off UAC and I didn&#8217;t feel like logging into another user.</p>
<ol>
<li>Open <b>Administrative Tools</b></li>
<li>Open <b>Local Security Settings</b></li>
<li>Click on <b>Software Restriction Policies</b></li>
<li>If there are no software restrictions defined, <b>right click</b> on Restriction Policies and<br />
select <b>New Software Restriction Policy</b></li>
<li>Double click on the new enforcement and select <b>All Users Except Local Administrators</b></li>
<li>Click <b>OK</b></li>
<li>Reboot your computer and run the installer again</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.fettesps.com/the-system-administrator-has-set-policies-to-prevent-this-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Download MSINET.OCX</title>
		<link>http://www.fettesps.com/download-msinet-ocx/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=download-msinet-ocx</link>
		<comments>http://www.fettesps.com/download-msinet-ocx/#comments</comments>
		<pubDate>Fri, 16 Sep 2011 22:07:33 +0000</pubDate>
		<dc:creator>FettesPS</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[components]]></category>
		<category><![CDATA[DLLs]]></category>
		<category><![CDATA[OCX]]></category>
		<category><![CDATA[vb6]]></category>

		<guid isPermaLink="false">http://www.fettesps.com/?p=1539</guid>
		<description><![CDATA[Have an old Visual Basic 6 legacy application that is demanding MSINET.OCX in order to run?. Here is a copy of Microsoft&#8217;s redistributable run time file for VB6: Download MSINET.OCX After you have downloaded the file, you can either place it in your C:\Windows\System32 (or C:\Windows\SysWow64 on an x64 system) and register it there or [...]]]></description>
			<content:encoded><![CDATA[<p>Have an old Visual Basic 6 legacy application that is demanding MSINET.OCX in order to run?.  Here is a copy of Microsoft&#8217;s redistributable run time file for VB6:</p>
<p><a href="http://www.fettesps.com/files/MSINET.OCX" style="font-size:larger;color:white;font-weight:bold;">Download MSINET.OCX</a></p>
<p>After you have downloaded the file, you can either place it in your C:\Windows\System32 (or C:\Windows\SysWow64 on an x64 system) and register it there or you may want to put it directly into your application&#8217;s directory and create a .local file so that the application does not look beyond it&#8217;s own folder for the file.</p>
<p>To register the file, open up command prompt (Win+R then cmd) and enter:</p>
<pre class="brush: plain; title: ; notranslate">regsvr32 &quot;C:\Windows\System32\MSINET.OCX&quot;</pre>
<p>If you are going to use the .local file, just create an empty text file in that directory with the same name as your application but a .local extension appended.  So for example if you had a file called &#8220;MyApp.exe&#8221; you would create an empty text file called &#8220;MyApp.exe.local&#8221;  Make sure if you have hidden extensions that it is not secretely adding &#8220;.txt&#8221; to the end of the file name.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fettesps.com/download-msinet-ocx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Download MSWINSCK.OCX</title>
		<link>http://www.fettesps.com/download-mswinsck-ocx/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=download-mswinsck-ocx</link>
		<comments>http://www.fettesps.com/download-mswinsck-ocx/#comments</comments>
		<pubDate>Thu, 15 Sep 2011 23:55:53 +0000</pubDate>
		<dc:creator>FettesPS</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[components]]></category>
		<category><![CDATA[DLLs]]></category>
		<category><![CDATA[OCX]]></category>

		<guid isPermaLink="false">http://www.fettesps.com/?p=1535</guid>
		<description><![CDATA[Anyone who still works with Visual Basic 6 for legacy applications will inevitably run into an issue where a customer&#8217;s computer needs MSWINSOCK.OCX in order to run their application. You could install the entire VB6 runtime files package or you may chose to redistribute this one file with your software. In any case, I wanted [...]]]></description>
			<content:encoded><![CDATA[<p>Anyone who still works with Visual Basic 6 for legacy applications will inevitably run into an issue where a customer&#8217;s computer needs MSWINSOCK.OCX in order to run their application.  You could install the entire VB6 runtime files package or you may  chose to redistribute this one file with your software.  In any case, I wanted to make sure this file was available for those who need it.</p>
<p><a href="http://www.fettesps.com/files/MSWINSCK.OCX" style="font-size:larger;color:white;font-weight:bold;">Download MSWINSCK.OCX</a></p>
<p>After you have downloaded the file, you can either place it in your C:\Windows\System32 (or C:\Windows\SysWow64 on an x64 system) and register it there or you may want to put it directly into your application&#8217;s directory and create a .local file so that the application does not look beyond it&#8217;s own folder for the file.</p>
<p>To register the file, open up command prompt (Win+R then cmd) and enter:</p>
<pre class="brush: plain; title: ; notranslate">regsvr32 &quot;C:\Windows\System32\MSWINSCK.OCX&quot;</pre>
<p>If you are going to use the .local file, just create an empty text file in that directory with the same name as your application but a .local extension appended.  So for example if you had a file called &#8220;MyApp.exe&#8221; you would create an empty text file called &#8220;MyApp.exe.local&#8221;  Make sure if you have hidden extensions that it is not secretely adding &#8220;.txt&#8221; to the end of the file name.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fettesps.com/download-mswinsck-ocx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fixing IIS&#8217;s &#8220;Failed to start monitoring changes to [...] because access is denied&#8221; Error</title>
		<link>http://www.fettesps.com/fixing-iiss-failed-to-start-monitoring-changes-to-because-access-is-denied-error/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=fixing-iiss-failed-to-start-monitoring-changes-to-because-access-is-denied-error</link>
		<comments>http://www.fettesps.com/fixing-iiss-failed-to-start-monitoring-changes-to-because-access-is-denied-error/#comments</comments>
		<pubDate>Thu, 01 Sep 2011 01:01:51 +0000</pubDate>
		<dc:creator>FettesPS</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[asp]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[iis]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[servers]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://www.fettesps.com/?p=1512</guid>
		<description><![CDATA[Ran into a weird error today. I had IIS serving pages on my devel machine and after working out the kinks in my code I went to FTP them to the production server. Since that machine didn&#8217;t have FTP I shared the folder and uploaded them from another machine that was on my desk. After [...]]]></description>
			<content:encoded><![CDATA[<p>Ran into a weird error today.  I had IIS serving pages on my devel machine and after working out the kinks in my code I went to FTP them to the production server.  Since that machine didn&#8217;t have FTP I shared the folder and uploaded them from another machine that was on my desk.  After that I went to reload the page and got the following error:</p>
<pre class="brush: plain; title: ; notranslate">Failed to start monitoring changes to [...] because access is denied </pre>
<p>I figured it was because I had shared the page and IIS must not like that, so I unshared it expecting that to resolve the issue &#8212; it did not.  From there I dug through many pages of Google results all telling me to make sure the files weren&#8217;t marked Read Only and to make sure the ASPNET user had permissions.  Interestingly enough such a user did not exist on my machine, possibly due to a different version of IIS or the fact that I do not have Visual Studio.net installed on that system.</p>
<p>It wasn&#8217;t until I compared permissions with another web folder that still worked that I spotted the difference.  One had permission granted access to &#8220;Authenticated Users&#8221; and given it Modify permissions.  After following these steps I was once again able to serve pages:</p>
<ol>
<li>Right Click the Virtual Directory in IIS</li>
<li>Click &#8220;Edit Permissions&#8230;&#8221;</li>
<li>Select the Security Tab</li>
<li>Click the Edit button</li>
<li>Click the Add button</li>
<li>Type &#8220;Authenticated  Users&#8221; †</li>
<li>Click the Check Names button to ensure that it recognizes the name</li>
<li>Click OK</li>
<li>Ensure the Modify checkbox is checked</li>
<li>Click OK until all remaining popup windows are closed</li>
</ol>
<p>† If a name is not recognized it will pop up a &#8220;Name Not Found&#8221; box, whereas if it is recognized it will prefix it with your computer name and underline it (e.g.: <u>fettesps\username</u>).<br />
If Authenicated Users is not recognized as a user, try ASPNET instead, which is what most guides suggested (but did not work for me).</p>
<p>After making these changes you should now be able to access your site again.  If not, please consult <a href="http://support.microsoft.com/kb/317955">Microsoft&#8217;s Knowledge Base</a> article for more possible solutions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fettesps.com/fixing-iiss-failed-to-start-monitoring-changes-to-because-access-is-denied-error/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>iTunes &#8211; Deauthorize Computers</title>
		<link>http://www.fettesps.com/itunes-deauthorize-computers/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=itunes-deauthorize-computers</link>
		<comments>http://www.fettesps.com/itunes-deauthorize-computers/#comments</comments>
		<pubDate>Tue, 03 May 2011 03:21:35 +0000</pubDate>
		<dc:creator>FettesPS</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[itunes deauthorize computer]]></category>

		<guid isPermaLink="false">http://www.fettesps.com/?p=1432</guid>
		<description><![CDATA[Somehow I managed to use up all of my authorizations for iTunes, and I couldn&#8217;t authorize my main PC to transfer my iTunes purchases after reinstalling Windows 7. Since one of the authorizations would have been from my previous OS install I had no way to deauthorize it directly through iTunes. It turns out, when [...]]]></description>
			<content:encoded><![CDATA[<p>Somehow I managed to use up all of my authorizations for iTunes, and I couldn&#8217;t authorize my main PC to transfer my iTunes purchases after reinstalling Windows 7.  Since one of the authorizations would have been from my previous OS install I had no way to deauthorize it directly through iTunes.  It turns out, when you find yourself in this situation, that the only option is to deauthorize all 5 computers and then manually reauthorize them the next time you need to use them.  Why do we even bother authorizing in the first place?</p>
<ol>
<li>Launch <strong>iTunes</strong></li>
<li>On the left menu go to <strong>iTunes Store</strong></li>
<li>Click <strong>Sign In</strong> on the top right and enter your account information</li>
<li>Again, click the <em>Account</em> button (<strong>your e-mail address</strong> appears as the button), re-enter your password</li>
<li>Click <strong>View Account</strong></li>
<li>Click <strong>Deauthorize All</strong></li>
</ol>
<p>Now you can reauthorize your account and finally get around to transferring those purchases or downloading some podcats on your iPhone.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fettesps.com/itunes-deauthorize-computers/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Windows has Blocked Access to These Files to Help Protect Your Computer</title>
		<link>http://www.fettesps.com/windows-has-blocked-access-to-these-files-to-help-protect-your-computer/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=windows-has-blocked-access-to-these-files-to-help-protect-your-computer</link>
		<comments>http://www.fettesps.com/windows-has-blocked-access-to-these-files-to-help-protect-your-computer/#comments</comments>
		<pubDate>Wed, 10 Nov 2010 05:05:12 +0000</pubDate>
		<dc:creator>FettesPS</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[windows blocked access]]></category>
		<category><![CDATA[windows error message]]></category>
		<category><![CDATA[Windows has Blocked Access to These Files to Help Protect Your Computer]]></category>
		<category><![CDATA[windows server]]></category>
		<category><![CDATA[windows unblock application]]></category>

		<guid isPermaLink="false">http://www.fettesps.com/?p=1057</guid>
		<description><![CDATA[Despite spending 10-16 hours a day in Windows it some how manages to surprise me every now and then. I recently downloaded some software onto a box running Windows Server 2003 and when I went to extract the zip file I got the following error: Puzzled, I tried again, and got the same error. I [...]]]></description>
			<content:encoded><![CDATA[<p>Despite spending 10-16 hours a day in Windows it some how manages to surprise me every now and then.  I recently downloaded some software onto a box running Windows Server 2003 and when I went to extract the zip file I got the following error:</p>
<pre class="brush: plain; title: ; notranslate">Windows has blocked access to these files to help protect your computer</pre>
<p><a href="http://www.fettesps.com/wp-content/uploads/2010/11/unblock.png"><img src="http://www.fettesps.com/wp-content/uploads/2010/11/unblock-220x300.png" alt="" title="unblock" width="220" height="300" class="alignright size-medium wp-image-1062" /></a></p>
<p>Puzzled, I tried again, and got the same error.  I knew it wasn&#8217;t a virus scanner blocking it, since the zip I was trying to extract was the virus scanning utility that I was trying to install.  I found this very ironic, despite how frustrating it was.  After a few minutes of research I discovered that it was a very simple fix.  </p>
<ul>
<li>Right Click the file in question</li>
<li>Click Properties</li>
<li>Click Unblock</li>
</ul>
<p>Problem solved!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fettesps.com/windows-has-blocked-access-to-these-files-to-help-protect-your-computer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Repairing Windows 7 Boot</title>
		<link>http://www.fettesps.com/repairing-windows-7-boot/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=repairing-windows-7-boot</link>
		<comments>http://www.fettesps.com/repairing-windows-7-boot/#comments</comments>
		<pubDate>Fri, 22 Oct 2010 13:02:00 +0000</pubDate>
		<dc:creator>FettesPS</dc:creator>
				<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[boot disc]]></category>
		<category><![CDATA[boot windows 7]]></category>
		<category><![CDATA[recover windows 7]]></category>
		<category><![CDATA[recovery disc]]></category>
		<category><![CDATA[repair disc]]></category>
		<category><![CDATA[windows 7 boot disc]]></category>

		<guid isPermaLink="false">http://www.fettesps.com/?p=1026</guid>
		<description><![CDATA[Having problems with booting Windows 7 can be a nightmare for some to solve. No one wants to suffer from problems related to being unable to boot up. Yet, errors do occur which can create this nightmarish scenario. Rather than having to scrap your Windows install and start fresh, Windows provides the option for creating [...]]]></description>
			<content:encoded><![CDATA[<p>Having problems with booting Windows 7 can be a nightmare for some to solve. No one wants to suffer from problems related to being unable to boot up. Yet, errors do occur which can create this nightmarish scenario. Rather than having to scrap your Windows install and start fresh, Windows provides the option for creating a system repair disc that can eliminate all the aforementioned problems. Here is how the process works:</p>
<p>First and foremost, insert a blank DVD into the computer&#8217;s drive as this will be the disc used for your repairs. Click on the Start icon and type the words &#8220;system repair disc&#8221; into the appropriate search box. This will immediately open up a new window. Once the window is opened, you will need to select the proper drive and also select the Create Disc function. Once you do this, the process will start automatically and the disc will be formatted so that it may be used as a boot disc.</p>
<p>Should you find yourself unable to boot Windows 7, you will now have the ability to boot off the System Repair Disc and either repair it or if you are unable to do so you will at least be able to backup your files before installing a fresh copy of Windows 7. Yes, it is as simple as that!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fettesps.com/repairing-windows-7-boot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Include My Computer on your Windows 7 Task Bar</title>
		<link>http://www.fettesps.com/how-to-include-my-computer-on-your-windows-7-task-bar/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-include-my-computer-on-your-windows-7-task-bar</link>
		<comments>http://www.fettesps.com/how-to-include-my-computer-on-your-windows-7-task-bar/#comments</comments>
		<pubDate>Mon, 18 Oct 2010 13:06:43 +0000</pubDate>
		<dc:creator>FettesPS</dc:creator>
				<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[my computer]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.fettesps.com/?p=1024</guid>
		<description><![CDATA[No one wants to have to minimize all their windows so they can hunt around their desktop for the My Computer link. Thankfully, you can easily include My Computer as a menu on your taskbar so you can quickly jump to any of your drives. Adding a My Computer to the task bar is extremely [...]]]></description>
			<content:encoded><![CDATA[<p>No one wants to have to minimize all their windows so they can hunt around their desktop for the <strong>My Computer</strong> link. Thankfully, you can easily include My Computer as a menu on your taskbar so you can quickly jump to any of your drives. Adding a <strong>My Computer</strong> to the task bar is extremely easy and here is how you do it:</p>
<p>Go to the task bar and right click on it. This will reveal several of options and you will want to select the Tool Bar menu.  Once you do this, you will have the option of clicking on New Tool Bar. Upon doing this, the next step will entail locating the particular folder you are most interested in. Obviously, in this case, you would be looking towards the My Computer icon. When you find it, select it and then click on the Select Folder option.</p>
<p>As soon as you do this, you will immediate see the My Computer folder directly in the task bar. As soon as it is in the taskbar, you can access with little more than a simple click. From this, you can then access all the many different subfolders in your computer with relative ease. Why fish around for your <strong>My Computer</strong> folder when you can just locate it on the task bar? Again, the process is easy and worth taking the time out to perform.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fettesps.com/how-to-include-my-computer-on-your-windows-7-task-bar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Vista &#8211; Enable Telnet</title>
		<link>http://www.fettesps.com/windows-vista-enable-telnet/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=windows-vista-enable-telnet</link>
		<comments>http://www.fettesps.com/windows-vista-enable-telnet/#comments</comments>
		<pubDate>Wed, 13 Oct 2010 15:03:29 +0000</pubDate>
		<dc:creator>FettesPS</dc:creator>
				<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[programs and features]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[vista telnet]]></category>
		<category><![CDATA[windows vista enable telnet]]></category>
		<category><![CDATA[windows vista telnet]]></category>

		<guid isPermaLink="false">http://www.fettesps.com/?p=1019</guid>
		<description><![CDATA[It is quite rare that I use Telnet these days, so it took a long time for me to notice that by default it was not packaged with Windows Vista. This is also the case for Windows 7.   Telnet is very insecure and whenever you have the choice you should always use SSH, so [...]]]></description>
			<content:encoded><![CDATA[<p>It is quite rare that I use Telnet these days, so it took a long time for me to notice that by default it was not packaged with Windows Vista. This is also the case for <a href="http://www.fettesps.com/windows-7-enable-telnet">Windows 7</a>.   Telnet is very insecure and whenever you have the choice you should always use SSH, so more than likely this was an attempt to make Windows more secure by default.</p>
<p>With that being said, you can quickly re-enable Telnet by following these steps:</p>
<div>
<ol>
<li>Start</li>
<li>Control Panel</li>
<li>Programs And Features</li>
<li>Turn Windows features on or off</li>
<li>Check Telnet Client</li>
<li>Hit OK</li>
</ol>
<p>After that you can start Telnet via Command Prompt or through the Start Menu.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.fettesps.com/windows-vista-enable-telnet/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Enable or Disable Aero Peek in Windows 7</title>
		<link>http://www.fettesps.com/how-to-enable-or-disable-aero-peek-in-windows-7/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-enable-or-disable-aero-peek-in-windows-7</link>
		<comments>http://www.fettesps.com/how-to-enable-or-disable-aero-peek-in-windows-7/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 19:33:46 +0000</pubDate>
		<dc:creator>FettesPS</dc:creator>
				<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[aero]]></category>
		<category><![CDATA[aero peek]]></category>
		<category><![CDATA[desktop preview]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[vista]]></category>
		<category><![CDATA[win7]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.fettesps.com/?p=724</guid>
		<description><![CDATA[Aero Peek, which is also known as Desktop Preview, is a new feature in Windows 7 that allows you to quickly hide all the windows open and view your desktop. It can be activated by clicking the Show Desktop icon at the far right of the superbar or by holding the windows key and hitting [...]]]></description>
			<content:encoded><![CDATA[<p>Aero Peek, which is also known as Desktop Preview, is a new feature in Windows 7 that allows you to quickly hide all the windows open and view your desktop.  It can be activated by clicking the <strong>Show Desktop</strong> icon at the far right of the superbar or by holding the windows key and hitting space.</p>
<p><a href="http://www.fettesps.com/wp-content/uploads/2010/01/peek.png"><img src="http://www.fettesps.com/wp-content/uploads/2010/01/peek-300x225.png" alt="Aero Peek" title="Aero Peek" width="300" height="225" class="alignnone size-medium wp-image-815" style="float:left; margin: 5px 15px 5px 0px;" /></a>Desktop Preview is a new feature in Windows 7 which is otherwise also known as AeroPeak (Desktop Preview is a feature enabled by Aero Peek desktop enhancement function). Desktop Preview allows user to temporarily minimize all open windows and make open windows transparent in order to preview what is on desktop when user place the mouse pointer to mouse over the “Show Desktop” bar on the far right end of the taskbar.</p>
<p>Illustration above shows the effect of Desktop Preview, where user mouse over the Show Desktop (without actually clicking on it) on the far end of the Windows Taskbar.</p>
<ul>
<li>Right click on the Start button and click on Properties</li>
<li>Select the Taskbar tab</li>
<li>Uncheck the Use Desktop Preview checkbox</li>
<li>Click OK</li>
</ul>
<p>Desktop Preview is now disabled.  If you would like to re-enable it, simply follow the same steps again making sure to check the Desktop Preview option this time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fettesps.com/how-to-enable-or-disable-aero-peek-in-windows-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

