uninstall

Inno Setup: Resize uninstall progress form with all its components

自闭症网瘾萝莉.ら 提交于 2019-11-30 20:44:29
问题 Hey I need to increase width and height of UninstallProgressForm of my Inno Setup uninstaller. When I changed its width and height manually according to my custom - designed installer wizard page width and height, uninstall progress form appeared weird. Only changed thing is its width and height. All other components like uninstall progress bar, title, captions, details, buttons remain with theirs old default size. I like to know how can I resize all the components. Thanks in advance. UPDATED

How to remove widget when the app is uninstalled in Android? [duplicate]

南楼画角 提交于 2019-11-30 20:35:15
Possible Duplicate: Removing Widget from Home Screen when Uninstalled In Android, I have created a widget for my application. When I uninstall the app, the widget shows "problem loading widget" error in home screen. I need a scenario where widget should be removed by the developer through code (and not by the drag and drop to the trash) when I uninstall the app. Is it possible? If so, what changes we need to do? Is there anything that can be set in the manifest so that it removes all references of the app once it is uninstalled? Hiya! When you delete the app widget host manager should

Android Persist Data After Uninstall

徘徊边缘 提交于 2019-11-30 19:16:52
I have to persist 2 strings for my application even after the application is uninstalled. Regarding that the end users don't have SD cards for their devices and they don't have internet connection, how could I persist those 2 strings even after the app is uninstalled? I would highly appreciate any response. Thanks Unless you're targeting VERY old phones, you don't need to worry about not having external storage. As long as you use Environment.getExternalStorageDirectory() as your reference, you shouldn't have a problem, though if you're absolutely concerned about this you can check if the

What is the difference between deleting & uninstalling in the context of a Windows Service?

心不动则不痛 提交于 2019-11-30 19:15:22
问题 Please help me understand the difference between deleting a windows service with the command "sc delete " and uninstalling a windows service with the command "installutil /u ". After exploring a little bit I realize that for using the installutil command you have to first stop the windows service while sc delete command take care of stopping the service itself. Please correct me if wrong. 回答1: A related SO question and answers (two in particular - here and here) explain the difference as

How to self uninstall an app?

本小妞迷上赌 提交于 2019-11-30 17:34:06
The problem is this -- my app gets admin rights, to get them, from UI POV is quite easy. However once app has those rights, it is cumbersome to uninstall it (user has to first revoke those admin rights; and if not, when uninstalling there is no info what is going wrong with uninstall -- at least at Ace 2 Android 2.3). Thus it would be useful, to have a uninstall feature in app -- it would revoke admin rights first, and then follow normal uninstall. Another approach would be to be notified app is about to be uninstalled, however AFAIK it is not possible -- see: http://code.google.com/p/android

Completely remove Android Studio, Eclipse and all the libs/packages installed with them

笑着哭i 提交于 2019-11-30 15:19:17
I am having a couple errors with gradle and sdk manager, so I would like to make a clean install of android studio. How do I completely remove Android Studio, Eclipse and all the libs/packages installed with them? Filip Luchianenco Removing Android Studio: Remove the Android Studio folder, usually in /home/[username]/android-studio Remove .AndroidStudioPreview from home/[username] Remove Eclipse from Software center. In Windows you also need to enable displaying of hidden files and folders and delete the following: users/${yourUserName}/appData/Local/ Android 来源: https://stackoverflow.com

Delete my application programmatically (Android)

不羁岁月 提交于 2019-11-30 13:48:35
问题 I want to uninstall my application on button click. For this I am using following code. Uri packageURI = Uri.parse("package:"+packageName); Intent uninstallIntent = new Intent(Intent.ACTION_DELETE, packageURI); startActivity(uninstallIntent); It gives me result, but I want to delete directly without click on "Ok" button of dialog with message "This application will be Uninstalled". I just want uninstalling application directly. 回答1: Uninstalling without user confirmation is not allowed to 3rd

How to make WiX leave files after uninstall?

余生长醉 提交于 2019-11-30 13:40:00
问题 Is there a way to NOT delete files after an uninstall? 回答1: Set the Component value Permanent="yes" like so: <Component Id="LicenseDoc" Guid="*" Permanent="yes"> <File Id ="License.rtf" Source="$(var.SolutionDir)Installer\License.rtf" /> </Component> 回答2: Compliments of Phil Wilson from wixusers mailing-list: See the MSI SDK docs for the Component table - set the Component guid to be null (empty). The effect of this is that the component isn't registered (so it can't be repaired) and it won't

How to remove App installed trusted CA cert on uninstalling the App

纵然是瞬间 提交于 2019-11-30 13:12:48
问题 I have an app that gives option to install CA cert and it gets stored in the user tab of Trusted Credentials and it works as expected. FYI (This is how I install the cert): Intent installIntent = KeyChain.createInstallIntent(); javax.security.cert.X509Certificate x509 = javax.security.cert.X509Certificate.getInstance(caRootCertBytes); installIntent.putExtra(KeyChain.EXTRA_CERTIFICATE, x509.getEncoded()); installIntent.putExtra(KeyChain.EXTRA_NAME,caRootCertName); startActivity(installIntent);

Removing bad installs from Add/Remove programs

◇◆丶佛笑我妖孽 提交于 2019-11-30 12:36:42
问题 I've created a custom boot-strapper for my application using Wix and Burn, but in the time it took to learn I managed to install several early variants in such a way that they won't uninstall. I think I created the problem by running Engine.Apply before PlanComplete had been called. Where is the information that builds the list in Add/Remove programs and what is the best way to manually remove orphaned rows? Update - I should have said I'm on 64 bit Windows 7 Enterprise, Service Pack 1. 回答1: