<?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>..::\\ www.christiano.ch //::..</title>
	<atom:link href="http://www.christiano.ch/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.christiano.ch/wordpress</link>
	<description>christiano.ch blog - personal knowledge base, news, memoires et cetera</description>
	<lastBuildDate>Wed, 28 Mar 2012 12:57:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<meta xmlns="http://www.w3.org/1999/xhtml" name="robots" content="noindex,follow" />
		<item>
		<title>Office 365&#8211;Change the password expiration policy</title>
		<link>http://www.christiano.ch/wordpress/2012/03/28/office-365change-the-password-expiration-policy/</link>
		<comments>http://www.christiano.ch/wordpress/2012/03/28/office-365change-the-password-expiration-policy/#comments</comments>
		<pubDate>Wed, 28 Mar 2012 12:56:12 +0000</pubDate>
		<dc:creator>christian</dc:creator>
				<category><![CDATA[Office 365]]></category>
		<category><![CDATA[MsOnline]]></category>
		<category><![CDATA[Password Policy]]></category>
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://www.christiano.ch/wordpress/?p=1310</guid>
		<description><![CDATA[The default password expiration policy of Office 365 is set to 90 days. That means that users have to change their password every 90 days. I think basically this is a good and secure policy but on the other side, &#8230; <a href="http://www.christiano.ch/wordpress/2012/03/28/office-365change-the-password-expiration-policy/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The default password expiration policy of <a href="http://www.office365.com/">Office 365</a> is set to 90 days. That means that users have to change their password every 90 days. I think basically this is a good and secure policy but on the other side, it can be annoying and maybe your company has an other security policy or for some other reason you have to deactivate/change this.     <br />We can change this setting through PowerShell with the Microsoft Online PowerShell Module.</p>
<p>&#160;</p>
<p><span id="more-1310"></span>
<ol>
<li>First connect to Office 365 <a title="Connect to Office 365 provider using PowerShell" href="http://www.christiano.ch/wordpress/2012/03/28/office-365connect-to-msonline-using-powershell/" target="_blank">via PowerShell more on this here</a>. Consider, you need administration privileges to change account settings for other users..</li>
<li>To get a list of the Microsoft Online Office 365 users:
<p><strong>Get-MsolUser       </p>
<p><a href="http://www.christiano.ch/wordpress/wp-content/uploads/2012/03/Microsoft-Online-Services-Module-for-Windows-PowerShell_2012-03-28_14-43-35.png"><img style="display: inline" title="Microsoft Online Services Module for Windows PowerShell_2012-03-28_14-43-35" alt="Microsoft Online Services Module for Windows PowerShell_2012-03-28_14-43-35" src="http://www.christiano.ch/wordpress/wp-content/uploads/2012/03/Microsoft-Online-Services-Module-for-Windows-PowerShell_2012-03-28_14-43-35_thumb.png" width="677" height="342" /></a>        </p>
<p></strong></li>
<li>To get the details for a user:
<p><strong>Get-MsolUser -UserPrincipalName </strong><a href="mailto:user.name@domain.xy"><strong>user.name@domain.xy</strong></a>      </p>
<p><a href="http://www.christiano.ch/wordpress/wp-content/uploads/2012/03/Microsoft-Online-Services-Module-for-Windows-PowerShell_2012-03-28_14-46-19.png"><img style="display: inline" title="Microsoft Online Services Module for Windows PowerShell_2012-03-28_14-46-19" alt="Microsoft Online Services Module for Windows PowerShell_2012-03-28_14-46-19" src="http://www.christiano.ch/wordpress/wp-content/uploads/2012/03/Microsoft-Online-Services-Module-for-Windows-PowerShell_2012-03-28_14-46-19_thumb.png" width="677" height="618" /></a>      </p>
</li>
<li>Now you can use the following cmdlet to change the password policy for the password to never expire..
<p><strong>Set-MsolUser –UserPrincipalName </strong><a href="mailto:user@contoso.com"><strong>user@contoso.com</strong></a><strong> –PasswordNeverExpires $true</strong></p>
</li>
<li>
<p>and if you’re a freak like me <img style="border-bottom-style: none; border-left-style: none; border-top-style: none; border-right-style: none" class="wlEmoticon wlEmoticon-winkingsmile" alt="Zwinkerndes Smiley" src="http://www.christiano.ch/wordpress/wp-content/uploads/2012/03/wlEmoticon-winkingsmile.png" />        </p>
<p><strong>Get-MsolUser | Set-MsolUser -PasswordNeverExpires $true         </p>
<p><a href="http://www.christiano.ch/wordpress/wp-content/uploads/2012/03/Microsoft-Online-Services-Module-for-Windows-PowerShell_2012-03-28_14-55-16.png"><img style="display: inline" title="Microsoft Online Services Module for Windows PowerShell_2012-03-28_14-55-16" alt="Microsoft Online Services Module for Windows PowerShell_2012-03-28_14-55-16" src="http://www.christiano.ch/wordpress/wp-content/uploads/2012/03/Microsoft-Online-Services-Module-for-Windows-PowerShell_2012-03-28_14-55-16_thumb.png" width="575" height="44" /></a>          </p>
<p></strong>That will change the password policy for all users – have phun!</p>
</li>
</ol>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Office+365%E2%80%93Change+the+password+expiration+policy+http%3A%2F%2Fchristiano.ch%2Fwordpress%2F%3Fp%3D1310" title="Post to Twitter"><img class="nothumb" src="http://www.christiano.ch/wordpress/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Office+365%E2%80%93Change+the+password+expiration+policy+http%3A%2F%2Fchristiano.ch%2Fwordpress%2F%3Fp%3D1310" title="Post to Twitter">Tweet This Post</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.christiano.ch/wordpress/2012/03/28/office-365change-the-password-expiration-policy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Office 365&#8211;Connect to MsOnline using PowerShell</title>
		<link>http://www.christiano.ch/wordpress/2012/03/28/office-365connect-to-msonline-using-powershell/</link>
		<comments>http://www.christiano.ch/wordpress/2012/03/28/office-365connect-to-msonline-using-powershell/#comments</comments>
		<pubDate>Wed, 28 Mar 2012 12:35:50 +0000</pubDate>
		<dc:creator>christian</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Office 365]]></category>
		<category><![CDATA[MsOnline]]></category>
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://www.christiano.ch/wordpress/?p=1301</guid>
		<description><![CDATA[The administration and configuration of Office 365 can done using PowerShell. To connect to the Office 365, you need the appropriate modules installed. These modules are available from Microsoft website. This article describes how to connect to Office 365 provider. &#8230; <a href="http://www.christiano.ch/wordpress/2012/03/28/office-365connect-to-msonline-using-powershell/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The administration and configuration of Office 365 can done using PowerShell. To connect to the Office 365, you need the appropriate modules installed. These modules are available from Microsoft website. This article describes how to connect to Office 365 provider.</p>
<p><span id="more-1301"></span>
<ol>
<li>Install the Microsoft Online Services Sign-In Assistant      <br /><a href="http://g.microsoftonline.com/0bd00en-us/568">32-bit</a>       <br /><a href="http://g.microsoftonline.com/0bd00en-us/569">64-bit</a> </li>
<li>Install the Microsoft Online Services Module for Windows PowerShell      <br /><a href="http://g.microsoftonline.com/0BX10EN/230">32-bit</a>       <br /><a href="http://g.microsoftonline.com/0BX10EN/423">64-bit</a> </li>
<li>Open PowerShell and import the MsOnline Module or use the desktop shortcut which was created by the installer.
<p><a href="http://www.christiano.ch/wordpress/wp-content/uploads/2012/03/Program-Manager_2012-03-28_14-30-58.png"><img style="display: inline" title="Program Manager_2012-03-28_14-30-58" alt="Program Manager_2012-03-28_14-30-58" src="http://www.christiano.ch/wordpress/wp-content/uploads/2012/03/Program-Manager_2012-03-28_14-30-58_thumb.png" width="108" height="161" /></a>       <br /> 
<p><font face="Courier New">         <br /><strong>Import—Module MsOnline</strong></font></p>
<p>     <a href="http://www.christiano.ch/wordpress/wp-content/uploads/2012/03/Microsoft-Online-Services-Module-for-Windows-PowerShell_2012-03-28_14-31-57.png"><img style="display: inline" title="Microsoft Online Services Module for Windows PowerShell_2012-03-28_14-31-57" alt="Microsoft Online Services Module for Windows PowerShell_2012-03-28_14-31-57" src="http://www.christiano.ch/wordpress/wp-content/uploads/2012/03/Microsoft-Online-Services-Module-for-Windows-PowerShell_2012-03-28_14-31-57_thumb.png" width="677" height="342" /></a> </li>
<li>Connect to your Microsoft Office 365 account
<p><font face="Courier New"><strong>Connect-MsolService </strong>          </p>
<p><a href="http://www.christiano.ch/wordpress/wp-content/uploads/2012/03/Enter-Credentials_2012-03-28_14-32-55.png"><img style="display: inline" title="Enter Credentials_2012-03-28_14-32-55" alt="Enter Credentials_2012-03-28_14-32-55" src="http://www.christiano.ch/wordpress/wp-content/uploads/2012/03/Enter-Credentials_2012-03-28_14-32-55_thumb.png" width="326" height="257" /></a></font></p>
<p>Use your Office 365 LiveID to login (for example <a href="mailto:username@company.onmicrosoft.com">username@company.onmicrosoft.com</a>)</p>
</li>
<li>Now you can start working with Windows Powershell in your Office 365 account, if you need some more help about the available Powershell cmdlets you can list them with
<p><font face="Courier New"><strong>Get-Command –Module MsOnline </strong>          </p>
<p><a href="http://www.christiano.ch/wordpress/wp-content/uploads/2012/03/Microsoft-Online-Services-Module-for-Windows-PowerShell_2012-03-28_14-34-22.png"><img style="display: inline" title="Microsoft Online Services Module for Windows PowerShell_2012-03-28_14-34-22" alt="Microsoft Online Services Module for Windows PowerShell_2012-03-28_14-34-22" src="http://www.christiano.ch/wordpress/wp-content/uploads/2012/03/Microsoft-Online-Services-Module-for-Windows-PowerShell_2012-03-28_14-34-22_thumb.png" width="677" height="810" /></a></font></p>
</li>
</ol>
<p>have phun!</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Office+365%E2%80%93Connect+to+MsOnline+using+PowerShell+http%3A%2F%2Fchristiano.ch%2Fwordpress%2F%3Fp%3D1301" title="Post to Twitter"><img class="nothumb" src="http://www.christiano.ch/wordpress/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Office+365%E2%80%93Connect+to+MsOnline+using+PowerShell+http%3A%2F%2Fchristiano.ch%2Fwordpress%2F%3Fp%3D1301" title="Post to Twitter">Tweet This Post</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.christiano.ch/wordpress/2012/03/28/office-365connect-to-msonline-using-powershell/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Logitech Anywhere Mouse MX in Windows 7 64bit</title>
		<link>http://www.christiano.ch/wordpress/2012/03/13/logitech-anywhere-mouse-mx-in-windows-7-64bit/</link>
		<comments>http://www.christiano.ch/wordpress/2012/03/13/logitech-anywhere-mouse-mx-in-windows-7-64bit/#comments</comments>
		<pubDate>Tue, 13 Mar 2012 17:41:56 +0000</pubDate>
		<dc:creator>christian</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Tips n'Tricks]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows General]]></category>
		<category><![CDATA[Anywhere]]></category>
		<category><![CDATA[Driver]]></category>
		<category><![CDATA[Logitech]]></category>
		<category><![CDATA[MX]]></category>

		<guid isPermaLink="false">http://www.christiano.ch/wordpress/?p=1291</guid>
		<description><![CDATA[Today I bought a Logitech Anywhere Mouse MX. I didn’t expect, that it can be so complicated to install and configure that mouse. Well, it was the so called USB Receiver which made problems – The Windows 7 64bit System &#8230; <a href="http://www.christiano.ch/wordpress/2012/03/13/logitech-anywhere-mouse-mx-in-windows-7-64bit/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Today I bought a Logitech Anywhere Mouse MX. I didn’t expect, that it can be so complicated to install and configure that mouse. Well, it was the so called USB Receiver which made problems – The Windows 7 64bit System didn’t find a suitable driver for that micro-device. </p>
<p><span id="more-1291"></span>
<p>When I checked the Device Manager using devmgmt.msc I realized, that there was this unknown device which prevents me and my mouse to communicate with my computer. Well, there must be a driver on the supplied CD, now?. I installed SetPoint (I hate it to install unnecessary software on my systems..!) but the missing driver was not part of the SetPoint Installer/Software. I realized, that the software on the CD was dated back to 2009. I started a browser and navigated to <a href="http://www.logitech.ch">http://www.logitech.ch</a> downloaded the latest version (6.32) of SetPoint for Windows 7 64bit and installed it on my system. Still no luck. Finally I found page where a user complained about the same issue .. </p>
<p><a href="http://forums.techarena.in/hardware-peripherals/1446885.htm">http://forums.techarena.in/hardware-peripherals/1446885.htm</a></p>
<p>The steps I’ve take that solved the problem were: </p>
<ul>
<li>You have to go for following location C:\Windows\System32\DriverStore\FileRepository\usb.inf_amd64_neutral_e2b28ecac19a29af&#8217;.
<li>Now copy usb.inf and usb.PNF to the ‘C:\Windows\INF\’ location.
<li>After that you will need to update the drive which is as a unknown devices.
<li>Now launch the Device Manager and Right click on it and go for Properties.
<li>Choose Driver and click on the Update Drive.
<li>Once done select Browse my computer for driver software and enter &#8216;C:\Windows\INF\&#8217; into the Search for the driver software and click on Next.</li>
</ul>
<p>Well, the directory usb.inf_amd64_neutral_xxxxx was not listed under C:\Windows\System32\DriverStore\FileRepository but there were to other similar directories: usb.inf_amd64_neutral_153b489118ee37b8 and usb.inf_amd64_neutral_269d7150439b3372 I copied both to C:\Windows\inf and changed back to Device Manager. Right-Mouse-Click on the Unknown Device, Update Driver then Browse and select C:\Windows\Inf. Now the System warned me about an unsigned driver. what I ignored. Boom the USB Receiver was recognized and the mouse was and is working!</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Logitech+Anywhere+Mouse+MX+in+Windows+7+64bit+http%3A%2F%2Fchristiano.ch%2Fwordpress%2F%3Fp%3D1291" title="Post to Twitter"><img class="nothumb" src="http://www.christiano.ch/wordpress/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Logitech+Anywhere+Mouse+MX+in+Windows+7+64bit+http%3A%2F%2Fchristiano.ch%2Fwordpress%2F%3Fp%3D1291" title="Post to Twitter">Tweet This Post</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.christiano.ch/wordpress/2012/03/13/logitech-anywhere-mouse-mx-in-windows-7-64bit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WerFault.exe &#8211; Windows Error Reporting Shortcomings</title>
		<link>http://www.christiano.ch/wordpress/2012/02/17/werfault-exe-windows-error-reporting-shortcomings/</link>
		<comments>http://www.christiano.ch/wordpress/2012/02/17/werfault-exe-windows-error-reporting-shortcomings/#comments</comments>
		<pubDate>Fri, 17 Feb 2012 07:47:21 +0000</pubDate>
		<dc:creator>christian</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Tips n'Tricks]]></category>
		<category><![CDATA[Windows General]]></category>
		<category><![CDATA[WER]]></category>
		<category><![CDATA[WerFault]]></category>
		<category><![CDATA[Windows Error Reporting]]></category>

		<guid isPermaLink="false">http://www.christiano.ch/wordpress/?p=1287</guid>
		<description><![CDATA[Today I’ll write about Windows Error Reporting on Windows Server 2008 R2 / Windows 7, a set of Windows technologies that capture software crash and hang data from end users. See this post as a summary of what I’ve learned &#8230; <a href="http://www.christiano.ch/wordpress/2012/02/17/werfault-exe-windows-error-reporting-shortcomings/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Today I’ll write about Windows Error Reporting on Windows Server 2008 R2 / Windows 7, a set of Windows technologies that capture software crash and hang data from end users. </p>
<p>See this post as a summary of what I’ve learned when analyzing Windows Error Reporting feature and it’s ‘shortcomings’</p>
<p><span id="more-1287"></span>
<p>Years ago Microsoft started with fault-detection creating Dr. Watson. Dr. Watson evolved during the last years to a complete Error Reporting feature called Windows Error Reporting. The feature consists of a Windows Service called <em>Windows Error Reporting Service </em></p>
<p><font size="2">C:\&gt;sc query WerSvc</font></p>
<p><font size="2">SERVICE_NAME: WerSvc<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; TYPE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : 20&nbsp; WIN32_SHARE_PROCESS<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; STATE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : 1&nbsp; STOPPED<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; WIN32_EXIT_CODE&nbsp;&nbsp;&nbsp; : 0&nbsp; (0&#215;0)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SERVICE_EXIT_CODE&nbsp; : 0&nbsp; (0&#215;0)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CHECKPOINT&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : 0&#215;0<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; WAIT_HINT&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : 0&#215;0</font></p>
<p><font size="2">C:\&gt;services.msc</font></p>
<p><a href="http://www.christiano.ch/wordpress/wp-content/uploads/2012/02/WindowsErrorReporting_Services_2012-02-17_07-53-36.png"><img style="display: inline" title="WindowsErrorReporting_Services_2012-02-17_07-53-36" alt="WindowsErrorReporting_Services_2012-02-17_07-53-36" src="http://www.christiano.ch/wordpress/wp-content/uploads/2012/02/WindowsErrorReporting_Services_2012-02-17_07-53-36_thumb.png" width="620" height="22"></a></p>
<p>Additionally there are a few DLLs which can be found in %WinDir%\System32 / %WinDir%\SysWow64.</p>
<p>The Windows Error Reporting feature, respectively WerFault.exe gets triggered if an application terminates unexpectedly. You can change the behavior of the Windows Error Reporting feature using various Windows registry keys:</p>
<p>Here&#8217;s an example dialog in Win7 with the usual settings:</p>
<p><a href="http://www.christiano.ch/wordpress/wp-content/uploads/2012/02/WerFault_Default.png"><img style="display: inline" title="WerFault_Default" alt="WerFault_Default" src="http://www.christiano.ch/wordpress/wp-content/uploads/2012/02/WerFault_Default_thumb.png" width="532" height="286"></a></p>
<p>If you disable the <a href="http://technet.microsoft.com/en-us/library/cc939482.aspx">AeDebug</a> registry key, the JIT debugging option goes away:</p>
<p><a href="http://www.christiano.ch/wordpress/wp-content/uploads/2012/02/WerFault_AeDebug.png"><img style="display: inline" title="WerFault_AeDebug" alt="WerFault_AeDebug" src="http://www.christiano.ch/wordpress/wp-content/uploads/2012/02/WerFault_AeDebug_thumb.png" width="507" height="245"></a></p>
<p>If you disable checking for solutions (the only thing you seem to have control over via the control panel), it looks like this, but still appears and still stops the program from dying until the user presses something.<a href="http://msdn.microsoft.com/en-us/library/bb513617%28VS.85%29.aspx">WerAddExcludedApplication</a> is documented to also have this effect.</p>
<p><a href="http://www.christiano.ch/wordpress/wp-content/uploads/2012/02/WerFault_WerAddExcludedApplication.png"><img style="display: inline" title="WerFault_WerAddExcludedApplication" alt="WerFault_WerAddExcludedApplication" src="http://www.christiano.ch/wordpress/wp-content/uploads/2012/02/WerFault_WerAddExcludedApplication_thumb.png" width="366" height="201"></a></p>
<p>Windows Error Reporting can be configured using GPOs:</p>
<p>Start gpedit.msc, go to <em>Computer Configuration – Administrative Tools – Windows Components – Windows Error Reporting</em></p>
<p>There you can change/control the behavior of WER.</p>
<p>If you don’t change the configuration of Windows Error Reporting, a crash dump is being written to %ProgramData%\Microsoft\Windows\WER</p>
<p>There you can find a Reporting Queue and a Report Archive: </p>
<p><a href="http://www.christiano.ch/wordpress/wp-content/uploads/2012/02/WER_2012-02-17_08-32-36.png"><img style="display: inline" title="WER_2012-02-17_08-32-36" alt="WER_2012-02-17_08-32-36" src="http://www.christiano.ch/wordpress/wp-content/uploads/2012/02/WER_2012-02-17_08-32-36_thumb.png" width="499" height="244"></a></p>
<p>so far the whole WER feature works good and does not make any problems. BUT, if you change <em>startup type</em> of the Windows Error Reporting Service to <em>Disabled,</em>&nbsp; Windows Error Reporting begins to make problems. If you do so, and a program triggers WerFault.exe, the WerFault.exe Process won’t terminate until you kill it yourself using taskkill /IM werfault.exe or taskmanager. This happens because WerFault.exe tries to start the Windows Error Reporting Service. Since WER Service is disabled and cannot be startet, WerFault.exe remains/hangs…. This is a big shortcoming of WER. Because: imagine you have a windows service which crashes, Werfault.exe is beeing triggered, the crashing process (windows service) can not terminate until werfault.exe reports the fault. you won’t be able to restart the windows service in some ‘constellations’. </p>
<p>we have escalated this to Microsoft Support. They provided us with the solution of preventing WerFault.exe from being run using Image File Execution.. I’m absolutely not a fan of this ‘solution’ it’s more of a workaround..</p>
<p><b>Resolution</b>
<p>If you need to ensure that Werfault.exe will never be spawned when an unhandled exception is encountered, you can choose one of the following resolution paths.
<p>1) Create a software restriction policy (via local policy or Domain GPO) to disallow Werfault.exe for all users.
<p>Or
<p>2) Use Image File Executions Options to cause Werfault.exe to be executed under a non-existent debugger(NUL).&nbsp; Since NUL can’t be found, the process fails to launch.<br />(REG ADD &#8220;HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\Werfault.exe&#8221; /v Debugger /t REG_SZ /d NUL /f)<br />
<h1>Links</h1>
<p><a href="http://msdn.microsoft.com/en-us/windows/hardware/gg487440" target="_blank">Windows Error Reporting @Microsoft MSDN</a></p>
<p><a href="http://stackoverflow.com/questions/3561545/how-to-terminate-a-program-when-it-crashes-which-should-just-fail-a-unit-test" target="_blank">Post on Stackoverflow</a></p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=WerFault.exe+%E2%80%93+Windows+Error+Reporting+Shortcomings+http%3A%2F%2Fchristiano.ch%2Fwordpress%2F%3Fp%3D1287" title="Post to Twitter"><img class="nothumb" src="http://www.christiano.ch/wordpress/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=WerFault.exe+%E2%80%93+Windows+Error+Reporting+Shortcomings+http%3A%2F%2Fchristiano.ch%2Fwordpress%2F%3Fp%3D1287" title="Post to Twitter">Tweet This Post</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.christiano.ch/wordpress/2012/02/17/werfault-exe-windows-error-reporting-shortcomings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configure Jumbo Frames on Hardware iSCSI HBA in ESX 4</title>
		<link>http://www.christiano.ch/wordpress/2012/01/06/configure-jumbo-frames-on-hardware-iscsi-hba-in-esx-4/</link>
		<comments>http://www.christiano.ch/wordpress/2012/01/06/configure-jumbo-frames-on-hardware-iscsi-hba-in-esx-4/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 15:28:23 +0000</pubDate>
		<dc:creator>christian</dc:creator>
				<category><![CDATA[ESX Server]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[ESX]]></category>
		<category><![CDATA[iSCSI]]></category>
		<category><![CDATA[Jumbo Frames]]></category>

		<guid isPermaLink="false">http://www.christiano.ch/wordpress/?p=1274</guid>
		<description><![CDATA[Before you begin, check the names of the vmhba adapters on your ESX server. From the vSphere Client go to Configuration tab and click on Storage Adapters. Now, to set Jumbo Frame support (MTU 9000) on your hardware iSCSI HBA, &#8230; <a href="http://www.christiano.ch/wordpress/2012/01/06/configure-jumbo-frames-on-hardware-iscsi-hba-in-esx-4/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Before you begin, check the names of the vmhba adapters on your ESX server. From the vSphere Client go to Configuration tab and click on Storage Adapters. Now, to set Jumbo Frame support (MTU 9000) on your hardware iSCSI HBA, follow these steps: </p>
<p><span id="more-1274"></span>
<ol>
<li>Login as Root user on your ESX server.
<li>Type:<strong><em> #esxcfg-hwiscsi –j enable &lt;vmhba#&gt;</em></strong>
<li>If successful, you should get the “MTU size successfully set to : 9000” message.
<li>To verify the change type: <strong><em>#esxcfg-hwiscsi –l &lt;vmhba#&gt;</em></strong></li>
</ol>
<p>All done! </p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Configure+Jumbo+Frames+on+Hardware+iSCSI+HBA+in+ESX+4+http%3A%2F%2Fchristiano.ch%2Fwordpress%2F%3Fp%3D1274" title="Post to Twitter"><img class="nothumb" src="http://www.christiano.ch/wordpress/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Configure+Jumbo+Frames+on+Hardware+iSCSI+HBA+in+ESX+4+http%3A%2F%2Fchristiano.ch%2Fwordpress%2F%3Fp%3D1274" title="Post to Twitter">Tweet This Post</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.christiano.ch/wordpress/2012/01/06/configure-jumbo-frames-on-hardware-iscsi-hba-in-esx-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disable &#8220;No Internet Access&#8221; notification on Windows Server 2008 (R2)</title>
		<link>http://www.christiano.ch/wordpress/2012/01/05/disable-no-internet-access-notification-on-windows-server-2008-r2/</link>
		<comments>http://www.christiano.ch/wordpress/2012/01/05/disable-no-internet-access-notification-on-windows-server-2008-r2/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 06:55:26 +0000</pubDate>
		<dc:creator>christian</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows General]]></category>
		<category><![CDATA[Windows Server 2008 R2]]></category>
		<category><![CDATA[GPMC]]></category>
		<category><![CDATA[GPO]]></category>
		<category><![CDATA[Notifications]]></category>

		<guid isPermaLink="false">http://www.christiano.ch/wordpress/2012/01/05/disable-no-internet-access-notification-on-windows-server-2008-r2/</guid>
		<description><![CDATA[The “No Internet Access” notification on the network connection icon usually appears when you’re not connected to the Internet or you probably behind a proxy server. However, when you setting up your servers in an isolated environment without Internet access &#8230; <a href="http://www.christiano.ch/wordpress/2012/01/05/disable-no-internet-access-notification-on-windows-server-2008-r2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<table border="0" cellspacing="0" cellpadding="2" width="675">
<tbody>
<tr>
<td valign="top" width="233"><a href="http://www.christiano.ch/wordpress/wp-content/uploads/2012/01/w2k8r2_nointernetaccess.jpg"><img style="display: inline" title="w2k8r2_nointernetaccess" alt="w2k8r2_nointernetaccess" src="http://www.christiano.ch/wordpress/wp-content/uploads/2012/01/w2k8r2_nointernetaccess_thumb.jpg" width="203" height="104" /></a></td>
<td valign="top" width="441">The “No Internet Access” notification on the network connection icon usually appears when you’re not connected to the Internet or you probably behind a proxy server. However, when you setting up your servers in an isolated environment without Internet access and you want to disable this notification then: </td>
</tr>
</tbody>
</table>
<p><span id="more-1273"></span>
<ol>
<li>Open the <strong><em>GPMC.msc</em></strong>. </li>
<li>Create or open a GPO which will be applied to your server(s). </li>
<li>Navigate to <strong><em>Computer Configuration\Policies\Administrative Templates\Network\Network Connections</em></strong>. </li>
<li>Enable the “<strong><em>Do not show the “local access only” network icon</em></strong>” setting. </li>
<li>Close the GPO and GPMC.msc. </li>
<li>Run <strong><em>C:\&gt;gpupdate</em></strong> on the server(s) to apply the new policy. </li>
</ol>
<p>The “No Internet Access” notification should be disabled now. </p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Disable+%E2%80%9CNo+Internet+Access%E2%80%9D+notification+on+Windows+Server+2008+%28R2%29+http%3A%2F%2Fchristiano.ch%2Fwordpress%2F%3Fp%3D1273" title="Post to Twitter"><img class="nothumb" src="http://www.christiano.ch/wordpress/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Disable+%E2%80%9CNo+Internet+Access%E2%80%9D+notification+on+Windows+Server+2008+%28R2%29+http%3A%2F%2Fchristiano.ch%2Fwordpress%2F%3Fp%3D1273" title="Post to Twitter">Tweet This Post</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.christiano.ch/wordpress/2012/01/05/disable-no-internet-access-notification-on-windows-server-2008-r2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Export and Import Mailbox data to a PST file on Exchange Server 2007</title>
		<link>http://www.christiano.ch/wordpress/2012/01/05/export-and-import-mailbox-data-to-a-pst-file-on-exchange-server-2007/</link>
		<comments>http://www.christiano.ch/wordpress/2012/01/05/export-and-import-mailbox-data-to-a-pst-file-on-exchange-server-2007/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 06:49:07 +0000</pubDate>
		<dc:creator>christian</dc:creator>
				<category><![CDATA[Exchange Server]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Export]]></category>
		<category><![CDATA[Import]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[PST]]></category>

		<guid isPermaLink="false">http://www.christiano.ch/wordpress/2012/01/05/export-and-import-mailbox-data-to-a-pst-file-on-exchange-server-2007/</guid>
		<description><![CDATA[This procedure describes how to export all mailboxes from one Exchange Server to a PST files and how to import the PST files to another Exchange Server in a different domain. Before you begin make sure that: You have a &#8230; <a href="http://www.christiano.ch/wordpress/2012/01/05/export-and-import-mailbox-data-to-a-pst-file-on-exchange-server-2007/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This procedure describes how to export all mailboxes from one Exchange Server to a PST files and how to import the PST files to another Exchange Server in a different domain. Before you begin make sure that: </p>
<p><span id="more-1270"></span>
<ul>
<li>You have a computer that has Outlook 2003 (SP2) or 2007, Exchange 2007 Management Tools (32-bit version), PowerShell and .NET Framework installed </li>
<li>Logon with an account that has Exchange Server Administrator and Local Administrator rights </li>
<li>You have full access to the users’ mailbox on both servers. See the note below on how to do it. </li>
</ul>
<p>&#160;</p>
<ul>
<ol>
<li>Start the Exchange Management Shell and type the following:<strong><em>[PS] C:\&gt;Get-Mailbox –Database “&lt;Exchange Server FQDN&gt;\&lt;Database Name&gt;” | Export-Mailbox –PSTFolderPath C:\PSTFiles</em></strong> to export all users mailbox to a PST file. Press A for Yes to All. Depending on the size of your database, the export procedure could take a long time to complete. </li>
<li>Now the mailboxes are exported to the PST files, make sure that the PST file name matches the alias of the users’ account in the other domain. </li>
<li>Next, import the PST files to the other Exchange Server by typing the following: <strong><em>[PS] C:\&gt;Get-Mailbox –Database “&lt;Exchange Server FQDN&gt;\&lt;Database Name&gt;” | Import-Mailbox –PSTFolderPath C:\PSTFiles</em></strong> and press A for Yes for All. Wait until the import operation completes.</li>
</ol>
<p><strong><em>Note:</em></strong>      <br />To grant the Administrator Full Access rights on the database type the following command:      <br /><strong><em>[PS] C:\&gt;Get-Mailbox -Database “&lt;Exchange Server FQDN&gt;\&lt;Database Name&gt;” | Add-ADPermission -User Administrator -AccessRights GenericAll</em></strong></p>
</ul>
<ol></ol>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Export+and+Import+Mailbox+data+to+a+PST+file+on+Exchange+Server+2007+http%3A%2F%2Fchristiano.ch%2Fwordpress%2F%3Fp%3D1270" title="Post to Twitter"><img class="nothumb" src="http://www.christiano.ch/wordpress/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Export+and+Import+Mailbox+data+to+a+PST+file+on+Exchange+Server+2007+http%3A%2F%2Fchristiano.ch%2Fwordpress%2F%3Fp%3D1270" title="Post to Twitter">Tweet This Post</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.christiano.ch/wordpress/2012/01/05/export-and-import-mailbox-data-to-a-pst-file-on-exchange-server-2007/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Modify the Computer icon text to show logged on username in Windows Server 2008 (R2)</title>
		<link>http://www.christiano.ch/wordpress/2012/01/05/modify-the-computer-icon-text-to-show-logged-on-username-in-windows-server-2008-r2/</link>
		<comments>http://www.christiano.ch/wordpress/2012/01/05/modify-the-computer-icon-text-to-show-logged-on-username-in-windows-server-2008-r2/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 06:45:55 +0000</pubDate>
		<dc:creator>christian</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Tips n'Tricks]]></category>
		<category><![CDATA[Windows General]]></category>
		<category><![CDATA[Windows Server 2008 R2]]></category>

		<guid isPermaLink="false">http://www.christiano.ch/wordpress/2012/01/05/modify-the-computer-icon-text-to-show-logged-on-username-in-windows-server-2008-r2/</guid>
		<description><![CDATA[Changing the text on the Computer icon on your Remote Desktop Services Session Host is handy when a user calls you and you want to know which Session Host the user is logged on. The procedure to do this has &#8230; <a href="http://www.christiano.ch/wordpress/2012/01/05/modify-the-computer-icon-text-to-show-logged-on-username-in-windows-server-2008-r2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Changing the text on the Computer icon on your Remote Desktop Services Session Host is handy when a user calls you and you want to know which Session Host the user is logged on. The procedure to do this has changed since Windows Server 2003.</p>
<p><span id="more-1269"></span>
<p>Follow these steps to change the text on a Windows Server 2008 (R2) machine: </p>
<ol>
<li>Logon to your server with the Administrator account. </li>
<li>Start RegEdit and navigate to the following key: <strong><em>HKCR\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}</em></strong></li>
<li>If necessary, take the ownership of this key, grant yourself full control rights and then edit the<strong><em> LocalizedString</em></strong> value. </li>
<li>In the edit window type:<strong><em> %UserName% on %ComputerName%</em></strong>. Click OK and close RegEdit. </li>
<li>Press F5 somewhere on the desktop and the text on the Computer icon should now display the logged on user name. </li>
</ol>
<p>Tested on Windows Server 2008 R2 Build 7600.</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Modify+the+Computer+icon+text+to+show+logged+on+username+in+Windows+Server+2008+%28R2%29+http%3A%2F%2Fchristiano.ch%2Fwordpress%2F%3Fp%3D1269" title="Post to Twitter"><img class="nothumb" src="http://www.christiano.ch/wordpress/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Modify+the+Computer+icon+text+to+show+logged+on+username+in+Windows+Server+2008+%28R2%29+http%3A%2F%2Fchristiano.ch%2Fwordpress%2F%3Fp%3D1269" title="Post to Twitter">Tweet This Post</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.christiano.ch/wordpress/2012/01/05/modify-the-computer-icon-text-to-show-logged-on-username-in-windows-server-2008-r2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Synchronize time with external NTP server on Windows Server 2008 (R2)</title>
		<link>http://www.christiano.ch/wordpress/2012/01/05/synchronize-time-with-external-ntp-server-on-windows-server-2008-r2/</link>
		<comments>http://www.christiano.ch/wordpress/2012/01/05/synchronize-time-with-external-ntp-server-on-windows-server-2008-r2/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 06:44:02 +0000</pubDate>
		<dc:creator>christian</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Windows Server 2008 R2]]></category>
		<category><![CDATA[external]]></category>
		<category><![CDATA[ntp]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[w32time]]></category>
		<category><![CDATA[w32tm]]></category>

		<guid isPermaLink="false">http://www.christiano.ch/wordpress/2012/01/05/synchronize-time-with-external-ntp-server-on-windows-server-2008-r2/</guid>
		<description><![CDATA[Time synchronization is an important aspect for all computers on the network. By default, the clients computers get their time from a Domain Controller and the Domain Controller gets his time from the domain’s PDC Operation Master. Therefore the PDC &#8230; <a href="http://www.christiano.ch/wordpress/2012/01/05/synchronize-time-with-external-ntp-server-on-windows-server-2008-r2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Time synchronization is an important aspect for all computers on the network. By default, the clients computers get their time from a Domain Controller and the Domain Controller gets his time from the domain’s PDC Operation Master. Therefore the PDC must synchronize his time from an external source. I usually use the servers listed at the <a href="http://www.pool.ntp.org/">NTP Pool Project </a>website.</p>
<p><span id="more-1268"></span>
<p>Before you begin, don’t forget to open the default UDP 123 port (in- and outbound) on your firewall. </p>
<ol>
<li>First, locate your PDC Server. Open the command prompt and type: <strong><em>C:\&gt;netdom /query fsmo</em></strong></li>
<li>Log in to your PDC Server and open the command prompt. </li>
<li>Stop the W32Time service: <strong><em>C:\&gt;net stop w32time</em></strong></li>
<li>Configure the external time sources, type: <strong><em>C:\&gt; w32tm /config /syncfromflags:manual /manualpeerlist:”0.pool.ntp.org, 1.pool.ntp.org, 2.pool.ntp.org”</em></strong></li>
<li>Make your PDC a reliable time source for the clients. Type:<strong><em>C:\&gt;w32tm /config /reliable:yes</em></strong></li>
<li>Start the w32time service: <strong><em>C:\&gt;net start w32time</em></strong></li>
<li>The windows time service should begin synchronizing the time. You can check the external NTP servers in the time configuration by typing: <strong><em>C:\&gt;w32tm /query /configuration</em></strong></li>
<li>Check the Event Viewer for any errors.</li>
</ol>
<p>Tested on Windows Server 2008 R2 (Build 7600).</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Synchronize+time+with+external+NTP+server+on+Windows+Server+2008+%28R2%29+http%3A%2F%2Fchristiano.ch%2Fwordpress%2F%3Fp%3D1268" title="Post to Twitter"><img class="nothumb" src="http://www.christiano.ch/wordpress/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Synchronize+time+with+external+NTP+server+on+Windows+Server+2008+%28R2%29+http%3A%2F%2Fchristiano.ch%2Fwordpress%2F%3Fp%3D1268" title="Post to Twitter">Tweet This Post</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.christiano.ch/wordpress/2012/01/05/synchronize-time-with-external-ntp-server-on-windows-server-2008-r2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7 Magnifier Shortcuts and Features</title>
		<link>http://www.christiano.ch/wordpress/2011/11/21/windows-7-magnifier-shortcuts-and-features/</link>
		<comments>http://www.christiano.ch/wordpress/2011/11/21/windows-7-magnifier-shortcuts-and-features/#comments</comments>
		<pubDate>Mon, 21 Nov 2011 06:20:07 +0000</pubDate>
		<dc:creator>christian</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Tips n'Tricks]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.christiano.ch/wordpress/2011/11/21/windows-7-magnifier-shortcuts-and-features/</guid>
		<description><![CDATA[Today I was reading thru the news and found an article about the Windows Magnifier. A brilliant Windows 7 Tool that I’d pretty much ignored in the past. Key to press Action Windows logo key + Plus Sign or Minus &#8230; <a href="http://www.christiano.ch/wordpress/2011/11/21/windows-7-magnifier-shortcuts-and-features/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<table border="0" cellspacing="0" cellpadding="2" width="675">
<tbody>
<tr>
<td valign="top" width="465">Today I was reading thru the news and found an article about the Windows Magnifier. A brilliant Windows 7 Tool that I’d pretty much ignored in the past.</td>
<td valign="top" width="209"><a href="http://www.christiano.ch/wordpress/wp-content/uploads/2011/11/Logo_Windows_7.png"><img style="display: inline; float: right" title="Logo_Windows_7" alt="Logo_Windows_7" align="right" src="http://www.christiano.ch/wordpress/wp-content/uploads/2011/11/Logo_Windows_7_thumb.png" width="161" height="53"></a></td>
</tr>
</tbody>
</table>
<p><span id="more-1267"></span><br />
<table border="0" cellspacing="0" cellpadding="2" width="786">
<tbody>
<tr>
<td valign="top" width="337"><strong>Key to press</strong></td>
<td valign="top" width="447"><strong>Action</strong></td>
</tr>
<tr>
<td valign="top" width="337">Windows logo key + Plus Sign or Minus Sign</td>
<td valign="top" width="447">Zooms in or out</td>
</tr>
<tr>
<td valign="top" width="337">
<p>Ctrl+Alt+Spacebar</p>
</td>
<td valign="top" width="447">Preview the desktop in full-screen mode (you have to be zoomed in first)</td>
</tr>
<tr>
<td valign="top" width="337">Ctrl+Alt+F</td>
<td valign="top" width="447">Switch to full-screen mode</td>
</tr>
<tr>
<td valign="top" width="337">Ctrl+Alt+L</td>
<td valign="top" width="447">Switch to lens mode</td>
</tr>
<tr>
<td valign="top" width="337">Ctrl+Alt+D</td>
<td valign="top" width="447">Switch to docked mode</td>
</tr>
<tr>
<td valign="top" width="337">
<p>Ctrl+Alt+I</p>
</td>
<td valign="top" width="447">
<p>Invert colors (Probably my favorite feature)</p>
</td>
</tr>
<tr>
<td valign="top" width="337">Ctrl+Alt+arrow keys</td>
<td valign="top" width="447">Pan in the direction of the arrow keys</td>
</tr>
<tr>
<td valign="top" width="337">Ctrl+Alt+R</td>
<td valign="top" width="447">Resize the lens</td>
</tr>
<tr>
<td valign="top" width="337">Windows logo key + Esc</td>
<td valign="top" width="447">Exit Magnifier</td>
</tr>
</tbody>
</table>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Windows+7+Magnifier+Shortcuts+and+Features+http%3A%2F%2Fchristiano.ch%2Fwordpress%2F%3Fp%3D1267" title="Post to Twitter"><img class="nothumb" src="http://www.christiano.ch/wordpress/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Windows+7+Magnifier+Shortcuts+and+Features+http%3A%2F%2Fchristiano.ch%2Fwordpress%2F%3Fp%3D1267" title="Post to Twitter">Tweet This Post</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.christiano.ch/wordpress/2011/11/21/windows-7-magnifier-shortcuts-and-features/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

