<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Re-Register all DLL&#8217;s to fix &#8220;No such interface supported&#8221; error in windows 7 after installing IE7 Standalone</title>
	<atom:link href="http://pyrocam.com/re-register-all-dlls-to-fix-no-such-interface-supported-error-in-windows-7-after-installing-ie7-standalone/feed/" rel="self" type="application/rss+xml" />
	<link>http://pyrocam.com</link>
	<description>I&#039;m like Vitamins for Computers</description>
	<lastBuildDate>Tue, 08 May 2012 23:32:58 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Matt</title>
		<link>http://pyrocam.com/re-register-all-dlls-to-fix-no-such-interface-supported-error-in-windows-7-after-installing-ie7-standalone/comment-page-1/#comment-43223</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Tue, 08 May 2012 07:49:35 +0000</pubDate>
		<guid isPermaLink="false">http://pyrocam.com/?page_id=48#comment-43223</guid>
		<description>THAAANK YOOU SOO MUUUCH! i had been without explorer and control panel and a few other features/programs because i accidently deleted some system files on regedit :l that was never a good idea. But after this, which was really simple (seriously im 14 and no good with this area of computers) and i got it all back! thanks again!</description>
		<content:encoded><![CDATA[<p>THAAANK YOOU SOO MUUUCH! i had been without explorer and control panel and a few other features/programs because i accidently deleted some system files on regedit :l that was never a good idea. But after this, which was really simple (seriously im 14 and no good with this area of computers) and i got it all back! thanks again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rush</title>
		<link>http://pyrocam.com/re-register-all-dlls-to-fix-no-such-interface-supported-error-in-windows-7-after-installing-ie7-standalone/comment-page-1/#comment-43116</link>
		<dc:creator>rush</dc:creator>
		<pubDate>Sat, 05 May 2012 10:33:27 +0000</pubDate>
		<guid isPermaLink="false">http://pyrocam.com/?page_id=48#comment-43116</guid>
		<description>&lt;blockquote cite=&quot;#commentbody-40061&quot;&gt;
&lt;strong&gt;&lt;a href=&quot;#comment-40061&quot; rel=&quot;nofollow&quot;&gt;Charles Helvey&lt;/a&gt; :&lt;/strong&gt;
          Instead of doing the file and the find / replace, you can:
This is the command for use in the command prompt:
for /f %a in (‘dir /b/s c:\windows\*.dll’) do regsvr32 /s %a
This is the command for use in a batch file:
for /f %%a in (‘dir /b/s c:\windows\*.dll’) do regsvr32 /s %%a
The dir /b/s will produce a list of all dll files with paths.  For example, c:\windows\file.dll or c:\windows\system32\file.dll.  The single quote marks around the command tell for/f that you want the output of a command, not a file.
The %a variable gets each file name in turn from the dir command’s output.
regsvr32 /s – the /s silently registers, so you won’t have to click OK a million times.
In w7 or vista the command prompt should be run as administrator.
         &lt;/blockquote&gt;
this saved me!!!! thnx nyway nd thnx charle</description>
		<content:encoded><![CDATA[<blockquote cite="#commentbody-40061"><p>
<strong><a href="#comment-40061" rel="nofollow">Charles Helvey</a> :</strong><br />
          Instead of doing the file and the find / replace, you can:<br />
This is the command for use in the command prompt:<br />
for /f %a in (‘dir /b/s c:\windows\*.dll’) do regsvr32 /s %a<br />
This is the command for use in a batch file:<br />
for /f %%a in (‘dir /b/s c:\windows\*.dll’) do regsvr32 /s %%a<br />
The dir /b/s will produce a list of all dll files with paths.  For example, c:\windows\file.dll or c:\windows\system32\file.dll.  The single quote marks around the command tell for/f that you want the output of a command, not a file.<br />
The %a variable gets each file name in turn from the dir command’s output.<br />
regsvr32 /s – the /s silently registers, so you won’t have to click OK a million times.<br />
In w7 or vista the command prompt should be run as administrator.
         </p></blockquote>
<p>this saved me!!!! thnx nyway nd thnx charle</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lwo</title>
		<link>http://pyrocam.com/re-register-all-dlls-to-fix-no-such-interface-supported-error-in-windows-7-after-installing-ie7-standalone/comment-page-1/#comment-40155</link>
		<dc:creator>Lwo</dc:creator>
		<pubDate>Sun, 29 Apr 2012 01:39:10 +0000</pubDate>
		<guid isPermaLink="false">http://pyrocam.com/?page_id=48#comment-40155</guid>
		<description>KICK ASS!!!!! Thanks a bunch</description>
		<content:encoded><![CDATA[<p>KICK ASS!!!!! Thanks a bunch</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pyrocam</title>
		<link>http://pyrocam.com/re-register-all-dlls-to-fix-no-such-interface-supported-error-in-windows-7-after-installing-ie7-standalone/comment-page-1/#comment-40153</link>
		<dc:creator>pyrocam</dc:creator>
		<pubDate>Sat, 28 Apr 2012 23:17:34 +0000</pubDate>
		<guid isPermaLink="false">http://pyrocam.com/?page_id=48#comment-40153</guid>
		<description>&lt;blockquote cite=&quot;#commentbody-40144&quot;&gt;
&lt;strong&gt;&lt;a href=&quot;#comment-40144&quot; rel=&quot;nofollow&quot;&gt;John Crenshaw&lt;/a&gt; :&lt;/strong&gt;
          &lt;p&gt;These instructions are epic. You probably also want to delete any lines for the temp folder, if any, since registering a DLL that may not exist later is probably not an awesome idea.&lt;/p&gt;
         &lt;/blockquote&gt;

Good call</description>
		<content:encoded><![CDATA[<blockquote cite="#commentbody-40144"><p>
<strong><a href="#comment-40144" rel="nofollow">John Crenshaw</a> :</strong></p>
<p>These instructions are epic. You probably also want to delete any lines for the temp folder, if any, since registering a DLL that may not exist later is probably not an awesome idea.</p>
</blockquote>
<p>Good call</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pyrocam</title>
		<link>http://pyrocam.com/re-register-all-dlls-to-fix-no-such-interface-supported-error-in-windows-7-after-installing-ie7-standalone/comment-page-1/#comment-40152</link>
		<dc:creator>pyrocam</dc:creator>
		<pubDate>Sat, 28 Apr 2012 23:16:56 +0000</pubDate>
		<guid isPermaLink="false">http://pyrocam.com/?page_id=48#comment-40152</guid>
		<description>&lt;blockquote cite=&quot;#commentbody-40120&quot;&gt;
&lt;strong&gt;&lt;a href=&quot;#comment-40120&quot; rel=&quot;nofollow&quot;&gt;rush&lt;/a&gt; :&lt;/strong&gt;
          &lt;blockquote cite=&quot;#commentbody-38935&quot;&gt;&lt;p&gt;
&lt;strong&gt;&lt;a href=&quot;#comment-38935&quot; rel=&quot;nofollow&quot;&gt;jacko&lt;/a&gt; :&lt;/strong&gt;&lt;br&gt;
          I am kinda new at this stuff -so would you mind emailing me (embarrasing) and giving just a little more detail..if not, that is ok too…That is if I can get to my email…….thanks, Jackie
         &lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;me 2 please coz I don’t get it though I follow da instrutions… pls in real trouble here…the email is  xxxxxxxxxxxxxxxxx&lt;/p&gt;
         &lt;/blockquote&gt;
Sorry this is not something I have time to do. also you probably shouldnt post your email address in comments unless you want to receive spam :)</description>
		<content:encoded><![CDATA[<blockquote cite="#commentbody-40120"><p>
<strong><a href="#comment-40120" rel="nofollow">rush</a> :</strong></p>
<blockquote cite="#commentbody-38935"><p>
<strong><a href="#comment-38935" rel="nofollow">jacko</a> :</strong><br />
          I am kinda new at this stuff -so would you mind emailing me (embarrasing) and giving just a little more detail..if not, that is ok too…That is if I can get to my email…….thanks, Jackie
         </p>
</blockquote>
<p>me 2 please coz I don’t get it though I follow da instrutions… pls in real trouble here…the email is  xxxxxxxxxxxxxxxxx</p>
</blockquote>
<p>Sorry this is not something I have time to do. also you probably shouldnt post your email address in comments unless you want to receive spam <img src='http://pyrocam.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Crenshaw</title>
		<link>http://pyrocam.com/re-register-all-dlls-to-fix-no-such-interface-supported-error-in-windows-7-after-installing-ie7-standalone/comment-page-1/#comment-40144</link>
		<dc:creator>John Crenshaw</dc:creator>
		<pubDate>Sat, 28 Apr 2012 19:56:06 +0000</pubDate>
		<guid isPermaLink="false">http://pyrocam.com/?page_id=48#comment-40144</guid>
		<description>These instructions are epic. You probably also want to delete any lines for the temp folder, if any, since registering a DLL that may not exist later is probably not an awesome idea.</description>
		<content:encoded><![CDATA[<p>These instructions are epic. You probably also want to delete any lines for the temp folder, if any, since registering a DLL that may not exist later is probably not an awesome idea.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rush</title>
		<link>http://pyrocam.com/re-register-all-dlls-to-fix-no-such-interface-supported-error-in-windows-7-after-installing-ie7-standalone/comment-page-1/#comment-40120</link>
		<dc:creator>rush</dc:creator>
		<pubDate>Sat, 28 Apr 2012 07:07:54 +0000</pubDate>
		<guid isPermaLink="false">http://pyrocam.com/?page_id=48#comment-40120</guid>
		<description>&lt;blockquote cite=&quot;#commentbody-38935&quot;&gt;
&lt;strong&gt;&lt;a href=&quot;#comment-38935&quot; rel=&quot;nofollow&quot;&gt;jacko&lt;/a&gt; :&lt;/strong&gt;
          I am kinda new at this stuff -so would you mind emailing me (embarrasing) and giving just a little more detail..if not, that is ok too…That is if I can get to my email…….thanks, Jackie
         &lt;/blockquote&gt;
me 2 please coz I don&#039;t get it though I follow da instrutions… pls in real trouble here...the email is  xxxxxxxxxxxxxxxxx</description>
		<content:encoded><![CDATA[<blockquote cite="#commentbody-38935"><p>
<strong><a href="#comment-38935" rel="nofollow">jacko</a> :</strong><br />
          I am kinda new at this stuff -so would you mind emailing me (embarrasing) and giving just a little more detail..if not, that is ok too…That is if I can get to my email…….thanks, Jackie
         </p></blockquote>
<p>me 2 please coz I don&#8217;t get it though I follow da instrutions… pls in real trouble here&#8230;the email is  xxxxxxxxxxxxxxxxx</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pyrocam</title>
		<link>http://pyrocam.com/re-register-all-dlls-to-fix-no-such-interface-supported-error-in-windows-7-after-installing-ie7-standalone/comment-page-1/#comment-40097</link>
		<dc:creator>pyrocam</dc:creator>
		<pubDate>Fri, 27 Apr 2012 18:21:16 +0000</pubDate>
		<guid isPermaLink="false">http://pyrocam.com/?page_id=48#comment-40097</guid>
		<description>&lt;blockquote cite=&quot;#commentbody-40091&quot;&gt;
&lt;strong&gt;&lt;a href=&quot;#comment-40091&quot; rel=&quot;nofollow&quot;&gt;Erik&lt;/a&gt; :&lt;/strong&gt;
          &lt;p&gt;Thanks pyrocam for all this!  Unfortunately, didn’t seem to work for me.  I noticed you seemed more emphatic in previous post regarding: “$patchcache$ and WinSXS dll files which you DON’T want to register.”  I DID NOT remove those from text file (probably why it took so long to run).  SHOULD I REMOVE THEM AND TRY AGAIN?  If so, please forgive my amateur question, but how can I remove many lines in text file without painfully slow scrolling?  Thanks!&lt;/p&gt;
         &lt;/blockquote&gt;
It&#039;s worth trying
to select large areas you can use shift + pagedown, or left click at the start, move the scrollbar to where it ends, hold shift and left click where it ends.

Good luck</description>
		<content:encoded><![CDATA[<blockquote cite="#commentbody-40091"><p>
<strong><a href="#comment-40091" rel="nofollow">Erik</a> :</strong></p>
<p>Thanks pyrocam for all this!  Unfortunately, didn’t seem to work for me.  I noticed you seemed more emphatic in previous post regarding: “$patchcache$ and WinSXS dll files which you DON’T want to register.”  I DID NOT remove those from text file (probably why it took so long to run).  SHOULD I REMOVE THEM AND TRY AGAIN?  If so, please forgive my amateur question, but how can I remove many lines in text file without painfully slow scrolling?  Thanks!</p>
</blockquote>
<p>It&#8217;s worth trying<br />
to select large areas you can use shift + pagedown, or left click at the start, move the scrollbar to where it ends, hold shift and left click where it ends.</p>
<p>Good luck</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Erik</title>
		<link>http://pyrocam.com/re-register-all-dlls-to-fix-no-such-interface-supported-error-in-windows-7-after-installing-ie7-standalone/comment-page-1/#comment-40091</link>
		<dc:creator>Erik</dc:creator>
		<pubDate>Fri, 27 Apr 2012 12:34:17 +0000</pubDate>
		<guid isPermaLink="false">http://pyrocam.com/?page_id=48#comment-40091</guid>
		<description>Thanks pyrocam for all this!  Unfortunately, didn&#039;t seem to work for me.  I noticed you seemed more emphatic in previous post regarding: &quot;$patchcache$ and WinSXS dll files which you DON’T want to register.&quot;  I DID NOT remove those from text file (probably why it took so long to run).  SHOULD I REMOVE THEM AND TRY AGAIN?  If so, please forgive my amateur question, but how can I remove many lines in text file without painfully slow scrolling?  Thanks!</description>
		<content:encoded><![CDATA[<p>Thanks pyrocam for all this!  Unfortunately, didn&#8217;t seem to work for me.  I noticed you seemed more emphatic in previous post regarding: &#8220;$patchcache$ and WinSXS dll files which you DON’T want to register.&#8221;  I DID NOT remove those from text file (probably why it took so long to run).  SHOULD I REMOVE THEM AND TRY AGAIN?  If so, please forgive my amateur question, but how can I remove many lines in text file without painfully slow scrolling?  Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pyrocam</title>
		<link>http://pyrocam.com/re-register-all-dlls-to-fix-no-such-interface-supported-error-in-windows-7-after-installing-ie7-standalone/comment-page-1/#comment-40072</link>
		<dc:creator>pyrocam</dc:creator>
		<pubDate>Thu, 26 Apr 2012 23:09:00 +0000</pubDate>
		<guid isPermaLink="false">http://pyrocam.com/?page_id=48#comment-40072</guid>
		<description>&lt;blockquote cite=&quot;#commentbody-40061&quot;&gt;
&lt;strong&gt;&lt;a href=&quot;#comment-40061&quot; rel=&quot;nofollow&quot;&gt;Charles Helvey&lt;/a&gt; :&lt;/strong&gt;
          &lt;p&gt;Instead of doing the file and the find / replace, you can:&lt;/p&gt;
&lt;p&gt;This is the command for use in the command prompt:&lt;br&gt;
for /f %a in (‘dir /b/s c:\windows\*.dll’) do regsvr32 /s %a&lt;/p&gt;
&lt;p&gt;This is the command for use in a batch file:&lt;br&gt;
for /f %%a in (‘dir /b/s c:\windows\*.dll’) do regsvr32 /s %%a&lt;/p&gt;
&lt;p&gt;The dir /b/s will produce a list of all dll files with paths.  For example, c:\windows\file.dll or c:\windows\system32\file.dll.  The single quote marks around the command tell for/f that you want the output of a command, not a file.&lt;/p&gt;
&lt;p&gt;The %a variable gets each file name in turn from the dir command’s output.&lt;/p&gt;
&lt;p&gt;regsvr32 /s – the /s silently registers, so you won’t have to click OK a million times.&lt;/p&gt;
&lt;p&gt;In w7 or vista the command prompt should be run as administrator.&lt;/p&gt;
         &lt;/blockquote&gt;

Whilst this might work, it does not give you the opportunity to remove the $patchcache$ and WinSXS dll files which you DON&#039;T want to register</description>
		<content:encoded><![CDATA[<blockquote cite="#commentbody-40061"><p>
<strong><a href="#comment-40061" rel="nofollow">Charles Helvey</a> :</strong></p>
<p>Instead of doing the file and the find / replace, you can:</p>
<p>This is the command for use in the command prompt:<br />
for /f %a in (‘dir /b/s c:\windows\*.dll’) do regsvr32 /s %a</p>
<p>This is the command for use in a batch file:<br />
for /f %%a in (‘dir /b/s c:\windows\*.dll’) do regsvr32 /s %%a</p>
<p>The dir /b/s will produce a list of all dll files with paths.  For example, c:\windows\file.dll or c:\windows\system32\file.dll.  The single quote marks around the command tell for/f that you want the output of a command, not a file.</p>
<p>The %a variable gets each file name in turn from the dir command’s output.</p>
<p>regsvr32 /s – the /s silently registers, so you won’t have to click OK a million times.</p>
<p>In w7 or vista the command prompt should be run as administrator.</p>
</blockquote>
<p>Whilst this might work, it does not give you the opportunity to remove the $patchcache$ and WinSXS dll files which you DON&#8217;T want to register</p>
]]></content:encoded>
	</item>
</channel>
</rss>

