This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Re: Please Help!
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Sep 14, 2009
06:03 AM
Please Help!
I am not able to fully uninstall my application.I am using Basic Msi project.After uninstallation , although all the other files and dlls are deleted but the folder structure(empty folders and subfolders) still remains intact along with the log file.What steps do I have to take in order to remove this "left over"( folder structure) too ? 😞
(4) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Sep 14, 2009
09:17 AM
The folders should be removed if they were created during the installation and are empty after uninstallation. You might try validating your package to see if that gives you any clue as to why they didn't get removed. (Or log the uninstallation and see if you get any clues in there.)
What log file are you referring to? If it is created by your application, you should be able to remove it on uninstallation using the RemoveFile table.
What log file are you referring to? If it is created by your application, you should be able to remove it on uninstallation using the RemoveFile table.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Sep 15, 2009
04:24 AM
Thank you very much 🙂
Yeah the logfiles are created by my application in Log folder..
Had these log files be only one or two then I could have populated all of them in the remove file table using direct editor,but these log files are different for everyday.:(
Can you please guide me again regarding this issue.
Yeah the logfiles are created by my application in Log folder..
Had these log files be only one or two then I could have populated all of them in the remove file table using direct editor,but these log files are different for everyday.:(
Can you please guide me again regarding this issue.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Sep 15, 2009
04:28 AM
The removefile table supports wildcards so you could remove file *.log or whatever the extension you use is. Then you can have another entry in the same table specifying the directory without specifying the files which will also remove the folder. Please note though that a folder cannot be deleted if it contains other files or folders so you need to add entries for each sub folder and files if there are any
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Sep 15, 2009
04:57 AM
Thanks I got it .I am making an empty folder Log and then in the remove table ..I am passing *.* in the file name and "Log" as directory property and YAY :cool: it works ..Yipeee:D