uninstall

Apache 2.4 - remove | delete | uninstall

自作多情 提交于 2019-12-07 14:51:29
问题 I have been searching the web for quite some time, but I could not found how to completely remove the apache 2.4 . Using : Windows 7 c:\apache24\ I've tried all commands, but nothing works. httpd -k shutdown httpd -k stop httpd -k uninstall keep getting the same result (for each command) : <OS 5> access is denied. failed to open the 'Apache2.4' service. notice, that the service still running, meaning that the apache is still working, and I get the "It works!" in the localhost . 回答1: You are

Prevent uninstall in setup project with OnBeforeUninstall

两盒软妹~` 提交于 2019-12-07 14:06:14
问题 I overrode OnBeforeUninstall to stop my application's setup project from uninstalling it under certain circumstances, but it seems like it is just not being called and has no effect. protected override void OnBeforeUninstall(IDictionary savedState) { if (ApplicationIsBusy()) throw new ApplicationException("Prevent uninstall while application busy."); } I am able to cancel uninstall by overriding the Uninstall method, but by then the setup project has already closed my application. How do I

uninstaller not deleting registry

坚强是说给别人听的谎言 提交于 2019-12-07 13:02:57
问题 Function Check32or64BitWindows ${If} ${RunningX64} strcpy $INSTDIR "$PROGRAMFILES64\${APP_FULL_PATH}" SetRegView 64 ${Else} SetRegView 32 strcpy $INSTDIR "$PROGRAMFILES32\${APP_FULL_PATH}" ${EndIf} FunctionEnd If an older version is detected then I execute ExecWait '"$INSTDIR\uninst.exe" /S' $0 My uninstall section: Section uninstall !define APP_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_VENDOR} ${APP_NAME}" !define APP_UNINST_ROOT_KEY "HKLM" DeleteRegKey ${APP

How to find GUID of Wix Burn executable for programmatically uninstall?

那年仲夏 提交于 2019-12-07 12:18:12
问题 I've created wix bootstrapper project. While installing it creates registry key HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{SOME_GUID} So I can uninstall it using ARP.But I'd like to uninstall it programmatically.To do this I need the value of {SOME_GUID} to search the key in registry for UninstallString value. However it's impossible to get this information from my project, because Bundle element does not have attributes to set this GUID. I found out that this

Installshield Silent Uninstall not working at Command Line

帅比萌擦擦* 提交于 2019-12-07 10:20:33
问题 We have an older app from 2006 we'd like to uninstall at the command line using group policy, but I can't get a silent uninstall to work. This works. Of course I need to click Next to uninstall: "C:\App\Setup.exe" /uninst But this does not. I see an hourglass for a couple seconds but the app is not uninstalled. "C:\App\Setup.exe" /uninst /s I also unsuccessfully tried some VBScripts. They find the app listed but the uninstall fails. I'm not too familiar with how this process is supposed to

Uninstallation password

懵懂的女人 提交于 2019-12-07 09:55:10
问题 I am making one phone security application in android. The point where I stuck is that How to set uninstall password for this app. When application is installed user can set the security password and this password will be used for uninstalling this app. So please someone suggest me how to put code for uninstall event.? Is there any event or service called when apps are going to uninstall.? 回答1: No, sadly there is no uninstall event that you can catch for your own app. You can only watch the

Uninstalling a python module in ubuntu

痞子三分冷 提交于 2019-12-07 06:24:21
问题 I have to delete a python module named "django" (a popular one), because I installed the wrong version (1.3 - beta in py-2.6). How to uninstall this module? Please explain, because I've used python only in Windows and never in Ubuntu. 回答1: go to the python shell >> import django django.__path__ copy the path on the shell sudo rm -r path 回答2: sudo aptitude install python-pip sudo pip install django --upgrade 来源: https://stackoverflow.com/questions/5959647/uninstalling-a-python-module-in-ubuntu

Uninstall a netbeans 7.0.1 plugin, netbeans doesn't start

我与影子孤独终老i 提交于 2019-12-07 00:00:57
问题 Netbeans 7.0.1 on Vista doesn't start after installing python plugin. How do I uninstall plugins manually? Is there a command line argument to start netbeans without plugins? If not, this should be easy to add to netbeans :-) 回答1: I had the same issue. Here is how I solved it in 8.0.2 (without losing all settings and modules). Go to ' C:\Users\yourAccount\AppData\Roaming\NetBeans\8.0.2\config\Modules ' and delete the faulty (last installed plugin). If you have several installed versions, have

How to add uninstall option in .NET Setup Project?

主宰稳场 提交于 2019-12-06 22:29:07
问题 The .NET Setup project seems to have a lot of options, but I don't see an "Uninstall" option. I'd prefer if people could "uninstall" from the standard "start menu" folder rather than send them to the control panel to uninstall my app, so can someone please tell me how to do this? Also, I am aware of non Microsoft installers that have this feature, but if possible I'd like to stay with the Microsoft toolkit. 回答1: You can make shortcut to: msiexec /uninstall [path to msi or product code] 回答2:

Wix / MSI : Unable to uninstall

二次信任 提交于 2019-12-06 19:15:39
问题 I've developed a Wix installer for an internal project however entirely by accident I've found that I'm unable to uninstall the installer on my development machine as I get the following error message: The feature you are trying to use is on a network resource that is unavailable with a dialog pointing to the path of the .msi that I installed from feature from. (The .msi is there, however is has been rebuilt and so has changed since I installed it) I'm concerned by this dialog as I had