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
- Open PowerShell as Administrator:
- Press
Windows + X
and select Windows PowerShell (Admin) or Terminal (Admin).
- Press
- Run the Following Command:
- 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.
- This command performs the following actions:
- Verify Uninstallation:
- After running the command, check if eFormity has been successfully uninstalled by looking for it in the list of installed programs.
- 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 #