<?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>Tech.It.2.Me-&#62;{By.Anton.Perez} &#187; Microsoft</title>
	<atom:link href="http://antonperez.com/category/microsoft/feed/" rel="self" type="application/rss+xml" />
	<link>http://antonperez.com</link>
	<description>Technical satisfaction guaranteed...</description>
	<lastBuildDate>Fri, 13 Apr 2012 03:32:11 +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>Excel: Insert multiple rows every other row</title>
		<link>http://antonperez.com/2012/03/12/excel-insert-multiple-rows-every-other-row/</link>
		<comments>http://antonperez.com/2012/03/12/excel-insert-multiple-rows-every-other-row/#comments</comments>
		<pubDate>Tue, 13 Mar 2012 00:19:24 +0000</pubDate>
		<dc:creator>anton</dc:creator>
				<category><![CDATA[How-to]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Scripting]]></category>

		<guid isPermaLink="false">http://antonperez.com/?p=1378</guid>
		<description><![CDATA[The key is to use a macro.&#160; To do so, hit Alt+F11, then create a new macro and add the code below. Once added, select the worksheet you’d like to process, change the “17” below (1 if to process all rows), then run it. That’s it. Sub Insert_Blank_Rows() &#160;&#160;&#160; Dim Last As Integer, oRow As [...]]]></description>
			<content:encoded><![CDATA[<p>The key is to use a macro.&#160; To do so, hit <strong>Alt</strong>+<strong>F11</strong>, then create a new macro and add the code below. Once added, select the worksheet you’d like to process, change the “17” below (1 if to process all rows), then run it.</p>
<p>That’s it.</p>
<p><font style="style" face="Courier New">Sub Insert_Blank_Rows()</font></p>
<p><font style="style" face="Courier New">&#160;&#160;&#160; Dim Last As Integer, oRow As Integer     <br />&#160;&#160;&#160; &#8216;Count and select rows to process      <br />&#160;&#160;&#160; Last = Range(&quot;A&quot; &amp; Rows.Count).End(xlUp).row      <br />&#160;&#160;&#160; <br />&#160;&#160;&#160; &#8217;17 is the last row to process (at the top)      <br />&#160;&#160;&#160; For oRow = Last To 17 Step -1      <br />&#160;&#160;&#160;&#160; If Not Cells(oRow, 1).Value = &quot;&quot; Then      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#8216;Copy the line below to as many row insert you need      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#8216;in this case, it was 3 row inserts      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Cells(oRow, 1).EntireRow.Insert      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Cells(oRow, 1).EntireRow.Insert      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Cells(oRow, 1).EntireRow.Insert      <br />&#160;&#160;&#160;&#160;&#160;&#160; End If      <br />&#160;&#160;&#160; Next oRow</font></p>
<p><font style="style" face="Courier New">End Sub</font>    <br />&#160;&#160;&#160; </p>
<p><font face="Courier New"></font></p>
]]></content:encoded>
			<wfw:commentRss>http://antonperez.com/2012/03/12/excel-insert-multiple-rows-every-other-row/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configure IIS to allow downloading .dat files</title>
		<link>http://antonperez.com/2012/03/08/configure-iis-to-allow-downloading-dat-files/</link>
		<comments>http://antonperez.com/2012/03/08/configure-iis-to-allow-downloading-dat-files/#comments</comments>
		<pubDate>Thu, 08 Mar 2012 22:03:21 +0000</pubDate>
		<dc:creator>anton</dc:creator>
				<category><![CDATA[How-to]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://antonperez.com/?p=1376</guid>
		<description><![CDATA[Note: This is for IIS 6.0. Open IIS Manager. Browse to the IIS Site or subfolder where the .DAT files are Right-click on that site or subfolder and select Properties Select the HTTP Headers tab Click on the MIME Types button In the extension box, type &#34;.dat” In the MIME Type box, type &#34;application/octet-stream&#34; Click [...]]]></description>
			<content:encoded><![CDATA[<p><a name="uds-search-results"></a></p>
<h4><font color="#333333">Note: This is for IIS 6.0.</font></h4>
<ol>
<li>Open IIS Manager.</li>
<li>Browse to the IIS Site or subfolder where the .DAT files are</li>
<li>Right-click on that site or subfolder and select <em>Properties</em></li>
<li>Select the <em>HTTP Headers</em> tab</li>
<li>Click on the <em>MIME Types </em>button</li>
<li>In the extension box, type &quot;<em>.dat</em>”</li>
<li>In the MIME Type box, type &quot;<em>application/octet-stream</em>&quot;</li>
<li>Click OK</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://antonperez.com/2012/03/08/configure-iis-to-allow-downloading-dat-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unrecognized self-signed SSL certs</title>
		<link>http://antonperez.com/2012/02/23/unrecognized-self-signed-ssl-certs/</link>
		<comments>http://antonperez.com/2012/02/23/unrecognized-self-signed-ssl-certs/#comments</comments>
		<pubDate>Fri, 24 Feb 2012 00:31:24 +0000</pubDate>
		<dc:creator>anton</dc:creator>
				<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://antonperez.com/?p=1366</guid>
		<description><![CDATA[Found this on stackoverflow after I had issues with an SSL (self-signed) certificate on a client machine – it still didn’t work even after installing the cert via the browser.&#160; The fix, in addition to installing the actual certificate, was to add the Certificate Authority on the client machine. On the web server: Win+R, MMC, [...]]]></description>
			<content:encoded><![CDATA[<p>Found this on <a href="http://stackoverflow.com/questions/681695/what-do-i-need-to-do-to-get-internet-explorer-8-to-accept-a-self-signed-certific">stackoverflow</a> after I had issues with an SSL (self-signed) certificate on a client machine – it still didn’t work even after installing the cert via the browser.&#160; The fix, in addition to installing the actual certificate, was to add the Certificate Authority on the client machine.</p>
<p><strong>On the web server:</strong></p>
<ul>
<li>Win+R, MMC, Enter. </li>
<li>File, Add-Remove snap-in, Certificates, Add, Manage certificates for: my user account, Finish, OK. </li>
<li>Navigate to &quot;Certificates &#8211; current user / Trusted Root Certification Authorities / Certificates&quot;. </li>
<li>Find your certificate, right-click, All tasks / Export. </li>
<li>&quot;No, don&#8217;t export the private key&quot; </li>
<li>&quot;DER Encoded binary X.509 (.CER)&quot; </li>
<li>Save the file somewhere. </li>
<li>Transfer the newly created .CER file to the client PC.</li>
</ul>
<p><strong>On the client machine:</strong></p>
<ul>
<li>Win+R, MMC, Enter. </li>
<li>File, Add-Remove snap-in, Certificates, Add, Manage certificates for: my user account, Finish, OK. </li>
<li>Navigate to &quot;Certificates &#8211; current user / Trusted Root Certification Authorities / Certificates&quot;. </li>
<li>Right-click on Certificates container, All tasks / Import </li>
<li>Choose your .CER file you&#8217;ve transferred from the server machine. </li>
<li>On the next screen, choose &quot;Place all certificates in the following store&quot;, click &quot;Browse&quot;, check &quot;Show physical stores&quot;, then choose &quot;Trusted Root Certification Authorities / Local Computer&quot;. </li>
<li>Press &quot;Finish&quot; finally. </li>
<li>In Internet Explorer: Tools &#8211; Delete browsing History, </li>
<li>In Internet Explorer: Tools &#8211; Internet options &#8211; &quot;Content&quot; tab &#8211; Clear SSL state button.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://antonperez.com/2012/02/23/unrecognized-self-signed-ssl-certs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7 Media Center: Netflix &#8220;Authorization Failure&#8221; error</title>
		<link>http://antonperez.com/2012/02/14/windows-7-media-center-netflix-authorization-failure-error/</link>
		<comments>http://antonperez.com/2012/02/14/windows-7-media-center-netflix-authorization-failure-error/#comments</comments>
		<pubDate>Tue, 14 Feb 2012 08:28:24 +0000</pubDate>
		<dc:creator>anton</dc:creator>
				<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://antonperez.com/?p=1363</guid>
		<description><![CDATA[In case you&#8217;re having an issue watching Netflix through Windows Media Center because of an &#8220;Authorization failure&#8230;&#8221; error, try the following (it worked for me): 1. Exit Media Center. 2. Open Internet Explorer and click Tools and then Internet Options. 3. Click the Delete button – check all of the check-boxes and then click the [...]]]></description>
			<content:encoded><![CDATA[<p>In case you&#8217;re having an issue watching Netflix through Windows Media Center because of an &#8220;Authorization failure&#8230;&#8221; error, try the following (it worked for me):</p>
<p>1. Exit Media Center.<br />
2. Open Internet Explorer and click Tools and then Internet Options.<br />
3. Click the Delete button – check all of the check-boxes and then click the Delete button. Click OK.<br />
4. Browse to http://www.netflix.com and sign in. Note: No need to save the passwords in IE.<br />
5. Close Internet Explorer.<br />
6. Open Netflix and play anything.<br />
7. Click Yes to the pop-up. </p>
<p>That&#8217;s it. Hope it works for you like it did on mine.</p>
]]></content:encoded>
			<wfw:commentRss>http://antonperez.com/2012/02/14/windows-7-media-center-netflix-authorization-failure-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;Cannot add duplicate collection entry of type&#8230;&#8221; error in IIS 7/7.5</title>
		<link>http://antonperez.com/2012/02/09/cannot-add-duplicate-collection-entry-of-type-error-in-iis-77-5/</link>
		<comments>http://antonperez.com/2012/02/09/cannot-add-duplicate-collection-entry-of-type-error-in-iis-77-5/#comments</comments>
		<pubDate>Fri, 10 Feb 2012 01:52:41 +0000</pubDate>
		<dc:creator>anton</dc:creator>
				<category><![CDATA[IIS]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://antonperez.com/?p=1337</guid>
		<description><![CDATA[I came across an “HTTP Error 500.19 – Internal Server Error” error when trying to access a static page on IIS 7 running on Windows 2008 Server.&#160; So, here’s what I did that fixed the issue: 1. Checked the event logs first and saw this: 2. Checked out the ISAPI Filters of the “Default Web [...]]]></description>
			<content:encoded><![CDATA[<p>I came across an “HTTP Error 500.19 – Internal Server Error” error when trying to access a static page on IIS 7 running on Windows 2008 Server.&#160; So, here’s what I did that fixed the issue:</p>
<p>1. Checked the event logs first and saw this:</p>
<p><a href="http://antonperez.com/wp-content/uploads/2012/02/image4.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://antonperez.com/wp-content/uploads/2012/02/image_thumb4.png" width="414" height="291" /></a></p>
<p>2. Checked out the ISAPI Filters of the “Default Web Site” as stated in the event log and look what came up:</p>
<p><a href="http://antonperez.com/wp-content/uploads/2012/02/image1.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://antonperez.com/wp-content/uploads/2012/02/image_thumb1.png" width="410" height="249" /></a></p>
<p>3. Next, checked “c:\Windows\System32\inetsrv\config\applicationHost.config” and voila, saw two entries for “ASP.Net_2.0_for_V1.1”:</p>
<p>Line 312: </p>
<p><font face="Courier New">&lt;isapiFilters&gt;      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;filter name=&quot;ASP.Net_2.0.50727.0&quot; path=&quot;%windir%\Microsoft.NET\Framework\v2.0.50727\aspnet_filter.dll&quot; enableCache=&quot;true&quot; preCondition=&quot;bitness32,runtimeVersionv2.0&quot; /&gt;       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;filter name=&quot;ASP.Net_2.0_for_V1.1&quot; path=&quot;%windir%\Microsoft.NET\Framework\v2.0.50727\aspnet_filter.dll&quot; enableCache=&quot;true&quot; preCondition=&quot;runtimeVersionv1.1&quot; /&gt;       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;filter name=&quot;ASP.Net_4.0_64bit&quot; path=&quot;c:\Windows\Microsoft.NET\Framework64\v4.0.30319\aspnet_filter.dll&quot; enableCache=&quot;true&quot; preCondition=&quot;runtimeVersionv4.0,bitness64&quot; /&gt;       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;filter name=&quot;ASP.Net_4.0_32bit&quot; path=&quot;c:\Windows\Microsoft.NET\Framework\v4.0.30319\aspnet_filter.dll&quot; enableCache=&quot;true&quot; preCondition=&quot;runtimeVersionv4.0,bitness32&quot; /&gt;       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;/isapiFilters&gt;</font></p>
<p>Line 960:</p>
<p><font face="Courier New">&lt;location path=&quot;Default Web Site&quot;&gt;      <br />&lt;system.webServer&gt;       <br />&lt;isapiFilters&gt;       <br />&lt;filter name=&quot;ASP.Net_2.0_for_V1.1&quot; path=&quot;%windir%\Microsoft.NET\Framework\v2.0.50727\aspnet_filter.dll&quot; /&gt;       <br />&lt;/isapiFilters&gt;       <br />&lt;/system.webServer&gt;</font></p>
<p>After removing the second <em>&lt;filter name…&gt; </em>in line 960 (like so below), and restarting IIS, everything worked as expected.&#160; </p>
<p><font face="Courier New">&lt;location path=&quot;Default Web Site&quot;&gt;      <br />&lt;system.webServer&gt;       <br />&lt;isapiFilters&gt;       <br />&lt;/isapiFilters&gt;       <br />&lt;/system.webServer&gt;</font></p>
<p>Hope this helps someone out there.</p>
]]></content:encoded>
			<wfw:commentRss>http://antonperez.com/2012/02/09/cannot-add-duplicate-collection-entry-of-type-error-in-iis-77-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

