Indigo Rose Software

Professional Software Development Tools

 
Results 1 to 4 of 4
  1. #1
    Join Date
    Sep 2006
    Posts
    7

    Invalid uninstall control

    Hello

    I've created a setup that just install thousands of text files on computer. It's like a package with many texts on it. But i was testing it and when i try to uninstall i get an error telling me:
    "Invalid Uninstall Control File X:\program directory\uninstall\uninstall.xml"

    I haven't done any different code or script for that setup application, so i don't understand why it isn't work. The installation process goes fine.

    Anyone know how to fix this?

    Thanks

  2. #2
    Join Date
    May 2000
    Location
    Indigo Rose Software
    Posts
    2,150
    It's tough to say where the issue lies without more information. Does the uninstall show up in the "Add Remove Programs"? Does any part of this uninstall run?

    Adam Kapilik

  3. #3
    Join Date
    Jun 2005
    Posts
    470
    I've never had such a problem so this is just a speculation.

    If the files are really thousands, maybe the uninstallation data file becomes too big or entries in it too much, which somehow confuses the uninstall runtime. Or maybe some file name contains characters that confuse it.

    So try not to add all these files to the uninstall data file - this means you should remove them with some script action during uninstall.

    If I correctly remember[check docs] any file placed during install via some script action is not handled by the uninstaller , and so I guess is not referred in the uninstall data file. If you put all the txt files in a zip, add this zip to your installation, and during install extract files form the zip [see zip plugin], all these files will likely not be referenced in the uninstall data.
    To remove all these files, use an action or create and run a .bat file or something else that deletes *.txt from the specified dir(s).

  4. #4
    Join Date
    Feb 2001
    Location
    Indigo Rose Software
    Posts
    2,728
    Quote Originally Posted by pww View Post
    I've never had such a problem so this is just a speculation.

    If the files are really thousands, maybe the uninstallation data file becomes too big or entries in it too much, which somehow confuses the uninstall runtime. Or maybe some file name contains characters that confuse it.

    So try not to add all these files to the uninstall data file - this means you should remove them with some script action during uninstall.
    I would advise against this -- AFAIK there is no problem with having "too many entries" in the uninstallation data file. Maybe if we were talking millions of files, or something equally unlikely, but even then I'd doubt it.

    We really need more information before we can start to guess. For one thing, "X:\program directory\" is a pretty unlikely path.
    --[[ Indigo Rose Software Developer ]]

Similar Threads

  1. Control Panel Uninstall
    By Staggan in forum Setup Factory 7.0
    Replies: 5
    Last Post: 08-24-2006, 10:10 AM
  2. Uninstall Data – Questions and Bugs (?)
    By csd214 in forum Setup Factory 7.0
    Replies: 5
    Last Post: 06-21-2005, 11:05 AM
  3. Control Panel uninstall icon
    By tmluke in forum Setup Factory 6.0
    Replies: 1
    Last Post: 11-10-2004, 08:03 AM
  4. HOWTO: Register an ActiveX Control
    By Support in forum Setup Factory 6.0 Knowledge Base
    Replies: 0
    Last Post: 09-27-2002, 02:13 PM
  5. HOWTO: Include Uninstall Support
    By Support in forum Setup Factory 6.0 Knowledge Base
    Replies: 0
    Last Post: 09-26-2002, 02:33 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts