Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
2answers
7k views

Visual Studio 2005 -> 2008/10 Service Installer Project Upgrade issue

I've upgraded a [.vdproj MSI generator project built into VS2008] System.Configuration.Install.Installer with a ServiceProcessInstaller and a ServiceInstaller from Visual Studio 2005 to 2008. There ...
7
votes
2answers
495 views

Select custom components to uninstall on Inno Setup uninstaller

I made installer with Inno Setup. It consist of multiple executables all located in Program Files "APP" folder. But for every executable there's different subfolder in this "APP" folder. Because ...
6
votes
2answers
318 views

How to create an installer and uninstaller for a Windows Forms application in C#

I created an installer for my Windows Forms application and I added the project output to programs menu. But now what I want is 'I should have a folder in programs menu in that it should contain both ...
5
votes
2answers
3k views

How do I require user to uninstall previous version with NSIS

I have just started using NSIS. It works very well but I find the documentation a bit unstructured. How do I require user to uninstall previous version before installing a new version with NSIS? NSIS ...
4
votes
1answer
641 views

In inno setup how to set the unins000.exe with product name, product version and copyrights properties

I have created an installer using inno setup. Everything works fine but after installation unins000.exe will be generated, this exe doesn't have product name, product version and copyrights properties ...
3
votes
2answers
174 views

Delete self while running

Im currently creating a uninstallation application which deletes the application folder. The problem is that i cant delete the uninstaller application which is in the same folder cause its running. Is ...
3
votes
2answers
679 views

Uninstaller for package on Mac OS X

As a service to my users I would like to provide an uninstall script to completely remove all traces of my application on Mac OS X. The application is installed using a package rather than just being ...
3
votes
2answers
4k views

How to “refresh” Windows 7 start menu from NSIS installer?

I have an installer (NSIS) that creates shortcuts in start menu. When I remove the program uninstall removes the folder from: C:\Users\<username>\AppData\Roaming\Microsoft\Windows\Start ...
3
votes
6answers
223 views

What to use for creating a quick and light setup file?

I am considering helping an open-source gaming project with creating their setup file. The game is currently weights around 300 MB and is packaged in a zip file, playable straight after it's ...
2
votes
2answers
96 views

Visual Studio Installer. Uninstaller shortcut error

I have made setup project with Visual Studio Installer. Project creates uninstall shortcut into User's programs menu. Setup works fine and uninstall shortcut uninstalls application. Shortcut points ...
2
votes
1answer
84 views

How to create installer with Innosetup which should not register the application with Add/Remove programs?

I want to create a installer using Innosetup which should not register the application with windows installer, This option i could see it in Advanced Installer. If this option is selected it installer ...
2
votes
2answers
168 views

Class not found : PackageParser when using PackageInstaller from git

This is a very precise question about the package installer open source project hosted on google code project: http://android.amberfog.com/?p=98 When I try to compile it, I get a ...
2
votes
5answers
115 views

How to make an uninstaller in java

How to make an uninstaller ( for windows ) in java, i know the way how i should delete files, i just want to know how to put the uninstaller in the 'delete programs' section of the configuration ...
2
votes
1answer
229 views

Uninstalling my Office 2010 plugin leaves a null pointer exception

I've been trying to track down why my Office2010 plugin leaves a null pointer exception during uninstall and the 2007 version does not. (Edit: 2007 is at same state as 2010 - FAIL) To narrow it down ...
2
votes
2answers
406 views

WISE Uninstaller doesn't remove itself

I know, I know...stop using WISE. That's not really an option for me right now. We have too much on our plate to write a completely new installer and change our entire build process, which is what ...
2
votes
1answer
2k views

using WMI to uninstall applications remotely

I am trying to write a mini w32 executable to remotely uninstall an application using WMI. I can list all the installed applications using this code below but i couldnt find a way to uninstall the ...
2
votes
4answers
308 views

Creating a “Uninstaller” for a program on Mac OS

I have a requirement to create a cross platform application that launches a web link to a feedback form when its uninstalled. This is obviously normal sort of behaviour on windows..., but on a Mac is ...
2
votes
1answer
193 views

Adding custom pages to uninstaller

I am creating a custom page in my uninstaller as follows: UninstPage custom mypageCreate ..... ..... ..... Function mypageCreate ;call nsDialogs or InstallOptions functions here FunctionEnd ...
1
vote
2answers
55 views

How to set the status message in [Code] Section of Inno install script?

I know that StatusMsgcan only be used in the [Run] selection. I want to use the same in the [Code] Selection, Please Help me to solve this, Thanks in advance, Regards Samuel J
1
vote
1answer
55 views

How to set the progress bar value in the [Run] section of the inno install script?

This is similar kind of question discussed here! If i'm adding some MSI file to my inno script, i could install this from run selection, At that time the progress bar shows 100% and shows the ...
1
vote
2answers
47 views

How to get the name of the exe in the Innosetup script from the full path of the exe is given?

For example if the full file path of the exe is provided as C:\Projects\Executable\Serial Data Streaming Recorder.exe, I need to extract the name of the exe. That is Serial Data Streaming Recorder and ...
1
vote
2answers
79 views

How do I remove any app from a device using my app in android?

I am doing some experiments on my device - I want to be able to remove any application from an Android device using my application. Given the package name of an app, how can I force the user to go ...
1
vote
0answers
76 views

izPack creates an uninstaller that doesn't work in Windows “Programs and Features”

I'm working on a graphic installer for a java project using izPack 4.3.4, the installation goes well but when I try to uninstall it by clicking on his reference in "Programs and Features" window it ...
1
vote
3answers
65 views

Handling of android app uninstallation

I have created some files through my android application. I want to remove these files when the application is removed from the device. How can I get it done. Any help will be appreciated.. Thanks in ...
1
vote
0answers
62 views

Uninstalling an Application takes too long

Based on title, this question may seems more fitting for superuser, but I am concerned about the development perspective. I have created an installer that installs a small App, size about 8 MB. It is ...
1
vote
1answer
302 views

NSIS Use selected language for uninstaller

I am working on NSIS installer and I just added multi language to the installer. I wanted the Installer to show the language dialog everytime the user click on the installer, so I removed those two ...
1
vote
1answer
410 views

Windows 7 installer package error 2869 while installing an upgraded version

I have an application with version no: 1.0.0.1, which is an upgrade to the older version 1.0.0.0. When I try to install the new version 1.0.0.1, when my system already has the older version ...
1
vote
1answer
1k views

How to digitally sign Inno Setup generated uninstallation file?

WSLK requires that the unins000.exe, generated by Inno, is signed. The only way I devised to do that is by unpacking the installer, signing and then repacking it again. Isn't there an easier way? I ...
1
vote
3answers
206 views

Creating Uninstaller Using Visual Studio 2008

I know how to create the Installer for an application but I want to know how to add the Uninstaller into the Applications work group. Is there anyway to add this from the Visual Studio 2008 ...
1
vote
4answers
2k views

How can I manually uninstall .NET Framework Beta 2?

Uninstalled VS2010 Beta 2. Uninstalled .NET Framework 4 Extended Beta 2. On attempting to uninstall .NET Framework 4 Client Profile Beta 2. I get Blocking Issues: You must uninstall the .NET ...
1
vote
1answer
428 views

Customizing the VS 2008 Setup Project Uninstaller

I have a setup project for my .NET application, and both install/uninstall are working just fine, if they are left alone while they work. However, if someone cancels the uninstall while it is ...
1
vote
1answer
493 views

Custom uninstaller for a WIX generated MSI

I have an MSI that is being generated from WIX scripts. My question is similar to this question. I want to create a custom uninstaller instead of using the default MSI uninstaller. I am thinking of ...
1
vote
1answer
60 views

Where do you assign the .ico file to display for a program's Unisntall (in Add/Remove programs) in Windows?

I want to assign an icon to display next to my app's Uninstaller in the Windows Add/Remove programs. I assume that would be in the Registry setting for the uninstaller, but I don' see an obvious ...
1
vote
3answers
1k views

When using NSIS, how do I create an uninstaller with custom pages?

I would like to have an uninstaller with custom NS pages. How do I do that with NSIS?
1
vote
1answer
59 views

How can my UnInstaller tell it's being called during a version upgrade?

We are using VS2008 native Installer to set up our product. During both installation and product removal, we use Custom Actions to ask the user if he would like to keep his existing DB and settings ...
0
votes
1answer
34 views

nsis custom uninstaller

I need create nsis uninstaller. I have a list of files(in "list.txt" file) which must be deleted. I try something like this: ${LineSum} "$INSTDIR\list.txt" $NumOfFiles ${For} $CurrentFile 1 ...
0
votes
1answer
202 views

How to end a process using inno setup?

I want to kill a process using inno setup.i want to check whether the window is open before i start installing the setup. can i do this by searching windows name? please help me with some sample ...
0
votes
1answer
86 views

how to create Uninstall process in the Windows forms application in vs2010?

I developed one windows forms application in vs2010. And i created the setup of that project. Now i want to give the uninstall wizard to the user to with the setup of my project. And i created one web ...
0
votes
1answer
41 views

msi installer error

I get the following error when I tried to uninstall a software. I tried with multiple uninstallers, but nothing worked.
0
votes
0answers
35 views

Visual Studio Setup | Calling Custom Uninstaller from Add/Remove Programs

Target Environment: Windows XP SP3, Windows Vista SP2 and Windows 7 SP1 I have a visual studio setup with a custom uninstaller. The uninstaller may be called from a Program Menu shortcut. However ...
0
votes
0answers
35 views

Different behaviour of Deployment project in XP and 7

Is there anything to be noted (related to Operating System) while creating 'Deployment Projects' using Visual Studio 2008. I created a Deployment which behaves differently while installed on Windows 7 ...
0
votes
0answers
19 views

Error on Unisall in windows error

I have created an installer using installshield 8. its working fine on windows xp. but on windows 7 when i go to addremove program and try to unistall my program it give the error that "this program ...
0
votes
1answer
23 views

What message will send when a application is installed or uninstalled

I want to backup my system Register when a application is planing to be installed or uninstalled, what message will send from installer? Thanks in advance.
0
votes
1answer
118 views

Uninstall methods in Android

Hey everybody, I was wondering where, or what is the methods used in the batch uninstaller programs? I know how to pull up lists of the applications, and the icons in a listview.. getting them into ...
0
votes
1answer
115 views

NSIS: Detecting in uninstaller is a program working

Is it possible to determine in uninstaller script is a program (that should be uninstalled) working?
0
votes
1answer
284 views

Manually increment or decrement file reference counter (refcount) used by MSI installers?

My understanding is that MSI installers use a file reference count to keep track of how many 'installers' installed a shared file (say a dll). [HKEY_LOCAL_MACHINE]\SOFTWARE\Microsoft\Windows\Current ...
0
votes
1answer
191 views

How to wait for uninstaller to finish?

Using NSIS, I want to launch an uninstaller and wait for it to finish before proceeding with my installer. The problem is the uninstaller is returning immediately, even though I'm using ExecWait. I ...
0
votes
2answers
125 views

How to read a command line parameter given to an uninstaller?

Using NSIS, how can I read a (optional) command-line parameter provided to an uninstaller? I don't need to read it by name-- just reading the first parameter given could be enough.
0
votes
1answer
382 views

Using NSIS, how to let user choose option on uninstall?

I'm using NSIS and the Modern User Interface 2. During uninstall, I want to let the user select whether to delete saved application data or not by clicking a checkbox... What is the best way to do ...
0
votes
1answer
581 views

Use Innosetup to delete another appliction not installed with Innosetup during installation

I have an old VB6 application that is deployed using a very old 16 bit version of InstallShield. I have created a new installer with Innosetup to be 64 bit friendly for my VB6 application with ...

1 2