Uninstall an interim fix in command line mode

To uninstall an iFix on the command line:
  1. Go to the Installation Manager tools directory, for example:
    cd /InstallationManager/bin/eclipse/tools
  2. Check what is currently installed for FTM SWIFT:
    ./imcl listInstalledPackages -long | grep com.ibm.dni
    The output includes a line for the installed fix pack. There are additional lines for installed iFixes. All lines have the format:
    inst_dir : package_id : name : version
    Locate the line for the iFix you are going to uninstall and note inst_dir and package_id.
  3. Enter the following command:
    ./imcl uninstall package_id -installationDirectory inst_dir
    where inst_dir and package_id are the values you determined in step 2. For example:
    ./imcl uninstall com.ibm.dni.v324.iFix001_3.2.4.20201017_1543 
      -installationDirectory /opt/ibm/ftm
  4. Verify the uninstall result:
    ./imcl listInstalledPackages -long | grep com.ibm.dni
    Check that the line for the iFix you located in step 2 is no longer displayed.