Hi,
What is the UninstallString? Have you checked the msi.log file for details?
See if you can uninstall the MSI using msiexec.exe
MsiExec.exe /x /quiet <MSI-File-Path>
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Python tool uninstallation fails when tried using commandline method. [Uninstall-Package" or "& cmd /c $UninstallString /quiet /uninstall" ] Both the methods fail. Please suggest some alternate route to resolve this.
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question. To protect privacy, user profiles for migrated questions are anonymized.
Hi,
What is the UninstallString? Have you checked the msi.log file for details?
See if you can uninstall the MSI using msiexec.exe
MsiExec.exe /x /quiet <MSI-File-Path>
Both methods are tried. The log file mentioned is empty.
The MSIExec /x /quiet method also fails.
Are there specific steps to be followed when python is installed via the setup file and we wish to uninstall it ?
You can check to see if there are such specific steps on the Python site. I removed the Python packages with Uninstall-Package and it worked as expected. Try repairing the installation using the Python installer, then run the Uninstall-Package cmdlet again.
Also it seems the packages should be removed in some specific order. I removed the documents and libraries first, and the core interpreter and executables last.
Thank you Ian. This helped us resolve the issue.