Questions tagged [addremoveprograms]

The "Add/Remove Programs" utility is a standard Microsoft Windows UI for listing applications installed on the computer and providing basic mainterance actions like uninstalling, repairing or modifying the installations.

The "Add/Remove Programs" utility is a standard Microsoft Windows UI for listing applications installed on the computer and providing basic mainterance actions. This utility is usually found in the Control Panel.

The list presents some basic information like the name of the application, installation date, approximate size. There are some other bits like publisher's name, company, or product version, but availability of these metadata vary as they are provided by the authors of the applications.

Typical mainterance actions provided by "Add/Remove Programs" are actually:

  • uninstall
  • repair (i.e. try restoring some deleted or damaged files)
  • modify (i.e. turn some features on or off)

The obviously missing "Add" part from the name comes from the fact that on many versions of the Windows, user may find here some button/link that takes the him to completely another view which allows him to install or uninstall some core Windows programs and services. It is not possible to "Add/Install" a completely random 3rd party application from here. For this, simply run the related Installer or MSI package.

It's worth noting that not all above-mentioned mainterance actions are always available. As with the metadata provided by application's authors, the extra mainterance options must be explicitely supported by the MSI package provided by application's authors. Very often the "uninstall" is the only available action.

42 questions
12
votes
1 answer

How do I specify the Help Link, Support Link and Update Information?

I've authored a few Wix installers but I've noticed that my products, when installed and viewed in Control Panel, Add/Remove Programs, are a little light on metadata compared to some other installs. Many installed products contain items such…
Tim Long
  • 13,508
  • 19
  • 79
  • 147
9
votes
1 answer

Uninstall CouchDB Completely Mac OSX

I've played around with my couchdb configuration and I would like to start fresh again, remove the app and downloading a new one didn't seem to remove the configuration completely, where I still have to access with my username and password, and my…
Abu Romaïssae
  • 3,841
  • 5
  • 37
  • 59
9
votes
1 answer

Bootstrapper and Setup in Add/Remove Programs

I have a custom bootstrapper CustomBA and an application setup AppSetup. I only want the AppSetup to be visible in the Add/Remove Programs so I removed the name of the Bootstrapper. This ensures that it is not there in the Add/Remove Programs. I…
8
votes
1 answer

Where does Add/Remove programs pull data for the "Installed On" column?

I'm working on replicating the Windows 7/8 add remove programs applet with VBScript. I've gotten the script to include all the correct entries, but I have not been able to get it to include all the correct additional information Windows displays. As…
Kevin Denham
  • 519
  • 1
  • 6
  • 24
8
votes
1 answer

Adding uninstall information with Inno Setup

I'm using Inno Setup to create an installer for my program but I want to be able to add an icon and change some of the information displayed in the Control Panel (Add/Remove Programs). I know that Inno Setup adds a registry key to get the program…
Andy
  • 3,600
  • 12
  • 53
  • 84
7
votes
2 answers

Icon for ClickOnce application in 'Add or Remove Programs'

I got the icons right for my application, in the Start Menu, application folders, etc., but it doesn't come right into the Add or Remove Programs listing. What should I include for this?
Globis
  • 73
  • 7
4
votes
1 answer

Wix burn does not show multiple entries in ARP

I use Wix 3.7's burn to install prereq's (Windows Installer 4.5, .NET 3.5, SQL Server 2008 R2 and Sync Framework 2.1) prior to the installation of my two product MSI's. Even though all of the prereqs' have entries in Add or Remove Programs (ARP),…
Brett Wertz
  • 412
  • 4
  • 19
3
votes
1 answer

WIX program still exists in Add/Remove section of Control Panel

I made my WIX install option, upgrade so that it removes previous DLLs, However when I go into Control Panel, and go to the Add/Remove Programs section, the previous version is still present. How do I remove this previous icon from this Add/Remove…
TheWommies
  • 4,922
  • 11
  • 61
  • 79
3
votes
2 answers

Setting value for Publisher, Size, and Version in Win 7's Programs and Features for a Java app

I have a Java application that is running on Windows 7. When I look at the uninstaller inside control panel>Programs and Features I see that other apps have values for Publisher, Size, and Version. I would like to set these values in my application,…
3
votes
3 answers

InstallShield Show product name + version in Add/Remove Programs

How to show product name + version like "My product 1.1.1.0" in Add/Remove Programs, Where "My Product" is name of product in InstallShield and "1.1.1.0" Product Version? Thanks.
jitm
  • 2,569
  • 10
  • 40
  • 55
2
votes
1 answer

How to add program into Control Panel Programs with C# or cmd

I have a program file. And I want to add this program into Control Panel Programs like this: How can I do that with C# code or cmd ?
Ali Aliyev
  • 163
  • 9
2
votes
1 answer

App visibility in "Apps & Features" and "Programs & Features" for one user but not another

I've created a C# app for Windows 10. It is installed via an MSI generated with WIX. When it is installed for one user on a machine, though, through no intention of my own, it is not installed for other users on the same machine. This behavior is…
gcdev
  • 1,406
  • 3
  • 17
  • 30
2
votes
1 answer

How to set the "Version" of an "Installed Update" in the Control Panel's "Add or Remove Programs"

I've created an MSI installation file using InstallShield 2010. After I've installed it, if I go to the "Add or Remove Programs" / "Programs and Features" in the Windows Control Panel I can see my program's entry and it also display the program's…
Kobus Smit
  • 1,775
  • 2
  • 18
  • 30
2
votes
1 answer

VS 2010 Setup project: how to get manufacturer name in Programs and Features

In my setup project in VS 2010, in the properties window, I have set the Manufacturer and ProductName properties. I have also set the Company property of the assemblies of my web application and class library. When I install, in Programs and…
Tim Partridge
  • 3,365
  • 1
  • 42
  • 52
2
votes
1 answer

Automating uninstall from Programs and Features

I have a couple of applications that I am trying to uninstall from Windows 7 and Windows 8.1, using Python automation. Windows command lines will also work. The programs appear on the Programs and Features list in the control panel. Clicking them…
1
2 3