PC Review


Reply
Thread Tools Rate Thread

Can I delete these folders?

 
 
Bill P
Guest
Posts: n/a
 
      1st Mar 2009
Hi
Using WinXP SP3
There are a couple of folders in C/windows named "Downloaded Programs" and
"Downloaded Installations". They are mainly .msi and .dll files . Can these
be deleted? They seem to relate to stuff I have downloaded and tried in the
past and also free virus scans.
Regards Bill


 
Reply With Quote
 
 
 
 
Malke
Guest
Posts: n/a
 
      1st Mar 2009
Bill P wrote:

> Hi
> Using WinXP SP3
> There are a couple of folders in C/windows named "Downloaded Programs" and
> "Downloaded Installations". They are mainly .msi and .dll files . Can
> these be deleted? They seem to relate to stuff I have downloaded and tried
> in the past and also free virus scans.
> Regards Bill


You can delete the *items* inside the folders if you are 100% sure you no
longer have the programs installed. Do not delete the *folders*.

Malke
--
MS-MVP
Elephant Boy Computers - Don't Panic!
http://www.elephantboycomputers.com/#FAQ

 
Reply With Quote
 
Gurpreet Singh
Guest
Posts: n/a
 
      1st Mar 2009
You should not normally delete anything inside windows folder. Some of these
..msi's and dll's may be required by your installed applications. The windows
installer service keeps a copy of the installed msi files in the msi cache
and these files may be required along with the cache. Run the following
script to check if any of these msi files are associated with installed
applications. copy the following lines in a .vbs file and save it on your
desktop. then double click the vbs file to execute the script. it will create
a csv file readable in excel which will give you a list of all installed
applications, msi cache etc

On error resume next
Dim sComputerName,WMI_Obj,WMI_ObjProps,ObjClsItem
sComputerName=InputBox("Enter Computer Name: . for local computer
","Select target computer",".")
If Len(Trim(sComputerName)) = 0 Then sComputerName = "."
Set WMI_Obj = GetObject("winmgmts:\\" & sComputerName & "\root\cimv2")
Set WMI_ObjProps = WMI_Obj.ExecQuery("Select * from Win32_Product", , 48)

Set filesys = CreateObject("Scripting.FileSystemObject")
Set results = filesys.CreateTextFile("Win32_Product_output.csv")
results.writeline "AssignmentType, Caption, Description, HelpLink,
HelpTelephone, IdentifyingNumber, InstallDate, InstallDate2, InstallLocation,
InstallSource, InstallState, Language, LocalPackage, Name, PackageCache,
PackageCode, PackageName, ProductID, RegCompany, RegOwner, SKUNumber,
Transforms, URLInfoAbout, URLUpdateInfo, Vendor, Version, WordCount, "

For Each ObjClsItem in WMI_ObjProps
results.writeline ObjClsItem.AssignmentType & "," & ObjClsItem.Caption &
"," & ObjClsItem.Description & "," & ObjClsItem.HelpLink & "," &
ObjClsItem.HelpTelephone & "," & ObjClsItem.IdentifyingNumber & "," &
ObjClsItem.InstallDate & "," & ObjClsItem.InstallDate2 & "," &
ObjClsItem.InstallLocation & "," & ObjClsItem.InstallSource & "," &
ObjClsItem.InstallState & "," & ObjClsItem.Language & "," &
ObjClsItem.LocalPackage & "," & ObjClsItem.Name & "," &
ObjClsItem.PackageCache & "," & ObjClsItem.PackageCode & "," &
ObjClsItem.PackageName & "," & ObjClsItem.ProductID & "," &
ObjClsItem.RegCompany & "," & ObjClsItem.RegOwner & "," &
ObjClsItem.SKUNumber & "," & ObjClsItem.Transforms & "," &
ObjClsItem.URLInfoAbout & "," & ObjClsItem.URLUpdateInfo & "," &
ObjClsItem.Vendor & "," & ObjClsItem.Version & "," & ObjClsItem.WordCount &
"," & " "


Next

Wscript.Echo "Done ! Check Win32_Product_output.csv"
--
Regards
Gurpreet Singh


"Malke" wrote:

> Bill P wrote:
>
> > Hi
> > Using WinXP SP3
> > There are a couple of folders in C/windows named "Downloaded Programs" and
> > "Downloaded Installations". They are mainly .msi and .dll files . Can
> > these be deleted? They seem to relate to stuff I have downloaded and tried
> > in the past and also free virus scans.
> > Regards Bill

>
> You can delete the *items* inside the folders if you are 100% sure you no
> longer have the programs installed. Do not delete the *folders*.
>
> Malke
> --
> MS-MVP
> Elephant Boy Computers - Don't Panic!
> http://www.elephantboycomputers.com/#FAQ
>
>

 
Reply With Quote
 
Don Phillipson
Guest
Posts: n/a
 
      1st Mar 2009
"Bill P" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...

> Using WinXP SP3
> There are a couple of folders in C/windows named "Downloaded Programs" and
> "Downloaded Installations". They are mainly .msi and .dll files . Can

these
> be deleted? They seem to relate to stuff I have downloaded and tried in

the
> past and also free virus scans.


If in doubt, tidy your hard drive by a two-step process.
1. Make a new folder C:\Park and MOVE into it all these files.
Reboot and run as normal.
2. If you get any error messages "file not found" you can
probably tell whether they are trying to call files you have
relocated -- and you can put them back. But if you get no
error messages after running in a couple of weeks all the
apps you commonly use you can simply remove C:\Park
and all its contents.

--
Don Phillipson
Carlsbad Springs
(Ottawa, Canada)


 
Reply With Quote
 
Bill P
Guest
Posts: n/a
 
      1st Mar 2009

"Malke" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> Bill P wrote:
>
>> Hi
>> Using WinXP SP3
>> There are a couple of folders in C/windows named "Downloaded Programs"
>> and
>> "Downloaded Installations". They are mainly .msi and .dll files . Can
>> these be deleted? They seem to relate to stuff I have downloaded and
>> tried
>> in the past and also free virus scans.
>> Regards Bill

>
> You can delete the *items* inside the folders if you are 100% sure you no
> longer have the programs installed. Do not delete the *folders*.
>
> Malke
> --
> MS-MVP
> Elephant Boy Computers - Don't Panic!
> http://www.elephantboycomputers.com/#FAQ
>
>


Thanks Malke
As an example, in the "Downloaded Installations" there are a number of
sub-folders named eg {581DFC98-4745-4215-990E-081D7F86DDD0} inside which is
a single file "WinPatrol.msi".

I do have WinPatrol installed on my machine. Is it still necessary to retain
the .msi file?

Bill


 
Reply With Quote
 
Malke
Guest
Posts: n/a
 
      1st Mar 2009
Bill P wrote:

>
> "Malke" <(E-Mail Removed)> wrote in message
> news:%(E-Mail Removed)...
>> Bill P wrote:
>>
>>> Hi
>>> Using WinXP SP3
>>> There are a couple of folders in C/windows named "Downloaded Programs"
>>> and
>>> "Downloaded Installations". They are mainly .msi and .dll files . Can
>>> these be deleted? They seem to relate to stuff I have downloaded and
>>> tried
>>> in the past and also free virus scans.
>>> Regards Bill

>>
>> You can delete the *items* inside the folders if you are 100% sure you no
>> longer have the programs installed. Do not delete the *folders*.
>>
>> Malke
>> --
>> MS-MVP
>> Elephant Boy Computers - Don't Panic!
>> http://www.elephantboycomputers.com/#FAQ
>>
>>

>
> Thanks Malke
> As an example, in the "Downloaded Installations" there are a number of
> sub-folders named eg {581DFC98-4745-4215-990E-081D7F86DDD0} inside which
> is a single file "WinPatrol.msi".
>
> I do have WinPatrol installed on my machine. Is it still necessary to
> retain the .msi file?


As I said:

>>You can delete the *items* inside the folders if you are 100% sure you no
>> longer have the programs installed. Do not delete the *folders*.


So if you don't have WinPatrol any more (you properly uninstalled it), then
you can safely delete the entry.

Malke
--
MS-MVP
Elephant Boy Computers - Don't Panic!
http://www.elephantboycomputers.com/#FAQ

 
Reply With Quote
 
Bill P
Guest
Posts: n/a
 
      1st Mar 2009

"Don Phillipson" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> "Bill P" <(E-Mail Removed)> wrote in message
> news:%(E-Mail Removed)...
>
>> Using WinXP SP3
>> There are a couple of folders in C/windows named "Downloaded Programs"
>> and
>> "Downloaded Installations". They are mainly .msi and .dll files . Can

> these
>> be deleted? They seem to relate to stuff I have downloaded and tried in

> the
>> past and also free virus scans.

>
> If in doubt, tidy your hard drive by a two-step process.
> 1. Make a new folder C:\Park and MOVE into it all these files.
> Reboot and run as normal.
> 2. If you get any error messages "file not found" you can
> probably tell whether they are trying to call files you have
> relocated -- and you can put them back. But if you get no
> error messages after running in a couple of weeks all the
> apps you commonly use you can simply remove C:\Park
> and all its contents.
>
> --
> Don Phillipson
> Carlsbad Springs
> (Ottawa, Canada)
>
>
>


Thanks Don, I'll do that.
Regards Bill


 
Reply With Quote
 
Anthony Buckland
Guest
Posts: n/a
 
      1st Mar 2009

"Bill P" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> Hi
> Using WinXP SP3
> There are a couple of folders in C/windows named "Downloaded Programs" and
> "Downloaded Installations". They are mainly .msi and .dll files . Can
> these be deleted? They seem to relate to stuff I have downloaded and tried
> in the past and also free virus scans.
> Regards Bill


I presume in at least some cases you paid good money for
these installation files. If there's any doubt, such as whether
you will ever want to use the software in the future, or such
as whether you really truly know what the software is, why
get rid of it? Disk space is cheap. MHO.


 
Reply With Quote
 
Bill P
Guest
Posts: n/a
 
      2nd Mar 2009
Thanks Gurpreet but that is far far too complicated for me .
Regards Bill




"Gurpreet Singh" <(E-Mail Removed)> wrote in message
news:75103E17-D189-4F54-B39B-(E-Mail Removed)...
> You should not normally delete anything inside windows folder. Some of
> these
> .msi's and dll's may be required by your installed applications. The
> windows
> installer service keeps a copy of the installed msi files in the msi cache
> and these files may be required along with the cache. Run the following
> script to check if any of these msi files are associated with installed
> applications. copy the following lines in a .vbs file and save it on your
> desktop. then double click the vbs file to execute the script. it will
> create
> a csv file readable in excel which will give you a list of all installed
> applications, msi cache etc
>
> On error resume next
> Dim sComputerName,WMI_Obj,WMI_ObjProps,ObjClsItem
> sComputerName=InputBox("Enter Computer Name: . for local computer
> ","Select target computer",".")
> If Len(Trim(sComputerName)) = 0 Then sComputerName = "."
> Set WMI_Obj = GetObject("winmgmts:\\" & sComputerName & "\root\cimv2")
> Set WMI_ObjProps = WMI_Obj.ExecQuery("Select * from Win32_Product", ,
> 48)
>
> Set filesys = CreateObject("Scripting.FileSystemObject")
> Set results = filesys.CreateTextFile("Win32_Product_output.csv")
> results.writeline "AssignmentType, Caption, Description, HelpLink,
> HelpTelephone, IdentifyingNumber, InstallDate, InstallDate2,
> InstallLocation,
> InstallSource, InstallState, Language, LocalPackage, Name, PackageCache,
> PackageCode, PackageName, ProductID, RegCompany, RegOwner, SKUNumber,
> Transforms, URLInfoAbout, URLUpdateInfo, Vendor, Version, WordCount, "
>
> For Each ObjClsItem in WMI_ObjProps
> results.writeline ObjClsItem.AssignmentType & "," & ObjClsItem.Caption &
> "," & ObjClsItem.Description & "," & ObjClsItem.HelpLink & "," &
> ObjClsItem.HelpTelephone & "," & ObjClsItem.IdentifyingNumber & "," &
> ObjClsItem.InstallDate & "," & ObjClsItem.InstallDate2 & "," &
> ObjClsItem.InstallLocation & "," & ObjClsItem.InstallSource & "," &
> ObjClsItem.InstallState & "," & ObjClsItem.Language & "," &
> ObjClsItem.LocalPackage & "," & ObjClsItem.Name & "," &
> ObjClsItem.PackageCache & "," & ObjClsItem.PackageCode & "," &
> ObjClsItem.PackageName & "," & ObjClsItem.ProductID & "," &
> ObjClsItem.RegCompany & "," & ObjClsItem.RegOwner & "," &
> ObjClsItem.SKUNumber & "," & ObjClsItem.Transforms & "," &
> ObjClsItem.URLInfoAbout & "," & ObjClsItem.URLUpdateInfo & "," &
> ObjClsItem.Vendor & "," & ObjClsItem.Version & "," &
> ObjClsItem.WordCount &
> "," & " "
>
>
> Next
>
> Wscript.Echo "Done ! Check Win32_Product_output.csv"
> --
> Regards
> Gurpreet Singh
>
>
> "Malke" wrote:
>
>> Bill P wrote:
>>
>> > Hi
>> > Using WinXP SP3
>> > There are a couple of folders in C/windows named "Downloaded Programs"
>> > and
>> > "Downloaded Installations". They are mainly .msi and .dll files . Can
>> > these be deleted? They seem to relate to stuff I have downloaded and
>> > tried
>> > in the past and also free virus scans.
>> > Regards Bill

>>
>> You can delete the *items* inside the folders if you are 100% sure you no
>> longer have the programs installed. Do not delete the *folders*.
>>
>> Malke
>> --
>> MS-MVP
>> Elephant Boy Computers - Don't Panic!
>> http://www.elephantboycomputers.com/#FAQ
>>
>>

>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

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 On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Special permissions - Delete and Delete Files and Folders Paul Dunn Microsoft Windows 2000 0 2nd May 2006 08:02 PM
Hide/Delete Deleted Items & Search Folders Folders in Outlook 2003 =?Utf-8?B?anBzcHJpbmdhbGw=?= Microsoft Outlook VBA Programming 1 24th Apr 2006 02:51 PM
Can't delete files, folders or create folders with explorer =?Utf-8?B?TWFjb24=?= Windows XP Help 0 14th May 2005 01:29 PM
NTFS permission to delete files, but not delete or move folders =?Utf-8?B?R29yZG9u?= Microsoft Windows 2000 File System 0 11th Feb 2005 03:37 PM
Outlook 2002 Delete Empty Folders from Personal Folders Greg Hadlock Microsoft Outlook Program Addins 0 29th Jul 2003 03:17 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 02:52 PM.