100% Fix – Unable to Uninstall Eformity – The specified subscription code is invalid

Fixing the “The specified subscription code is invalid in Eformity” Issue

If you’re encountering problems uninstalling eFormity, you can use the following PowerShell command to resolve the issue. This method utilizes the Windows Management Instrumentation (WMI) to locate the eFormity Office Add-in and uninstall it.

Solution Steps

  1. Open PowerShell as Administrator:
    • Press Windows + X and select Windows PowerShell (Admin) or Terminal (Admin).
  2. Run the Following Command:
    Get-WmiObject -Query "SELECT * FROM Win32_Product WHERE Name LIKE '%eformity%Office%Add%'" | ForEach-Object { Start-Process "msiexec.exe" -ArgumentList "/x $($_.IdentifyingNumber) /quiet SUBSCRIPTION=companyname" -NoNewWindow -Wait }
    • This command performs the following actions:
      • Get-WmiObject: Queries WMI for installed products matching the eFormity Office Add-in.
      • ForEach-Object: Iterates through each found product.
      • Start-Process: Initiates the uninstallation process using msiexec.exe.
        • /x: Specifies that you want to uninstall the product.
        • $($_.IdentifyingNumber): Represents the unique identifier for the product to be uninstalled.
        • /quiet: Runs the uninstallation without user interaction.
        • SUBSCRIPTION=companyname: An argument specific to the eFormity product.
  3. Verify Uninstallation:
    • After running the command, check if eFormity has been successfully uninstalled by looking for it in the list of installed programs.
  4. Troubleshooting:
    • If the uninstallation fails, ensure you are running PowerShell with administrative privileges.
    • Double-check the product name in the query to confirm it matches the installed eFormity version.

 

#eformity #uninstalleformity #

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top