PC Review


Reply
Thread Tools Rate Thread

csc-download.com.msi

 
 
Steven
Guest
Posts: n/a
 
      12th Dec 2007
After recovering from an adware/spyware infection, I now find myself with a
program start issue. Some programs now do not start correctly. Programs such
as Comodo's new version of their firewall show this message when the program
tries to start: "Windows Installer is trying to find the installation package
'CSC-Download.com.msi' in a folder from which you can install." It looks for
this package on a CD Rom or other removable disk, Path#1. Windows Installer
does not find it and I cancel whatever its asking for. The program then
launches normally. Sometimes it takes several tries to cancel installation of
'CSC-Download.com.msi" before the program opens. If this was removed
accidentally, how can I replace this "MSI" file?
 
Reply With Quote
 
 
 
 
gsjutla
Guest
Posts: n/a
 
      12th Dec 2007
It appears that the adware/spyware etc corrupted quite a lot of stuff on your
box. The windows installer maintains a record of all files associated with a
installed application and also maintains a cache of all msi files required to
automatically fix a broken app. In your case it appears that the windows
installer msi cache has also gone corrupt and windows installer is unable to
automatically fix/replace corrupted components. On a working box try the
following to see what I mean. Create a test.vbs file and run it on your box
to get a list of installed application and the msi cache information

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"


"Steven" wrote:

> After recovering from an adware/spyware infection, I now find myself with a
> program start issue. Some programs now do not start correctly. Programs such
> as Comodo's new version of their firewall show this message when the program
> tries to start: "Windows Installer is trying to find the installation package
> 'CSC-Download.com.msi' in a folder from which you can install." It looks for
> this package on a CD Rom or other removable disk, Path#1. Windows Installer
> does not find it and I cancel whatever its asking for. The program then
> launches normally. Sometimes it takes several tries to cancel installation of
> 'CSC-Download.com.msi" before the program opens. If this was removed
> accidentally, how can I replace this "MSI" file?

 
Reply With Quote
 
gsjutla
Guest
Posts: n/a
 
      12th Dec 2007
Package cache is maintained under %windir%\installer and if this is not found
it will attempt to fix it trying to reach the install path used to install
the app

"Steven" wrote:

> After recovering from an adware/spyware infection, I now find myself with a
> program start issue. Some programs now do not start correctly. Programs such
> as Comodo's new version of their firewall show this message when the program
> tries to start: "Windows Installer is trying to find the installation package
> 'CSC-Download.com.msi' in a folder from which you can install." It looks for
> this package on a CD Rom or other removable disk, Path#1. Windows Installer
> does not find it and I cancel whatever its asking for. The program then
> launches normally. Sometimes it takes several tries to cancel installation of
> 'CSC-Download.com.msi" before the program opens. If this was removed
> accidentally, how can I replace this "MSI" file?

 
Reply With Quote
 
Steven
Guest
Posts: n/a
 
      14th Dec 2007
Thank you so much for responding. Your reply did go beyond my skill level.
The only language I have learned is basic HTML as a project to create a web
page for my wife. I do not know how to create a test.vbs file.
Unfortunately it appears that it is not fixable without reloading windows. I
was hoping for a quick fix. Oh well.


"gsjutla" wrote:

> It appears that the adware/spyware etc corrupted quite a lot of stuff on your
> box. The windows installer maintains a record of all files associated with a
> installed application and also maintains a cache of all msi files required to
> automatically fix a broken app. In your case it appears that the windows
> installer msi cache has also gone corrupt and windows installer is unable to
> automatically fix/replace corrupted components. On a working box try the
> following to see what I mean. Create a test.vbs file and run it on your box
> to get a list of installed application and the msi cache information
>
> 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"
>
>
> "Steven" wrote:
>
> > After recovering from an adware/spyware infection, I now find myself with a
> > program start issue. Some programs now do not start correctly. Programs such
> > as Comodo's new version of their firewall show this message when the program
> > tries to start: "Windows Installer is trying to find the installation package
> > 'CSC-Download.com.msi' in a folder from which you can install." It looks for
> > this package on a CD Rom or other removable disk, Path#1. Windows Installer
> > does not find it and I cancel whatever its asking for. The program then
> > launches normally. Sometimes it takes several tries to cancel installation of
> > 'CSC-Download.com.msi" before the program opens. If this was removed
> > accidentally, how can I replace this "MSI" file?

 
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
download now ecm2001 crack torrent rapidshare download NN&gqAjT)U ecm2001 winols cpwin rapidshare torrent Microsoft Access Macros 0 5th Oct 2009 12:25 AM
attempts to download office home free trial download mark Windows XP Help 2 26th Jun 2008 03:46 PM
IE 6.0 Unable to Download files - Attempting to When you attempt to download a file from a Web site, the Copying dialog box may appear ... Internet Explorer Window Closes When You Click a Download Link . Robert Cox Windows XP Internet Explorer 6 5th Sep 2007 09:08 PM
Save Manual Download HotPatches in Windows\Softwaredistribution\download?? Tagman Windows XP Setup 2 24th Jun 2006 07:35 PM
download manager good for capturing redirected download links? spoon2001 Freeware 5 21st Aug 2005 11:00 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 09:47 AM.