<?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>Brablc.com</title>
	<atom:link href="http://brablc.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://brablc.com</link>
	<description>This is not an acronym, this is a regular surname ...</description>
	<lastBuildDate>Thu, 23 Feb 2012 18:21:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Windows phone registration problems</title>
		<link>http://brablc.com/2012/02/23/windows-phone-registration-problems/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=windows-phone-registration-problems</link>
		<comments>http://brablc.com/2012/02/23/windows-phone-registration-problems/#comments</comments>
		<pubDate>Thu, 23 Feb 2012 18:05:28 +0000</pubDate>
		<dc:creator>Ondrej</dc:creator>
				<category><![CDATA[Missing Answers]]></category>

		<guid isPermaLink="false">http://brablc.com/?p=151</guid>
		<description><![CDATA[I spent many hours to figure out why I cannot register my developer device HTC HD7 to the App Hub: An error occurred registering your phone.  Please try again. The help forum does not really help: The phone registration service returned an unexpected ErrorCode value. Try this: Check App Hub site for service alerts and/or [...]]]></description>
			<content:encoded><![CDATA[<p>I spent many hours to figure out why I cannot register my developer device HTC HD7 to the App Hub:</p>
<blockquote><p>An error occurred registering your phone.  Please try again.</p></blockquote>
<p>The help <a href="http://forums.create.msdn.com/forums/t/88883.aspx">forum does</a> not really help:</p>
<blockquote><p>The phone registration service returned an unexpected ErrorCode value.<br />
Try this:<br />
Check App Hub site for service alerts and/or retry after a few hours.</p></blockquote>
<p>I have discovered that when the phone is connected to Zune, the internet connection in the telephone is broken, although it has wifi connected. So I became suspicious and finally started Wireshark. And indeed, Wireshark has answer to all your network questions. Zune bypasses proxy settings of the Windows 7 system. My setting say, it should neither use proxy nor try to discover one. I do this on purpose, because the default company proxy is too restrictive (Facebook blocking). But hey, this is not a forbidden site:</p>
<p><code>CONNECT developerservices.windowsphone.com:443 HTTP/1.0<br />
Host: developerservices.windowsphone.com:443<br />
Content-Length: 0<br />
Proxy-Connection: Keep-Alive<br />
Pragma: no-cache</p>
<p>HTTP/1.1 407 Proxy Authentication Required (Access is denied)<br />
Via: 1.1 GFI WebMonitor Proxy<br />
Proxy-Authenticate: Kerberos<br />
Proxy-Authenticate: Negotiate<br />
Proxy-Authenticate: NTLM<br />
Connection: Keep-Alive<br />
Proxy-Connection: Keep-Alive<br />
Pragma: no-cache<br />
Cache-Control: no-cache<br />
Content-Type: text/html<br />
Content-Length: 0</code></p>
<p>Of course, it bypasses settings, discovered a proxy but it is not able to authenticate &#8211; even though it offers <strong>NTLM</strong>!</p>
<p>In order to make any debugging even worse, it does some connections directly. So Zune will let you login to your account. It just uses different way how connect your phone to the internet &#8211; it will not let you even update the software if you are connected over proxy which requires authentication.</p>
<p>Registration of the company developer account has been a nightmare too, days of waiting. Support finally contacted us, but apparently things got fixed without their intervention.</p>
<p>Should I mention 10 steps of software update, which took 30 minutes, 3 automatic restarts and at the end told me it has more updates for me? How many of them were there waiting in the queue? Cancel.</p>
]]></content:encoded>
			<wfw:commentRss>http://brablc.com/2012/02/23/windows-phone-registration-problems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disable password expiration in Windows 7 Home Premium</title>
		<link>http://brablc.com/2012/01/30/disable-password-expiration-in-windows-7-home-premium/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=disable-password-expiration-in-windows-7-home-premium</link>
		<comments>http://brablc.com/2012/01/30/disable-password-expiration-in-windows-7-home-premium/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 19:02:25 +0000</pubDate>
		<dc:creator>Ondrej</dc:creator>
				<category><![CDATA[Missing Answers]]></category>

		<guid isPermaLink="false">http://brablc.com/?p=147</guid>
		<description><![CDATA[It looks like admin accounts in Windows 7 Home Premium have password expiration set on. However, Windows 7 in Home Premium edition does not have a GUI tool to remove it. There is, however, a command line tool which allows to do it over Windows Management Instrumentation &#8211; its name is wmic. If you want [...]]]></description>
			<content:encoded><![CDATA[<p>It looks like admin accounts in Windows 7 Home Premium have password expiration set on. However, Windows 7 in Home Premium edition does not have a GUI tool to remove it. There is, however, a command line tool which allows to do it over Windows Management Instrumentation &#8211; its name is <strong>wmic</strong>.</p>
<p>If you want to remove password expiration do the following:</p>
<ol>
<li>Click on <strong>Start</strong> button.</li>
<li>Type <strong>wmic</strong></li>
<li>Right click listed program <strong>wmic</strong> and &#8220;Run as Administrator&#8221;</li>
<li>Now you can list accounts that have password expiration set:<br />
<code>path Win32_UserAccount where PasswordExpires=TRUE get Name</code></li>
<li>And you can disable it &#8211; you will be prompted to confirm the change:<br />
<code>path Win32_UserAccount where PasswordExpires=TRUE set PasswordExpires=FALSE</code></li>
</ol>
<p>This is not really a missing answer, however, there are plenty of solutions which do not work well, or contain typos &#8211; mostly because of different quotes used in the command. This script allows changing the expiration at once for all users that have it set &#8211; and it does not contain any quotes <img src='http://brablc.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Anyway, this is so far the biggest failure I have encountered when using Windows 7 Home Premium edition: Force password expiration in home environment and do not provide a GUI how to disable it.</p>
]]></content:encoded>
			<wfw:commentRss>http://brablc.com/2012/01/30/disable-password-expiration-in-windows-7-home-premium/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Hasičský směnový kalendář</title>
		<link>http://brablc.com/2012/01/04/hasicsky-smenovy-kalendar/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=hasicsky-smenovy-kalendar</link>
		<comments>http://brablc.com/2012/01/04/hasicsky-smenovy-kalendar/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 22:24:10 +0000</pubDate>
		<dc:creator>Ondrej</dc:creator>
				<category><![CDATA[Czech]]></category>

		<guid isPermaLink="false">http://brablc.com/?p=141</guid>
		<description><![CDATA[Pro všechny hasiče, kteří používají Google potažmo Android tu máme perpetuální Hasičský směnový kalendář a to nejen pro rok 2012. Doufám, že to těm skvělým chlapíkům alespoň trošku pomůže.]]></description>
			<content:encoded><![CDATA[<p>Pro všechny hasiče, kteří používají Google potažmo Android tu máme perpetuální Hasičský směnový kalendář a to nejen pro rok 2012. Doufám, že to těm skvělým chlapíkům alespoň trošku pomůže.</p>
<p><iframe style="border-width: 0pt;" src="https://www.google.com/calendar/embed?title=Hasi%C4%8Dsk%C3%BD%20sm%C4%9Bnov%C3%BD%20kalend%C3%A1%C5%99&amp;showTitle=0&amp;showTabs=0&amp;height=320&amp;wkst=2&amp;hl=cs&amp;bgcolor=%23FFFFFF&amp;src=58tuovr4cu9hn7hpph1jjlom1k%40group.calendar.google.com&amp;color=%232F6309&amp;src=7fbdb88lmacvev8pjj7ka01dnc%40group.calendar.google.com&amp;color=%23333333&amp;src=k0gjllkvqdo50lneo8n2ba9rg4%40group.calendar.google.com&amp;color=%23711616&amp;ctz=Europe%2FPrague" frameborder="0" scrolling="no" width="400" height="320"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://brablc.com/2012/01/04/hasicsky-smenovy-kalendar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Write into multiple ssh screens at once</title>
		<link>http://brablc.com/2011/09/15/write-into-multiple-ssh-screens-at-once/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=write-into-multiple-ssh-screens-at-once</link>
		<comments>http://brablc.com/2011/09/15/write-into-multiple-ssh-screens-at-once/#comments</comments>
		<pubDate>Thu, 15 Sep 2011 14:13:44 +0000</pubDate>
		<dc:creator>Ondrej</dc:creator>
				<category><![CDATA[Missing Answers]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://brablc.com/?p=132</guid>
		<description><![CDATA[Sometimes I need to write commands to a handful of SSH sessions at once. I use putty terminal from Windows and did not find anything useful. So I let myself inspired by Rusty Klophaus&#8217;s pecho and wrote a Perl script, which is little bit more gentle to the escape sequences and than a small bash [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes I need to write commands to a handful of SSH sessions at once. I use putty terminal from Windows and did not find anything useful. So I let myself inspired by Rusty Klophaus&#8217;s <a href="http://rustyklophaus.com/articles/20100618-Pecho.html">pecho</a> and wrote a Perl script, which is little bit more gentle to the escape sequences and than a small bash script which will nicely open multiple SSH sessions to given list of hosts. The nice think is that this works almost everywhere and does not need more than one standard Perl library on the writer side (on CentOS just run <em>yum install perl-TermReadKey</em>).</p>
<p><script src="https://gist.github.com/1219314.js"> </script></p>
]]></content:encoded>
			<wfw:commentRss>http://brablc.com/2011/09/15/write-into-multiple-ssh-screens-at-once/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Internal cryptographic library error when signing document</title>
		<link>http://brablc.com/2011/06/25/internal-cryptographic-library-error-when-signing-document/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=internal-cryptographic-library-error-when-signing-document</link>
		<comments>http://brablc.com/2011/06/25/internal-cryptographic-library-error-when-signing-document/#comments</comments>
		<pubDate>Fri, 24 Jun 2011 22:03:26 +0000</pubDate>
		<dc:creator>Ondrej</dc:creator>
				<category><![CDATA[Missing Answers]]></category>

		<guid isPermaLink="false">http://brablc.com/?p=128</guid>
		<description><![CDATA[Adobe Reader marked document signed with PDFCreator as invalid with this error message: Error during signature verification. Error encountered while validating: Internal cryptographic library error. Error Code: 0&#215;2711 &#8211; Czech equivalent &#8212; Chyba v průběhu ověřování podpisu. Při ověřování se vyskytla chyba: Interní chyba šifrovací knihovny. Kód chyby: 0&#215;2711 There is no info available on [...]]]></description>
			<content:encoded><![CDATA[<p>Adobe Reader marked document signed with PDFCreator as invalid with this error message:</p>
<p>Error during signature verification.<br />
Error encountered while validating:<br />
Internal cryptographic library error.<br />
Error Code: 0&#215;2711</p>
<p>&#8211; Czech equivalent &#8212;<br />
Chyba v průběhu ověřování podpisu.<br />
Při ověřování se vyskytla chyba:<br />
Interní chyba šifrovací knihovny.<br />
Kód chyby: 0&#215;2711 </p>
<p>There is no info available on the internet what does it mean, so I contacted support and the answer was easy &#8211; I was signing the document with backup of my private key &#8211; there was no certificate present in that file, so there was not way how to calculate hash of the document. The solution is to export the private key including your certificate.</p>
]]></content:encoded>
			<wfw:commentRss>http://brablc.com/2011/06/25/internal-cryptographic-library-error-when-signing-document/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to use own vim configuration after sudo to shared account</title>
		<link>http://brablc.com/2011/06/17/how-to-use-own-vim-configuration-after-sudo-to-shared-account/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-use-own-vim-configuration-after-sudo-to-shared-account</link>
		<comments>http://brablc.com/2011/06/17/how-to-use-own-vim-configuration-after-sudo-to-shared-account/#comments</comments>
		<pubDate>Fri, 17 Jun 2011 09:34:50 +0000</pubDate>
		<dc:creator>Ondrej</dc:creator>
				<category><![CDATA[Missing Answers]]></category>

		<guid isPermaLink="false">http://brablc.com/?p=120</guid>
		<description><![CDATA[Recently I become a fan of vim &#8211; and after storing my tuned dotvim on github, I found out, that I miss my configuration when I sudo to the root account. However, I&#8217;m not the only sudo user and I we have our own dotvim configuration. Here is a simple solution to be put into [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I become a fan of <a href="http://www.vim.org/">vim</a> &#8211; and after storing my tuned <a href="https://github.com/brablc/dotvim">dotvim</a> on github, I found out, that I miss my configuration when I sudo to the root account. However, I&#8217;m not the only sudo user and I we have our own dotvim configuration. Here is a simple solution to be put into root&#8217;s <strong>.bashrc</strong>:</p>
<p><code>if [ -n "${SUDO_USER}" -a -d "/home/${SUDO_USER}/.vim" ]; then<br />
        alias vim="/usr/bin/vim --cmd \"set runtimepath+=/home/${SUDO_USER}/.vim\" -u /home/${SUDO_USER}/.vimrc"<br />
fi<br />
</code></p>
<p>It took me quite a lot of googling to find the right combintation of $VIMRC, $VIMRUNTIME, $VIMINIT, $VIMHOME &#8211; and finally as you can see, none of those variables is used. Very usefull during debugging was to run vim with <strong>-V</strong>. to see where it looks for its configuration. And yes, I have tried putting the code to set the runtimepath to the .vimrc, but it would have to be conditional and this seems more clean.</p>
]]></content:encoded>
			<wfw:commentRss>http://brablc.com/2011/06/17/how-to-use-own-vim-configuration-after-sudo-to-shared-account/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to change sar output time format to 24 (solution)</title>
		<link>http://brablc.com/2011/06/06/how-to-change-sar-output-time-format-to-24/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-change-sar-output-time-format-to-24</link>
		<comments>http://brablc.com/2011/06/06/how-to-change-sar-output-time-format-to-24/#comments</comments>
		<pubDate>Mon, 06 Jun 2011 19:54:28 +0000</pubDate>
		<dc:creator>Ondrej</dc:creator>
				<category><![CDATA[Missing Answers]]></category>

		<guid isPermaLink="false">http://brablc.com/?p=115</guid>
		<description><![CDATA[I always forget how to change this and Google is not giving the right answer anywhere among top results, so here just for my record: # Put into your .bashrc export LC_TIME="POSIX" # Or use just when needed LC_TIME="POSIX" sar sar is a command from systat package. It provides output in AM/PM format by default. [...]]]></description>
			<content:encoded><![CDATA[<p>I always forget how to change this and Google is not giving the right answer anywhere among top results, so here just for my record:<br />
<code># Put into your .bashrc<br />
export LC_TIME="POSIX"</p>
<p># Or use just when needed<br />
LC_TIME="POSIX" sar</code></p>
<p><strong>sar</strong> is a command from <strong>systat</strong> package. It provides output in AM/PM format by default. Setting the locale LC_TIME to POSIX changes the time format to 24.</p>
]]></content:encoded>
			<wfw:commentRss>http://brablc.com/2011/06/06/how-to-change-sar-output-time-format-to-24/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Show Site IP of the currently loaded web page in Firefox</title>
		<link>http://brablc.com/2011/05/06/show-site-ip-of-the-currently-loaded-web-page-in-firefox/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=show-site-ip-of-the-currently-loaded-web-page-in-firefox</link>
		<comments>http://brablc.com/2011/05/06/show-site-ip-of-the-currently-loaded-web-page-in-firefox/#comments</comments>
		<pubDate>Fri, 06 May 2011 13:53:04 +0000</pubDate>
		<dc:creator>Ondrej</dc:creator>
				<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://brablc.com/?p=104</guid>
		<description><![CDATA[I play quite often with /etc/hosts file (well I&#8217;m on window so I use C:\WINDOWS\system32\drivers\etc\hosts), or I even switch DNS to our development server using following Windows command (make sure your network connection is called LAN): # Switch to development DNS netsh interface ip set dns "LAN" static 192.168.10.10 primary ipconfig /flushdns # Switch back [...]]]></description>
			<content:encoded><![CDATA[<p>I play quite often with <em>/etc/hosts</em> file (well I&#8217;m on window so I use <em>C:\WINDOWS\system32\drivers\etc\hosts</em>), or I even switch DNS to our development server using following Windows command (make sure your network connection is called LAN):<code><br />
# Switch to development DNS<br />
netsh interface ip set dns "LAN" static 192.168.10.10 primary<br />
ipconfig /flushdns</p>
<p># Switch back to DHCP<br />
netsh interface ip set dns "LAN" source=dhcp<br />
ipconfig /flushdns<br />
</code></p>
<p>All this is done to work with the real domain names already during development &#8211; no worry, we do some things by changing the top level domain to .dev, but I simply need both.</p>
<p>Now I need a tool which tells me quickly whether I&#8217;m in prod or dev. I was using <a href="https://addons.mozilla.org/en-us/firefox/addon/showip/">ShowIP Firefox Extension</a> , but it somehow behaved incorrectly for me &#8211; mainly looked like some caching problems.</p>
<p>So I decided to write my own extension which would be dead simple and would simply show me the current IP address of the domain loaded in the current tab. So I wrote it using <a href="https://addons.mozilla.org/en-US/developers/tools/builder">Mozilla Add-on Builder</a>. It took me less time than to write this post (ok, I have spent 2 years developing AllPeers and some months as Mozilla contractor on Firefox 3).</p>
<p>After <a href="http://brablc.com/download/siteip.xpi">installing the SiteIP Extension</a> customize your toolbar and add the star icon (the default icon for extensions) to your toolbar.</p>
]]></content:encoded>
			<wfw:commentRss>http://brablc.com/2011/05/06/show-site-ip-of-the-currently-loaded-web-page-in-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enabling Integration Features for IE Application Compatibility VPC Images on Windows 7</title>
		<link>http://brablc.com/2011/02/17/enabling-integration-features-for-ie-application-compatibility-vpc-images-on-windows-7/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=enabling-integration-features-for-ie-application-compatibility-vpc-images-on-windows-7</link>
		<comments>http://brablc.com/2011/02/17/enabling-integration-features-for-ie-application-compatibility-vpc-images-on-windows-7/#comments</comments>
		<pubDate>Thu, 17 Feb 2011 10:30:41 +0000</pubDate>
		<dc:creator>Ondrej</dc:creator>
				<category><![CDATA[Missing Answers]]></category>

		<guid isPermaLink="false">http://brablc.com/?p=100</guid>
		<description><![CDATA[We use Microsoft Internet Explorer Application Compatibility VPC Image to test compatibility with IE6, IE7 and IE8. Recently we have moved to Windows 7 and the last update of perpetually expiring images (created last time on January 18, 2011) raised some issues which made enabling of Integration Features quite difficult (BTW, the images have changed [...]]]></description>
			<content:encoded><![CDATA[<p>We use <a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=21eabb90-958f-4b64-b5f1-73d0a413c8ef&amp;displaylang=en">Microsoft Internet Explorer Application Compatibility VPC Image</a> to test compatibility with IE6, IE7 and IE8. Recently we have moved to Windows 7 and the last update of perpetually expiring images (created last time on January 18, 2011) raised some issues which made enabling of Integration Features quite difficult (BTW, the images have changed filenames, <strong>IE User</strong> does not have password stated in the <code>IE_VPC_ReadMe.txt</code>).</p>
<h4>Missing drivers</h4>
<p>When enabling the features, the installation requested <strong>usbhub.sys</strong> and <strong>usbd.sys</strong>. The first file was recommended by MS to be taken from the Windows XP SP3. I have <a href="http://support.microsoft.com/kb/977285">downloaded the SP3</a> and extracted the file using 7zip:</p>
<p><code>7za x WindowsXP-KB936929-SP3-x86-ENU.exe i386\usb*.*</code></p>
<p>But the installation requested another file &#8211; <strong>usbd.sys</strong>, which is not part of the XP SP3 &#8211; so I have copied the file from my Windows 7 (<code>C:\Windows\System32\drivers\usbd.sys</code>).</p>
<h4>Password prompt</h4>
<p>With enabled integration features the VPC asks for password. As it turned out, it tries to do remote desktop connection to itself. It suggests <strong>Admin</strong> user but <strong>Password1</strong> does not work &#8211; apparently the Admin account is missing completely. <strong>IE User</strong> does not work either, because this user does not have password and cannot make remote desktop connection to this PC. So the solution is to give <strong>IE User</strong> a password and to save the credentials during start up (you may need to delete credentials of the Admin user before using properties on the .VMC files.</p>
<p>This way I have solved all the problems I did not have when running the Compatibility images on <strong>Windows Vista</strong> with earlier images.</p>
]]></content:encoded>
			<wfw:commentRss>http://brablc.com/2011/02/17/enabling-integration-features-for-ie-application-compatibility-vpc-images-on-windows-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Odstranění klávesnice Spojené státy &#8211; mezinárodní ve Windows 7</title>
		<link>http://brablc.com/2010/11/29/odstraneni-klavesnice-spojene-staty-mezinarodni-ve-windows-7/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=odstraneni-klavesnice-spojene-staty-mezinarodni-ve-windows-7</link>
		<comments>http://brablc.com/2010/11/29/odstraneni-klavesnice-spojene-staty-mezinarodni-ve-windows-7/#comments</comments>
		<pubDate>Mon, 29 Nov 2010 08:17:39 +0000</pubDate>
		<dc:creator>Ondrej</dc:creator>
				<category><![CDATA[Czech]]></category>
		<category><![CDATA[Missing Answers]]></category>

		<guid isPermaLink="false">http://brablc.com/?p=85</guid>
		<description><![CDATA[Přepínám mezi českou a anglickou klávesnicí, ve Windows 7 je ale super vychytávka při psaní s defaultní anglickou klávesnicí &#8211; Spojené státy (mezinárodní), kdy uvozovky a jiné podobné znaky slouží ke psaní znaků s diakritikou. Řešení je změnit klávesnici na Angličtina (Spojené státy). Nicméně to mi pouze přidá další rozložení pro psaní Anglickým jazykem. Mezi [...]]]></description>
			<content:encoded><![CDATA[<p>Přepínám mezi českou a anglickou klávesnicí, ve Windows 7 je ale super vychytávka při psaní s defaultní anglickou klávesnicí &#8211; <strong>Spojené státy (mezinárodní)</strong>, kdy uvozovky a jiné podobné znaky slouží ke psaní znaků s diakritikou. Řešení je změnit klávesnici na <strong>Angličtina (Spojené státy)</strong>. Nicméně to mi pouze přidá další rozložení pro psaní Anglickým jazykem. Mezi těmito rozloženími mě Windows přepínají natolik náhodně, že jsem to dodnes nepochopil.</p>
<p>Zatím jediný způsob jak se toho nadobro zbavit pro mě byl zásah v registrech &#8211; smazal jsem rozložení z registrů:</p>
<blockquote><p>[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layouts\00020409]<br />
&#8220;Layout Text&#8221;=&#8221;United States-International&#8221;<br />
&#8220;Layout Display Name&#8221;=&#8221;@%SystemRoot%\\system32\\input.dll,-5026&#8243;<br />
&#8220;Layout File&#8221;=&#8221;KBDUSX.DLL&#8221;<br />
&#8220;Layout Id&#8221;=&#8221;0001&#8243;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://brablc.com/2010/11/29/odstraneni-klavesnice-spojene-staty-mezinarodni-ve-windows-7/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

