uninstall

Change the default name of an Inno Setup uninstaller to avoid naming conflicts

旧时模样 提交于 2019-12-21 09:15:05
问题 I need to install a couple of installers in the same directory so it conflicts with the Inno Setup uninstaller name unins000.exe and unins000.dat Is there a way to change the default name of an Inno Setup uninstaller? 回答1: This is similar to Elektrostudios' answer, and is what worked for me: Filename: {cmd}; Parameters: "/C Mkdir ""{app}\Uninstallers\{#MyAppName}"""; Flags: RunHidden WaitUntilTerminated Filename: {cmd}; Parameters: "/C Move ""{app}\unins000.exe"" ""{app}\Uninstallers\{

Uninstall Xcode 4 when it was installed via the App Store

纵饮孤独 提交于 2019-12-20 18:40:11
问题 I understand that those who installed Xcode 4 via the developer site are able to uninstall via /Developer/Library/uninstall-devtools –mode=all , however I installed via the App store and there doesn't seem to be an executable with the word "uninstall" in the name anywhere in the Developer folder at all. Any suggestions on how I should go about uninstalling Xcode 4? 回答1: This help for Xcode before MAS install /Library/Developer/Shared/uninstall-devtools If you install it from MAS you can

Can't uninstall Visual Studio 2015 (The storage control blocks were destroyed)

試著忘記壹切 提交于 2019-12-20 13:58:56
问题 So I wanted to force an uninstallation of VS2015 Enterprise with "vs_enterprise.exe /uninstall /force", but I get an error message: Update for Microsoft Windows (KB2999226) : The storage control blocks were destroyed. I tried to restart my PC, so that Windows can apply that update, but it didn't work, the uninstall process always exits with that error. I have no idea how to proceed. 回答1: When I tried to uninstall Visual Studio 2015 Community Edition I first when to the Control Panel >

How do you uninstall the package manager “pip”, if installed from source?

穿精又带淫゛_ 提交于 2019-12-20 11:14:33
问题 I was unaware that pip could be installed via my operating system's package manager, so I compiled and installed pip via source with the following command: wget https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py -O - | sudo python I would like to uninstall pip, and instead install it from my operating system's package manager. How would I go about completely undoing the work of the installation script? 回答1: That way you haven't installed pip, you installed just the easy_install i

How to uninstall a Windows Service when there is no executable for it left on the system?

蓝咒 提交于 2019-12-20 08:18:27
问题 How do I uninstall a Windows Service when there is no executable for it left on the system? I can not run installutil -u since there is not executable left on the system. I can still see an entry for the service in the Services console. The reason for this state is probably because of a problem in the msi package that does not remove the service correctly, but how do I fix it once the service is in this state? 回答1: You should be able to uninstall it using sc.exe (I think it is included in the

How to remove a package in sublime text 2

大憨熊 提交于 2019-12-20 07:58:26
问题 I would like to remove and/or deactivate the Emmet package in Sublime Text 2. Should I just remove the Emmet directory or what is the typical workflow for removal of a package? 回答1: If you installed with package control, search for "Package Control: Remove Package" in the command palette (accessed with Ctrl + Shift + P ). Otherwise you can just remove the Emmet directory. If you wish to use a custom caption to access commands, create Default.sublime-commands in your User folder. Then insert

android: require password when uninstall app

徘徊边缘 提交于 2019-12-20 07:13:51
问题 I want to build app like parental control, so when child try to uninstall/remove my app I would like to require that a user type a password before being allowed to uninstall/remove my application. i try this, but still don't understand : Require a password to uninstall/remove application Any suggest? 回答1: You can lock the device if you use device administration. Users can't uninstall active device admins, then you can lock the device if they try to disable device admin, then the parent could

MSI upgrade and retain registry keys?

这一生的挚爱 提交于 2019-12-20 04:38:37
问题 We have a product, 1.0, in the field. I am trying to update the installer for that product so it can install over the old version, to install a new version, 2.0. I'm using a Visual Studio 2010 setup project to do this. I have maintained the UpgradeCode, and set remove earlier versions to true, and the new installer will successfully install over the old one, removing the old one. However, it appears that the uninstall of the old MSI happens after the install of the new MSI. Both MSIs deploy

MSI: How a Service is stopped on uninstall during InstallValidate - could that work anyway?

限于喜欢 提交于 2019-12-20 03:16:16
问题 I want to know, how and when in concrete a service is tried to stop if it's marked as Remove="uninstall" Stop="uninstall" in the WiX Project File. Why I'm asking: On uninstalling, the service is not recognized or handled correctly by the RESTART MANAGER resulting in the "restart dialog". I attached the debugger to the service and realized, that it's never been tried to be stopped - at least, not via the registered ControlHandler. I was guessing, that it will be stopped in the same manner as

How to downgrade Kotlin in Intellij 15

ⅰ亾dé卋堺 提交于 2019-12-19 17:45:01
问题 For a project of mine I need to use Kotlin 1.0.0-1038 (beta), but to install it I probably need to uninstall the newer version of kotlin, but it has no uninstall button where it should have. How would I downgrade Kotlin? IntelliJ IDEA 15.0.4 回答1: IMPORTANT UPD: as @yole commented, this is a bad solution as it will break things. There is no proper way to downgrade a bundled plugin without breaking the installation. Instead, consider upgrading the project to the up-to-date Kotlin version. You