cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Tobias79
Level 5

Force Full UI when uninstalling App from Add/Remove Programs

Hello,

How can I change the default behavior and start the uninstaller in Full UI Mode when clicking on Remove button in Add or Remove Programs.

Thanks,
Tobias


PS: The only way I see right now is to use the Modify Button instead and remove the [Remove] button from the dlg. but I don't like that way...
Labels (1)
0 Kudos
(2) Replies
RobertDickau
Flexera Alumni

As far as built-in functionality goes, hiding the Remove button is the closest thing.
0 Kudos
Tobias79
Level 5

Hi,

Thanks for your response Robert.

I tried to implement a similar logic as e.g. implemented in the .NET Framework 3.5 SP1:

First I added ARPSYSTEMCOMPONENT = 1 to remove the app from installing in add remove programs.

Furthermore I did my own registry entries for starting the installer when clicking on [Change/Remove]:

[CODE]REGEDIT4

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\MyProductName]
"DisplayIcon"="[INSTALLDIR]icon.ico"
"URLInfoAbout"="someUrl"
"InstallLocation"="[INSTALLDIR]"
"VersionMinor"=dword:0000000A
"VersionMajor"=dword:00000002
"Publisher"="COMPANYNAME"
"UninstallString"="msiexec.exe /i {12345678-ABCD-1234-4321-EEEEAAAA1234} /qf"
"DisplayName"="Displayed Productname"
"DisplayVersion"="2.10.0000"
[/CODE]

So here the installer is started in Maintenance Mode and the behavior is nearby the desired behavior.

Regards
Tobias
0 Kudos