How to Use PowerShell to uninstall Maxon Cinema 4D all versions which app were not installed using an MSI package

Yan, Jayden 81 Reputation points
2021-12-16T07:54:33.467+00:00

How to Use PowerShell to uninstall Maxon Cinema 4D all versions which app was not installed using an MSI package?
https://www.maxon.net/en/cinema-4d

Windows Server PowerShell
Windows Server PowerShell
Windows Server: A family of Microsoft server operating systems that support enterprise-level management, data storage, applications, and communications.PowerShell: A family of Microsoft task automation and configuration management frameworks consisting of a command-line shell and associated scripting language.
5,381 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Rich Matheisen 45,091 Reputation points
    2021-12-23T15:35:50.01+00:00

    Check these two registry keys for the software:

    get-itemproperty 'HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall*'
    get-itemproperty 'HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall*'

    You can check the "DisplayName" property, perhaps for a value like "Maxon". If you find the item the "UninstallString" property will contain the information necessary to remove the software.

    0 comments No comments