aaron.krueger
en respuesta a: kev_fullerton

This has helped me, incorporate into a powershell script or PSADT deployemnt:

# Path: Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{F8C64551-A826-4185-9699-FAC37661A7EB}
        # DisplayName: Autodesk Genuine Service
        # DisplayVersion: 5.1.0.135
        # UninstallString: MsiExec.exe /X{F8C64551-A826-4185-9699-FAC37661A7EB}
        Stop-Process -Name GenuineService -Force -ErrorAction SilentlyContinue
               
        ## Cleanup files so Autodesk Genuine can be removed
        If(Test-Path -Path "C:\ProgramData\Autodesk\Adlm\ProductInformation.pit")
        {
            Remove-Item "C:\ProgramData\Autodesk\Adlm\ProductInformation.pit" -Force -ErrorAction SilentlyContinue
            $UserProfiles = Get-WmiObject Win32_UserProfile | Select-Object -ExpandProperty LocalPath
            ForEach ($Profile in $UserProfiles) {
                Remove-Item "$Profile\AppData\Local\Autodesk\Genuine Autodesk Service\id.dat" -Force -ErrorAction SilentlyContinue
            }
        }
        Execute-MSI -Action 'Uninstall' -Path '{F8C64551-A826-4185-9699-FAC37661A7EB}' -parameters "/qn"
        Stop-Process -Name message_router -Force -ErrorAction SilentlyContinue