uninstall

Visual Studio Setup Project: How Can I force an Uninstaller to run in Administrator mode?

瘦欲@ 提交于 2019-12-03 17:47:07
I've created a Visual studio Setup Project, and I have an Installer Classes created for my main App. In this Installer Class, I overridden the Uninstaller function to clean extra folders created by my app. This works fine in windows XP, but not in Windows 7 since I assume it has something to do with UAC. How Can I force my Uninstaller to elevate privileges? I've asked this question in another post, but I wasn't clear on my intentions. I've found these links but I don't know if it's relevant: http://msdn.microsoft.com/en-us/library/aa370852.aspx http://msdn.microsoft.com/en-us/library/aa370134

Uninstall/remove Carthage from iOS/xCode project?

别来无恙 提交于 2019-12-03 14:41:23
问题 Here is a link to Carthage : https://github.com/Carthage/Carthage It additionally adds some changes in project files so I can simply remove extra files/folders and it will work but I can't use Carthage in future again because of some errors. And of course there is no concrete instruction how to do it on its official page. 回答1: Removing Carthage has actually been pretty easy for me. I simply copy my frameworks from the Carthage folder into a frameworks folder I have in my main project folder.

Where are all possible locations of UninstallString registry entries?

若如初见. 提交于 2019-12-03 14:32:39
I'm writing a Wix-based installer that needs to upgrade from older, non-msi-based installations. I'm finding instances of previously installed components by searching directly in the Registry. To find the uninstaller for a component, I look in HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\MyProgram And get the UninstallString value. This is fine, but I realised that for a 32 bit install on a 64 bit machine, the entry is actually at HKLM\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\MyProgram Is there anywhere else I ought to be looking? Eliezer There's a third

Remove Qt libraries on Mac

天涯浪子 提交于 2019-12-03 13:05:50
问题 I want to remove the installed Qt 4.8 libraries and install Qt 4.6 libraries on my mac. But when I try to install them I get: "Qt libraries cannot be installed on this disk. A newer version of this software already exists on this disk" I removed the /usr/local/Qt4.8.x folder from the disk but the message is still here. How can I remove the old libraries? 回答1: You shouldn't manually delete a folder unless there is no other option. You should try running the uninstall script first: sudo python

Uninstalling the currently active version of node.js with nvm

不羁岁月 提交于 2019-12-03 12:39:39
On Ubuntu 16.04, I mistakenly used root to install nvm, and then to install node.js 8.8.1 via nvm. I also used nvm alias default 8.8.1 , thinking it would correct my error. Now I would like to: Remove the default alias Uninstall node 8.8.1 Uninstall npm 4.8.5, which came along with node Uninstall nvm Reinstall everything correctly for the right non-sudo user It looks like I've succeeded with the first part: # nvm unalias default Deleted alias default - restore it with `nvm alias "default" "8.8.1"` But nvm refuses to uninstall node 8.8.1, because it is the only version installed: # nvm

How to uninstall Atom text editor on Windows?

≯℡__Kan透↙ 提交于 2019-12-03 09:14:24
问题 I installed the text editor Atom for Windows with the installer package (blog post with details). Note that I did not use the old way of installing, with Chocolatey. When I wanted to uninstall, I didn't see any uninstall program. When I went to the "Remove programs" window, the uninstall option was invalid. How can I uninstall it? I found the same question for Linux and Mac, but so far no details for Windows. 回答1: You have to remove some folders and then Atom should be removed from your

Application launcher icon is not deleted from Home screen when uninstalling android app

烂漫一生 提交于 2019-12-03 08:22:01
I'm using a similar codesnippet as shown below to add an application shortcut on the homescreen: Intent shortcutIntent = new Intent(Intent.ACTION_MAIN); shortcutIntent.setClassName(this, this.getClass().getName()); shortcutIntent.putExtra(EXTRA_KEY, "ApiDemos Provided This Shortcut"); // Then, set up the container intent (the response to the caller) Intent intent = new Intent(); intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent); intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, getString(R.string.shortcut_name)); Parcelable iconResource = Intent.ShortcutIconResource.fromContext( this, R

Uninstall out-of-browser silverlight application programmatically

不羁的心 提交于 2019-12-03 07:43:12
How to uninstall out-of-browser silverlight 4 application programmatically instead of using the contextmenu (e.g. if I want to replace the context menu)? Edit I have found in "Installing Silverlight applications without the browser involved" how to uninstall by calling the command-line: "%ProgramFiles%\Microsoft Silverlight\sllauncher.exe" /uninstall /origin:silverlight.net/content/samples/apps/… This can be used in:- dynamic cmd = AutomationFactory.CreateObject("WScript.Shell"); cmd.Run(run, 1, true); Is there any better solution? Pretty certain this isn't possible without resorting to COM

Android - delete files on SD card on uninstall

僤鯓⒐⒋嵵緔 提交于 2019-12-03 07:10:22
问题 My app downloads some multi-media files from a server when it's installed. I do this to save space on the size of the app. However, the drawback of this approach is that when the app is uninstalled, it doesn't delete those files. I've seen reports that this is possible, but I can't seem to make it work. Is there a way to do this on uninstall, or should I just forget about it? Note that I have the app installed on the SD card by default as well, but I'm not sure if all phones will

How to uninstall Eclipse?

旧城冷巷雨未停 提交于 2019-12-03 05:32:10
问题 I want to uninstall Eclipse version Mars 2, but it doesn't appear in the "Programs and Features" area of the Windows Control Panel. The installer has installed start menu shortcuts and other artifacts, so it's not just a matter of deleting the installation folder. 回答1: There is no automated uninstaller. You have to remove Eclipse manually. At least Eclipse does not write anything in the system registry, so deleting some directories and files is enough. Note: I use Unix style paths in this