<?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: Aim 6.5 and Windows Vista, Server execution failed and Media Player Issues</title>
	<atom:link href="http://bumped.org/tek/2007/10/07/aim-65-and-windows-vista-server-execution-failed-and-media-player-issues/feed/" rel="self" type="application/rss+xml" />
	<link>http://bumped.org/tek/2007/10/07/aim-65-and-windows-vista-server-execution-failed-and-media-player-issues/</link>
	<description>Technology Commentary</description>
	<lastBuildDate>Fri, 10 Feb 2012 00:28:40 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: David Elliott</title>
		<link>http://bumped.org/tek/2007/10/07/aim-65-and-windows-vista-server-execution-failed-and-media-player-issues/comment-page-2/#comment-20665</link>
		<dc:creator>David Elliott</dc:creator>
		<pubDate>Sun, 07 Jun 2009 21:57:48 +0000</pubDate>
		<guid isPermaLink="false">http://bumped.org/tek/2007/10/07/aim-65-and-windows-vista-server-execution-failed-and-media-player-issues/#comment-20665</guid>
		<description>None of these solutions are correct.  Do NOT add &quot;NT AUTHORITY\LocalService&quot; to the Administrators group.  It appears to fix the problem but other stuff will still fail (for example, applying SP2).

After a coworker&#039;s machine succumbed to this problem I googled for it but with no luck for a real solution.  This is the best page I found and I appreciated the stark warning against adding LocalService to the Administrators group but unfortunately I didn&#039;t see any real solutions besides uninstalling and reinstalling stuff.  There had to be a better way and the starting point is that clearly it is some sort of permissions problem.

To discover the problem I ran procmon.exe (sysinternals) looking for Result ACCESS DENIED.  This showed svchost.exe having trouble reading various things under HKCR\CLSID.  So clearly it is some sort of permission problem but local services are supposed to be able to read HKCR without needing to be in the Administrators group so clearly something was wrong with the permissions in the registry.

A quick glance at HKCR keys seemed to indicate that it should have permissions but then I recalled that HKCR doesn&#039;t really exist.  Rather, HKCR is HKLM\Software\Classes with HKCU\Software\Classes overlaid on top of it.  And HKCU is in turn simply a reference to HKEY_USERS\some-SID.  Basically what this means is that when you run regedit, the view you get of HKCR (and HKCU) is specific to you.  So looking at the permissions on HKEY_CLASSES_ROOT or HKEY_CURRENT_USER is going to give you bogus results: it always appears as though you, the user running regedit, are the owner of the keys which is not the reality of the underlying storage in HKLM\Software\Classes or HKCU\Software\Classes

Well none of the service accounts have a SOFTWARE\Classes key within their &quot;user&quot; registry hive so it has to be something with HKLM\Software\Classes.  After examining my machine I found that permissions on Vista are defined at the HKLM\Software level and Classes inherits these.  On his machine on the HKLM\Software key he had an extra entry for Everyone. I didn&#039;t check to see what permissions it was granting or denying but I did use the Advanced permissions editor on both machines and saw that the only difference was that his machine had an entry for Everyone and mine did not.  Everything else was the same, including which rights were granted to the remaining four SIDs.

I went ahead and deleted the entry for Everyone then hit OK.  Warning: this will take a somewhat long time to process as the system has to recurse into all child registry keys of HKLM\Software and for any that are inheriting their permissions it has to fix them up.  Do NOT cancel out under any circumstances!  Let it finish applying the new ACL entries.  It will appear to be hung while it does this.

How the entry for Everyone got there, I don&#039;t know.  But I do know that AIM had auto upgraded on him to version 7 which he didn&#039;t like so he uninstalled it and installed an older version which is when this trouble began.  He also had UAC disabled.

As a check, use the Effective Permissions tab and enter the Local Service name.  This should show only certain permissions allowed (basically only those related to reading).  If you had added Local Service to your Administrators group it will show full control; take Local Service out of Administrators (e.g. using computer management) and come back here and calculate effective permissions again (this will take effect immediately).  It should show only a few things checked to allow reading.  Now reboot and everything should be working just fine, including the Network List service.

For him, this fixed the problem and although we haven&#039;t tried it yet I believe it will also fix the problem with installing SP2.</description>
		<content:encoded><![CDATA[<p>None of these solutions are correct.  Do NOT add &#8220;NT AUTHORITY\LocalService&#8221; to the Administrators group.  It appears to fix the problem but other stuff will still fail (for example, applying SP2).</p>
<p>After a coworker&#8217;s machine succumbed to this problem I googled for it but with no luck for a real solution.  This is the best page I found and I appreciated the stark warning against adding LocalService to the Administrators group but unfortunately I didn&#8217;t see any real solutions besides uninstalling and reinstalling stuff.  There had to be a better way and the starting point is that clearly it is some sort of permissions problem.</p>
<p>To discover the problem I ran procmon.exe (sysinternals) looking for Result ACCESS DENIED.  This showed svchost.exe having trouble reading various things under HKCR\CLSID.  So clearly it is some sort of permission problem but local services are supposed to be able to read HKCR without needing to be in the Administrators group so clearly something was wrong with the permissions in the registry.</p>
<p>A quick glance at HKCR keys seemed to indicate that it should have permissions but then I recalled that HKCR doesn&#8217;t really exist.  Rather, HKCR is HKLM\Software\Classes with HKCU\Software\Classes overlaid on top of it.  And HKCU is in turn simply a reference to HKEY_USERS\some-SID.  Basically what this means is that when you run regedit, the view you get of HKCR (and HKCU) is specific to you.  So looking at the permissions on HKEY_CLASSES_ROOT or HKEY_CURRENT_USER is going to give you bogus results: it always appears as though you, the user running regedit, are the owner of the keys which is not the reality of the underlying storage in HKLM\Software\Classes or HKCU\Software\Classes</p>
<p>Well none of the service accounts have a SOFTWARE\Classes key within their &#8220;user&#8221; registry hive so it has to be something with HKLM\Software\Classes.  After examining my machine I found that permissions on Vista are defined at the HKLM\Software level and Classes inherits these.  On his machine on the HKLM\Software key he had an extra entry for Everyone. I didn&#8217;t check to see what permissions it was granting or denying but I did use the Advanced permissions editor on both machines and saw that the only difference was that his machine had an entry for Everyone and mine did not.  Everything else was the same, including which rights were granted to the remaining four SIDs.</p>
<p>I went ahead and deleted the entry for Everyone then hit OK.  Warning: this will take a somewhat long time to process as the system has to recurse into all child registry keys of HKLM\Software and for any that are inheriting their permissions it has to fix them up.  Do NOT cancel out under any circumstances!  Let it finish applying the new ACL entries.  It will appear to be hung while it does this.</p>
<p>How the entry for Everyone got there, I don&#8217;t know.  But I do know that AIM had auto upgraded on him to version 7 which he didn&#8217;t like so he uninstalled it and installed an older version which is when this trouble began.  He also had UAC disabled.</p>
<p>As a check, use the Effective Permissions tab and enter the Local Service name.  This should show only certain permissions allowed (basically only those related to reading).  If you had added Local Service to your Administrators group it will show full control; take Local Service out of Administrators (e.g. using computer management) and come back here and calculate effective permissions again (this will take effect immediately).  It should show only a few things checked to allow reading.  Now reboot and everything should be working just fine, including the Network List service.</p>
<p>For him, this fixed the problem and although we haven&#8217;t tried it yet I believe it will also fix the problem with installing SP2.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Terence</title>
		<link>http://bumped.org/tek/2007/10/07/aim-65-and-windows-vista-server-execution-failed-and-media-player-issues/comment-page-2/#comment-15157</link>
		<dc:creator>Terence</dc:creator>
		<pubDate>Wed, 04 Feb 2009 01:32:30 +0000</pubDate>
		<guid isPermaLink="false">http://bumped.org/tek/2007/10/07/aim-65-and-windows-vista-server-execution-failed-and-media-player-issues/#comment-15157</guid>
		<description>Hey Mike... I saw another website and ended up doing the &quot;Local Service Method&quot; without being aware that it was very risky... I still have the X over my network so it seems all for naught. I was trying to see if I could reverse the process and what the command would be that I would need to engage. Thanks in advance.</description>
		<content:encoded><![CDATA[<p>Hey Mike&#8230; I saw another website and ended up doing the &#8220;Local Service Method&#8221; without being aware that it was very risky&#8230; I still have the X over my network so it seems all for naught. I was trying to see if I could reverse the process and what the command would be that I would need to engage. Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WBMike</title>
		<link>http://bumped.org/tek/2007/10/07/aim-65-and-windows-vista-server-execution-failed-and-media-player-issues/comment-page-2/#comment-14543</link>
		<dc:creator>WBMike</dc:creator>
		<pubDate>Wed, 07 Jan 2009 05:02:23 +0000</pubDate>
		<guid isPermaLink="false">http://bumped.org/tek/2007/10/07/aim-65-and-windows-vista-server-execution-failed-and-media-player-issues/#comment-14543</guid>
		<description>Follow the XP compatibility method and install it with Aim 6.8. Really the thing is to just install AIM with UAC on, then after its installed you can turn UAC off. Remember that everytime you upgrade AIM you have to turn UAC back on.</description>
		<content:encoded><![CDATA[<p>Follow the XP compatibility method and install it with Aim 6.8. Really the thing is to just install AIM with UAC on, then after its installed you can turn UAC off. Remember that everytime you upgrade AIM you have to turn UAC back on.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Crystal</title>
		<link>http://bumped.org/tek/2007/10/07/aim-65-and-windows-vista-server-execution-failed-and-media-player-issues/comment-page-2/#comment-14540</link>
		<dc:creator>Crystal</dc:creator>
		<pubDate>Wed, 07 Jan 2009 03:11:13 +0000</pubDate>
		<guid isPermaLink="false">http://bumped.org/tek/2007/10/07/aim-65-and-windows-vista-server-execution-failed-and-media-player-issues/#comment-14540</guid>
		<description>So I just had this happen to my computer and it&#039;s restoring right now (obviously, I&#039;m on a different one).  Is there an AIM that&#039;s safe to use without having to do anything special besides just downloading it?  As much as I HATE 6.8, I may just download it and deal with it if it doesn&#039;t come with these problems.</description>
		<content:encoded><![CDATA[<p>So I just had this happen to my computer and it&#8217;s restoring right now (obviously, I&#8217;m on a different one).  Is there an AIM that&#8217;s safe to use without having to do anything special besides just downloading it?  As much as I HATE 6.8, I may just download it and deal with it if it doesn&#8217;t come with these problems.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gabe</title>
		<link>http://bumped.org/tek/2007/10/07/aim-65-and-windows-vista-server-execution-failed-and-media-player-issues/comment-page-2/#comment-14267</link>
		<dc:creator>Gabe</dc:creator>
		<pubDate>Sun, 28 Dec 2008 00:26:45 +0000</pubDate>
		<guid isPermaLink="false">http://bumped.org/tek/2007/10/07/aim-65-and-windows-vista-server-execution-failed-and-media-player-issues/#comment-14267</guid>
		<description>This problem exist if AIM crap is not installed. 

Please help!</description>
		<content:encoded><![CDATA[<p>This problem exist if AIM crap is not installed. </p>
<p>Please help!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt</title>
		<link>http://bumped.org/tek/2007/10/07/aim-65-and-windows-vista-server-execution-failed-and-media-player-issues/comment-page-2/#comment-8375</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Tue, 08 Jul 2008 17:34:47 +0000</pubDate>
		<guid isPermaLink="false">http://bumped.org/tek/2007/10/07/aim-65-and-windows-vista-server-execution-failed-and-media-player-issues/#comment-8375</guid>
		<description>when i type thing in aim the type is big but the font is the same size it&#039;s always been. it happened all of a sudden and I&#039;ve tried uninstalling and reinstalling it but, it hasn&#039;t worked. do you know what i should do?</description>
		<content:encoded><![CDATA[<p>when i type thing in aim the type is big but the font is the same size it&#8217;s always been. it happened all of a sudden and I&#8217;ve tried uninstalling and reinstalling it but, it hasn&#8217;t worked. do you know what i should do?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kyle</title>
		<link>http://bumped.org/tek/2007/10/07/aim-65-and-windows-vista-server-execution-failed-and-media-player-issues/comment-page-2/#comment-7834</link>
		<dc:creator>kyle</dc:creator>
		<pubDate>Sat, 21 Jun 2008 15:36:05 +0000</pubDate>
		<guid isPermaLink="false">http://bumped.org/tek/2007/10/07/aim-65-and-windows-vista-server-execution-failed-and-media-player-issues/#comment-7834</guid>
		<description>attempted every workaround i could find, the only one that gets rid of the red x is the least secure... but it does work.</description>
		<content:encoded><![CDATA[<p>attempted every workaround i could find, the only one that gets rid of the red x is the least secure&#8230; but it does work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kyle</title>
		<link>http://bumped.org/tek/2007/10/07/aim-65-and-windows-vista-server-execution-failed-and-media-player-issues/comment-page-2/#comment-7831</link>
		<dc:creator>kyle</dc:creator>
		<pubDate>Sat, 21 Jun 2008 14:53:05 +0000</pubDate>
		<guid isPermaLink="false">http://bumped.org/tek/2007/10/07/aim-65-and-windows-vista-server-execution-failed-and-media-player-issues/#comment-7831</guid>
		<description>edgar&#039;s answer fixed my winamp/itunes. does not fix the &#039;red x&#039; server execution failed. but im not that concerned with it.

i fixed the sound on my vista when i encountered this problem…
1. go to control panel
2. switch to classic view
3. click on sound
4. windows asks if you would disable driver enhancements for this device CLICK YES and there u have it peeps!!</description>
		<content:encoded><![CDATA[<p>edgar&#8217;s answer fixed my winamp/itunes. does not fix the &#8216;red x&#8217; server execution failed. but im not that concerned with it.</p>
<p>i fixed the sound on my vista when i encountered this problem…<br />
1. go to control panel<br />
2. switch to classic view<br />
3. click on sound<br />
4. windows asks if you would disable driver enhancements for this device CLICK YES and there u have it peeps!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WBMike</title>
		<link>http://bumped.org/tek/2007/10/07/aim-65-and-windows-vista-server-execution-failed-and-media-player-issues/comment-page-2/#comment-6745</link>
		<dc:creator>WBMike</dc:creator>
		<pubDate>Sun, 20 Apr 2008 17:45:19 +0000</pubDate>
		<guid isPermaLink="false">http://bumped.org/tek/2007/10/07/aim-65-and-windows-vista-server-execution-failed-and-media-player-issues/#comment-6745</guid>
		<description>Hello we will be updating this entry for newer instructions about this event.</description>
		<content:encoded><![CDATA[<p>Hello we will be updating this entry for newer instructions about this event.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Star S. Wildfire</title>
		<link>http://bumped.org/tek/2007/10/07/aim-65-and-windows-vista-server-execution-failed-and-media-player-issues/comment-page-2/#comment-6744</link>
		<dc:creator>Star S. Wildfire</dc:creator>
		<pubDate>Sun, 20 Apr 2008 08:04:47 +0000</pubDate>
		<guid isPermaLink="false">http://bumped.org/tek/2007/10/07/aim-65-and-windows-vista-server-execution-failed-and-media-player-issues/#comment-6744</guid>
		<description>I just want to stop and thank everybody that has posted here for doing so, I have been able to succesfully correct my issue after installing American offlines messenger service by following the UAC instructions above. I had a few other symtoms that occured after installing All outta luck:
     In my device manager I had a ton of devices listed as non UPnP showing up.  Also in the device manager my Drive SM_usb20 (flash drive) driver was unable to load. (Yet I could still access my drive normally) in addition to that it removed my Readyboost settings from my flash drive entirely.

Ty once again for all your help guys.</description>
		<content:encoded><![CDATA[<p>I just want to stop and thank everybody that has posted here for doing so, I have been able to succesfully correct my issue after installing American offlines messenger service by following the UAC instructions above. I had a few other symtoms that occured after installing All outta luck:<br />
     In my device manager I had a ton of devices listed as non UPnP showing up.  Also in the device manager my Drive SM_usb20 (flash drive) driver was unable to load. (Yet I could still access my drive normally) in addition to that it removed my Readyboost settings from my flash drive entirely.</p>
<p>Ty once again for all your help guys.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://bumped.org/tek/2007/10/07/aim-65-and-windows-vista-server-execution-failed-and-media-player-issues/comment-page-2/#comment-6169</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Fri, 28 Mar 2008 16:36:51 +0000</pubDate>
		<guid isPermaLink="false">http://bumped.org/tek/2007/10/07/aim-65-and-windows-vista-server-execution-failed-and-media-player-issues/#comment-6169</guid>
		<description>System restore corrupted the operating system after I tried fixing my AIM issue with it... I really don&#039;t want to have to turn UAC on... It&#039;s annoying. I&#039;m going to try AnonHero&#039;s method with UAC off and see what happens.

After I finish reformatting my laptop that is...</description>
		<content:encoded><![CDATA[<p>System restore corrupted the operating system after I tried fixing my AIM issue with it&#8230; I really don&#8217;t want to have to turn UAC on&#8230; It&#8217;s annoying. I&#8217;m going to try AnonHero&#8217;s method with UAC off and see what happens.</p>
<p>After I finish reformatting my laptop that is&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rezen</title>
		<link>http://bumped.org/tek/2007/10/07/aim-65-and-windows-vista-server-execution-failed-and-media-player-issues/comment-page-2/#comment-6053</link>
		<dc:creator>Rezen</dc:creator>
		<pubDate>Mon, 24 Mar 2008 18:32:55 +0000</pubDate>
		<guid isPermaLink="false">http://bumped.org/tek/2007/10/07/aim-65-and-windows-vista-server-execution-failed-and-media-player-issues/#comment-6053</guid>
		<description>Well, it looks like the compatibility install worked for me! I installed the latest 3-11-08 AIM Install using AnonHero&#039;s compatibility method (also having UAC turned on) and AIM is now installed and Vista Ultimate on my Dell M4300 is running without any of the previous symptoms (Com event error, Network X Icon, Multimedia issues). 

Thank you so much Hero!</description>
		<content:encoded><![CDATA[<p>Well, it looks like the compatibility install worked for me! I installed the latest 3-11-08 AIM Install using AnonHero&#8217;s compatibility method (also having UAC turned on) and AIM is now installed and Vista Ultimate on my Dell M4300 is running without any of the previous symptoms (Com event error, Network X Icon, Multimedia issues). </p>
<p>Thank you so much Hero!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rezen</title>
		<link>http://bumped.org/tek/2007/10/07/aim-65-and-windows-vista-server-execution-failed-and-media-player-issues/comment-page-2/#comment-6050</link>
		<dc:creator>Rezen</dc:creator>
		<pubDate>Mon, 24 Mar 2008 16:33:33 +0000</pubDate>
		<guid isPermaLink="false">http://bumped.org/tek/2007/10/07/aim-65-and-windows-vista-server-execution-failed-and-media-player-issues/#comment-6050</guid>
		<description>I&#039;m one of the few people that the UAC method has NOT worked for. I tried it twice and all the symptoms re-appeared after the next reboot. So I&#039;m still on 6.1.41.2 hoping I don&#039;t get hacked.

I will try the compatibility install today and report back here.</description>
		<content:encoded><![CDATA[<p>I&#8217;m one of the few people that the UAC method has NOT worked for. I tried it twice and all the symptoms re-appeared after the next reboot. So I&#8217;m still on 6.1.41.2 hoping I don&#8217;t get hacked.</p>
<p>I will try the compatibility install today and report back here.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WBMike</title>
		<link>http://bumped.org/tek/2007/10/07/aim-65-and-windows-vista-server-execution-failed-and-media-player-issues/comment-page-2/#comment-5977</link>
		<dc:creator>WBMike</dc:creator>
		<pubDate>Sat, 22 Mar 2008 17:29:18 +0000</pubDate>
		<guid isPermaLink="false">http://bumped.org/tek/2007/10/07/aim-65-and-windows-vista-server-execution-failed-and-media-player-issues/#comment-5977</guid>
		<description>Ok sounds interesting, I&#039;ll leave it up there until others have tested it out. UAC method still seems to be working fine though.</description>
		<content:encoded><![CDATA[<p>Ok sounds interesting, I&#8217;ll leave it up there until others have tested it out. UAC method still seems to be working fine though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AnonHero</title>
		<link>http://bumped.org/tek/2007/10/07/aim-65-and-windows-vista-server-execution-failed-and-media-player-issues/comment-page-2/#comment-5975</link>
		<dc:creator>AnonHero</dc:creator>
		<pubDate>Sat, 22 Mar 2008 17:20:45 +0000</pubDate>
		<guid isPermaLink="false">http://bumped.org/tek/2007/10/07/aim-65-and-windows-vista-server-execution-failed-and-media-player-issues/#comment-5975</guid>
		<description>&lt;font color=&quot;#FF0000&quot;&gt;I may have found a fix.
&gt;Download and save the AIM setup somewhere.
&gt;Run this setup through the programs compatability wizard under start&gt;control panel&gt;programs&gt;use and older program with this version of windows.
&gt;when it asks what version of windows it worked with, select XP sevice pack 2.
&gt;don&#039;t select any color or screen optoins, excetera.
&gt;once you finish the wizard should auto start the AIM installation.

&gt;I&#039;ve doen this and haven&#039;t come across any problems yet, like the network/windows media problems. (which i&#039;ve had before when i installed AIM the normal way.)

Please spread this around and let everyone know, I just posted here to get the word started, the rest is up to you all.&lt;/font&gt;</description>
		<content:encoded><![CDATA[<p><font color="#FF0000">I may have found a fix.<br />
&gt;Download and save the AIM setup somewhere.<br />
&gt;Run this setup through the programs compatability wizard under start&gt;control panel&gt;programs&gt;use and older program with this version of windows.<br />
&gt;when it asks what version of windows it worked with, select XP sevice pack 2.<br />
&gt;don&#8217;t select any color or screen optoins, excetera.<br />
&gt;once you finish the wizard should auto start the AIM installation.</p>
<p>&gt;I&#8217;ve doen this and haven&#8217;t come across any problems yet, like the network/windows media problems. (which i&#8217;ve had before when i installed AIM the normal way.)</p>
<p>Please spread this around and let everyone know, I just posted here to get the word started, the rest is up to you all.</font></p>
]]></content:encoded>
	</item>
</channel>
</rss>

