Technology Questions

Go Back   Technology Questions > Software Questions > Operating System Questions > Vista Community > Windows Vista

Windows Vista Discuss the different versions of Windows Vista, Fuji, or Vienna

Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old 03-31-2007, 02:30 PM
Robert Aldwinckle
Newsgroup Contributor
 
Posts: n/a
Re: Removing Items from Download Program Files - Vista

(cross-post added to Vista General)
"Derek Deida" <Derek [email]Deida@discussions.microsoft.com[/email]> wrote in message
news:C8DE7B5E-D6B1-44EC-8F66-865EE2C9AC6C@microsoft.com...[color=blue]
> Does anyone know how to remove individual objects from the folder
> C:\Windows\Downloaded Program Files
>
> This is the folder that is displayed when going to Internet Options >
> General Tab/Browsing History/Settings > View Objects. There are often ActiveX
> objects in this folder which are listed as "Damaged" or are otherwise
> corrupted.[/color]


I see that on XP too. I think that rather than the objects being damaged
that the Dependency tab in the Properties page is broken.
An unhandled consequence of removing MSJAva perhaps? ; }

[color=blue]
>
> Back in Windows XP it was a simple as right-clicking on a damaged object and
> choosing "Remove" or "Delete."
> Under Windows Vista it does not appear that there is a way to remove objects
> from this folder.
>
> I've read that this feature has been removed from Windows Vista... and that
> you're supposed to now use the "Manage Add-Ons" dialog to remove ActiveX
> controls. Take a look at my Downloaded Program Files folder, however...
> there's an object names {6414512b-b978...yadda yadda. This does not show up
> in my Manage Add-Ons dialog... does anyone know how to remove this object??[/color]


Try finding out what it is? E.g. doubleclick on it to see its Properties
and use the Version tab?

[color=blue]
>
> You can view a screenshot of my Downloaded Program Files dialog here:
> [url]http://thevistaforums.com/index.php?showtopic=10589[/url][/color]


Requires login? ; }

FWIW in XP the Downloaded Program Files is a special view,
not a normal folder but in XP it maps directly to a normal subdirectory.
So, you can capture the path to that subdirectory from your Address bar
and switch to a cmd window then type:

cd /d

leave at least one space after the switch; then right-click, Paste
and then press Enter.

dir/a

should show you what is really in that subdirectory.
Then you may find that that GUID you're looking at is mentioned
in an .inf file there.

findstr /miL "{6414512b-b978" *

So then open whatever you find, in Notepad and browse it for more
clues about the implementation or origin of the feature.

It looks as if you could also get more information about the GUID
by using Properties on it in the special view though. E.g. I just opened
wuweb.inf and found only some of the information that the Properties tab
is showing. I suspect it could be getting that by querying the .dll the .inf
file points to (which in this particular case is in %windir%\System32.)
I would try running ProcMon to try to see if there were file and registry
accesses when using the Properties page which supports that idea.

I don't use Vista and this implementation may have changed in it.
Cross-posting to Vista General.


HTH

Robert Aldwinckle
---



Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

 
Old 03-31-2007, 02:30 PM
  #2 (permalink)  
Old 03-31-2007, 02:45 PM
Cal Bear '66
Newsgroup Contributor
 
Posts: n/a
Re: Removing Items from Download Program Files - Vista

Right click on drive in Windows Explorer and choose Disk Cleanup, select Downloaded Program Files.


"Robert Aldwinckle" <robald@techemail.com> wrote in message news:uLt3vp9cHHA.4388@TK2MSFTNGP05.phx.gbl...[color=blue]
> (cross-post added to Vista General)
> "Derek Deida" <Derek [email]Deida@discussions.microsoft.com[/email]> wrote in message
> news:C8DE7B5E-D6B1-44EC-8F66-865EE2C9AC6C@microsoft.com...[color=green]
>> Does anyone know how to remove individual objects from the folder
>> C:\Windows\Downloaded Program Files
>>
>> This is the folder that is displayed when going to Internet Options >
>> General Tab/Browsing History/Settings > View Objects. There are often ActiveX
>> objects in this folder which are listed as "Damaged" or are otherwise
>> corrupted.[/color]
>
>
> I see that on XP too. I think that rather than the objects being damaged
> that the Dependency tab in the Properties page is broken.
> An unhandled consequence of removing MSJAva perhaps? ; }
>
> [color=green]
>>
>> Back in Windows XP it was a simple as right-clicking on a damaged object and
>> choosing "Remove" or "Delete."
>> Under Windows Vista it does not appear that there is a way to remove objects
>> from this folder.
>>
>> I've read that this feature has been removed from Windows Vista... and that
>> you're supposed to now use the "Manage Add-Ons" dialog to remove ActiveX
>> controls. Take a look at my Downloaded Program Files folder, however...
>> there's an object names {6414512b-b978...yadda yadda. This does not show up
>> in my Manage Add-Ons dialog... does anyone know how to remove this object??[/color]
>
>
> Try finding out what it is? E.g. doubleclick on it to see its Properties
> and use the Version tab?
>
> [color=green]
>>
>> You can view a screenshot of my Downloaded Program Files dialog here:
>> [url]http://thevistaforums.com/index.php?showtopic=10589[/url][/color]
>
>
> Requires login? ; }
>
> FWIW in XP the Downloaded Program Files is a special view,
> not a normal folder but in XP it maps directly to a normal subdirectory.
> So, you can capture the path to that subdirectory from your Address bar
> and switch to a cmd window then type:
>
> cd /d
>
> leave at least one space after the switch; then right-click, Paste
> and then press Enter.
>
> dir/a
>
> should show you what is really in that subdirectory.
> Then you may find that that GUID you're looking at is mentioned
> in an .inf file there.
>
> findstr /miL "{6414512b-b978" *
>
> So then open whatever you find, in Notepad and browse it for more
> clues about the implementation or origin of the feature.
>
> It looks as if you could also get more information about the GUID
> by using Properties on it in the special view though. E.g. I just opened
> wuweb.inf and found only some of the information that the Properties tab
> is showing. I suspect it could be getting that by querying the .dll the .inf
> file points to (which in this particular case is in %windir%\System32.)
> I would try running ProcMon to try to see if there were file and registry
> accesses when using the Properties page which supports that idea.
>
> I don't use Vista and this implementation may have changed in it.
> Cross-posting to Vista General.
>
>
> HTH
>
> Robert Aldwinckle
> ---
>
>
>[/color]
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #3 (permalink)  
Old 05-29-2007, 11:30 PM
catfish1
Newsgroup Contributor
 
Posts: n/a
Re: Removing Items from Download Program Files - Vista

It is still there after all the above processes. Any other ideas?

"Cal Bear '66" wrote:
[color=blue]
> Right click on drive in Windows Explorer and choose Disk Cleanup, select
> Downloaded Program Files.
>
>
> "Robert Aldwinckle" <robald@techemail.com> wrote in message
> news:uLt3vp9cHHA.4388@TK2MSFTNGP05.phx.gbl...[color=green]
> > (cross-post added to Vista General)
> > "Derek Deida" <Derek [email]Deida@discussions.microsoft.com[/email]> wrote in message
> > news:C8DE7B5E-D6B1-44EC-8F66-865EE2C9AC6C@microsoft.com...[color=darkred]
> >> Does anyone know how to remove individual objects from the folder
> >> C:\Windows\Downloaded Program Files
> >>
> >> This is the folder that is displayed when going to Internet Options >
> >> General Tab/Browsing History/Settings > View Objects. There are often[/color][/color]
> ActiveX[color=green][color=darkred]
> >> objects in this folder which are listed as "Damaged" or are otherwise
> >> corrupted.[/color]
> >
> >
> > I see that on XP too. I think that rather than the objects being[/color]
> damaged[color=green]
> > that the Dependency tab in the Properties page is broken.
> > An unhandled consequence of removing MSJAva perhaps? ; }
> >
> >[color=darkred]
> >>
> >> Back in Windows XP it was a simple as right-clicking on a damaged[/color][/color]
> object and[color=green][color=darkred]
> >> choosing "Remove" or "Delete."
> >> Under Windows Vista it does not appear that there is a way to remove[/color][/color]
> objects[color=green][color=darkred]
> >> from this folder.
> >>
> >> I've read that this feature has been removed from Windows Vista... and[/color][/color]
> that[color=green][color=darkred]
> >> you're supposed to now use the "Manage Add-Ons" dialog to remove[/color][/color]
> ActiveX[color=green][color=darkred]
> >> controls. Take a look at my Downloaded Program Files folder, however...
> >> there's an object names {6414512b-b978...yadda yadda. This does not[/color][/color]
> show up[color=green][color=darkred]
> >> in my Manage Add-Ons dialog... does anyone know how to remove this[/color][/color]
> object??[color=green]
> >
> >
> > Try finding out what it is? E.g. doubleclick on it to see its[/color]
> Properties[color=green]
> > and use the Version tab?
> >
> >[color=darkred]
> >>
> >> You can view a screenshot of my Downloaded Program Files dialog here:
> >> [url]http://thevistaforums.com/index.php?showtopic=10589[/url][/color]
> >
> >
> > Requires login? ; }
> >
> > FWIW in XP the Downloaded Program Files is a special view,
> > not a normal folder but in XP it maps directly to a normal subdirectory.
> > So, you can capture the path to that subdirectory from your Address bar
> > and switch to a cmd window then type:
> >
> > cd /d
> >
> > leave at least one space after the switch; then right-click, Paste
> > and then press Enter.
> >
> > dir/a
> >
> > should show you what is really in that subdirectory.
> > Then you may find that that GUID you're looking at is mentioned
> > in an .inf file there.
> >
> > findstr /miL "{6414512b-b978" *
> >
> > So then open whatever you find, in Notepad and browse it for more
> > clues about the implementation or origin of the feature.
> >
> > It looks as if you could also get more information about the GUID
> > by using Properties on it in the special view though. E.g. I just[/color]
> opened[color=green]
> > wuweb.inf and found only some of the information that the Properties[/color]
> tab[color=green]
> > is showing. I suspect it could be getting that by querying the .dll[/color]
> the .inf[color=green]
> > file points to (which in this particular case is in %windir%\System32.)
> > I would try running ProcMon to try to see if there were file and[/color]
> registry[color=green]
> > accesses when using the Properties page which supports that idea.
> >
> > I don't use Vista and this implementation may have changed in it.
> > Cross-posting to Vista General.
> >
> >
> > HTH
> >
> > Robert Aldwinckle
> > ---
> >
> >
> >[/color]
>[/color]
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Reply

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is Off
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
removing a program from Vista Home Edition SuperSimon Windows Vista 4 05-15-2008 07:20 AM
Vista adding and removing virus program MrsOWL Windows Vista 4 10-26-2007 10:40 PM
Removing Items from Download Program Files - Vista Derek Deida Internet Explorer 8 05-29-2007 11:40 PM
Removing unwanted folders/files in Program Files The Seabat Windows XP 7 04-02-2007 10:45 AM
Removing program files Cliff Wild Windows XP 2 01-05-2007 09:45 AM


New To Technology Questions? Do You Need Help with Your Computer or Device? Do You Need Help with this site?

All times are GMT -8. The time now is 01:30 AM.


2003 - 2009 All Rights Reserved. Technology Questions

Search Engine Friendly URLs by vBSEO 3.3.0