Winword Dropdown
Hi,
I have a packaged app that when uninstalled, it doesn't remove a menu item from MS Word. I'm using Office 2003. When I go to "File" and the menu comes up, there is an item that is still there and I need it removed for my uninstall to be completed. Where can I check for this menu item and remove it?
Thanks
I have a packaged app that when uninstalled, it doesn't remove a menu item from MS Word. I'm using Office 2003. When I go to "File" and the menu comes up, there is an item that is still there and I need it removed for my uninstall to be completed. Where can I check for this menu item and remove it?
Thanks
0 Comments
[ + ] Show comments
Answers (6)
Please log in to answer
Posted by:
slay_u
14 years ago
Posted by:
MsiCreator
14 years ago
Posted by:
yuri
14 years ago
Posted by:
Secondlaw
14 years ago
Posted by:
cygan
14 years ago
Posted by:
anonymous_9363
14 years ago
I'd wager a considerable sum that the original installer included a Custom Action which added the menu item but failed to include a companion CA for uninstallation purposes: it's surprisingly common. Or it could be that the add-in itself adds thye menu item but also fails to account for its removal. Developers can be a bit like that: "who would [I]ever[/I] want to remove my lovely application?"
The thing to do is to record the removal of the menu item in Word itself, after which you end up with some VBA. This is easily converted to VBScript. Most of the time, all you need to do is remove the data typing from variables, so that, for example
The thing to do is to record the removal of the menu item in Word itself, after which you end up with some VBA. This is easily converted to VBScript. Most of the time, all you need to do is remove the data typing from variables, so that, for example
Dim objWord As Word.Application
becomesDim objWord
Once you have the code, drop it into a VBS and test. If all goes well, slam it into a Custom Action, remembering to condition the CA withIF REMOVE~="ALL"
so that it only executes at uninstall time.
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
so that the conversation will remain readable.