uninstall

Can't delete the folder created in My Documents with Inno Setup

老子叫甜甜 提交于 2019-12-01 10:49:54
I have tried to use the program described here Problems in deleting a Folder during the uninstalation with Inno Setup after the answers were posted but for some unknown reason to me that code part isn't doing anything. May be related to windows version or if it's on 32 or 64 bit? Here's the code used by me: procedure CurUninstallStepChanged (CurUninstallStep: TUninstallStep); var mres : integer; begin case CurUninstallStep of usPostUninstall: begin mres := MsgBox('Do you want to delete saved games?', mbConfirmation, MB_YESNO or MB_DEFBUTTON2) if mres = IDYES then DelTree('ExpandConstant(

Can't delete the folder created in My Documents with Inno Setup

倾然丶 夕夏残阳落幕 提交于 2019-12-01 08:24:09
问题 I have tried to use the program described here Problems in deleting a Folder during the uninstalation with Inno Setup after the answers were posted but for some unknown reason to me that code part isn't doing anything. May be related to windows version or if it's on 32 or 64 bit? Here's the code used by me: procedure CurUninstallStepChanged (CurUninstallStep: TUninstallStep); var mres : integer; begin case CurUninstallStep of usPostUninstall: begin mres := MsgBox('Do you want to delete saved

MSI Uninstall issue: Error 1001 -> The saved State dictionary contains inconsistent data and might have been corrupted

元气小坏坏 提交于 2019-12-01 08:05:55
I need to create a few Windows Services and obviously I would like to package them in a nice installer. Since I was unfamiliar with Service creation/installation I basically used code from the following example: Advanced Service Installation I did not change ProjectInstaller or InstallActions and basically just plugged my own services (File monitoring/conversion). Building and compiling the code works A-OK: The Installer works, the services are installed (but NOT started as might be expected) My Services themselves all work The Uninstall FAILS, stating the error from the title What is very

How to uninstall R completely from OS X

我们两清 提交于 2019-12-01 07:42:29
问题 I'm on Mac OS X 10.11.5, R version 3.3.1 I followed the instructions to remove R: http://cran.r-project.org/doc/manuals/r-release/R-admin.html#Uninstalling-under-OS-X In command line: sudo rm -rf /Library/Frameworks/R.framework /Applications/R.app \ /usr/bin/R /usr/bin/Rscript I no longer see R in applications or anywhere else on my computer. However, I am still able to run R from the command line. I am mystified. What is going on? How do I get rid of R completely? I want a fresh start. 回答1:

MSI Uninstall issue: Error 1001 -> The saved State dictionary contains inconsistent data and might have been corrupted

匆匆过客 提交于 2019-12-01 07:09:34
问题 I need to create a few Windows Services and obviously I would like to package them in a nice installer. Since I was unfamiliar with Service creation/installation I basically used code from the following example: Advanced Service Installation I did not change ProjectInstaller or InstallActions and basically just plugged my own services (File monitoring/conversion). Building and compiling the code works A-OK: The Installer works, the services are installed (but NOT started as might be expected)

Remove all previous versions of python

情到浓时终转凉″ 提交于 2019-12-01 07:01:13
I have some experience with C++ and Fortran , and I want to start using python for my post-processing as I am starting to realise how inefficient MATLAB is for what I need to do (mostly involves plots with millions of points). I already had a few versions of python installed, from every time I wanted to start using. It has now become a mess. In /usr/local/bin/ , here is what the command ls python* returns: python python2.7 python3 python3.5 python3.5m pythonw-32 python-32 python2.7-32 python3-32 python3.5-32 python3.5m-config pythonw2.7 python-config python2.7-config python3-config python3.5

Inno Setup Start menu uninstall shortcut is not shown on Windows 10

旧时模样 提交于 2019-12-01 05:25:35
I've got an issue that seems to be specific to Windows 10 with the Start menu uninstall shortcut I create in my setup. The shortcut is simply not shown. However, others shortcuts I create are shown as well... Here is the value for DefaultGroupName : DefaultGroupName={#MyAppPublisher}\MyCompany\MySoftwareName Here are my entries for shortcuts in [Icons] section: [Icons] Name: "{group}\{#MyAppName} {#MyAppVersion}"; Filename: "{app}\MyExeName.exe"; WorkingDir: "{app}" Name: "{commondesktop}\{#MyAppName} {#MyAppVersion}"; Filename: "{app}\MyExeName.exe"; WorkingDir: "{app}"; IconFilename: "{app}

Remove all previous versions of python

泪湿孤枕 提交于 2019-12-01 04:19:37
问题 I have some experience with C++ and Fortran , and I want to start using python for my post-processing as I am starting to realise how inefficient MATLAB is for what I need to do (mostly involves plots with millions of points). I already had a few versions of python installed, from every time I wanted to start using. It has now become a mess. In /usr/local/bin/ , here is what the command ls python* returns: python python2.7 python3 python3.5 python3.5m pythonw-32 python-32 python2.7-32 python3

Inno Setup: Resize uninstall progress form with all its components

家住魔仙堡 提交于 2019-12-01 00:54:38
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 QUESTION It has a Strectched WizardSmallBitmapImage , an Applogo (it is also a bitmap) , and more long

Improving performance of Wix msi install/uninstall

最后都变了- 提交于 2019-11-30 21:19:59
In Windows 7(i.e. MSI 5.0), there is a property called MSIFASTINSTALL which will improve the performance of your installer. Or else, you can turn off the rollback option by setting property DISABLEROLLBACK. This property is available in earlier version of MSI 5.0 too. Please share your knowledge to improve the install experience. Also, I cannot find the right way to improve the performance of Uninstall. We use huge set of files/folders (more than 70,000) and components like 35000. It hangs in the file costing process and do not know how to avoid this delay. Sometime it hangs for more than 2 or