Learning and Sharing
  • Home
  • Blog
  • Linux
  • macOS
  • Virtualization
    • VMware
    • VirtualBox
  • Windows
    • Windows 11
    • Windows 10
    • Windows Server
  • Series
    • Symantec
    • Intune
    • Microsoft Azure
    • Powershell
    • VirtualBox
    • VMware
    • PowerShell Learning
    • Microsoft Graph
  • More
    • Auto Installation
    • AEC Installation
  • Contact
No Result
View All Result
  • Home
  • Blog
  • Linux
  • macOS
  • Virtualization
    • VMware
    • VirtualBox
  • Windows
    • Windows 11
    • Windows 10
    • Windows Server
  • Series
    • Symantec
    • Intune
    • Microsoft Azure
    • Powershell
    • VirtualBox
    • VMware
    • PowerShell Learning
    • Microsoft Graph
  • More
    • Auto Installation
    • AEC Installation
  • Contact
No Result
View All Result
No Result
View All Result

How to Uninstall All Autodesk Products At Once Silently

July 29, 2024
in A, Autodesk, Blog
0
ADVERTISEMENT

Table of Contents

Uninstall All Autodesk Products At Once Silently

Sometimes, you want to uninstall or remove all installed Autodesk products simultaneously. But Autodesk no longer supports them, and you need to remove them one by one manually from the Control Panel.

Removing Autodesk products is a tiresome task. You need to uninstall them one by one, wait for the first one to be removed, and then remove the next one. So, it could take hours to completely remove them.

Z06rLWgcyW08E08D6oP4gtCdTXQmxH73dK1KwuiOyYXzmUnyOE7Y5lW3dexT

Uninstall Autodesk products using PowerShell

We need to do it on multiple computers. So, we’ve created a PowerShell script to remove all installed Autodesk products silently without user interaction. The script explanation:

  • Get the list of installed Autodesk from the Registry.
  • Uninstall all Autodesk apps using the UninstallString.
  • Uninstall all Autodesk libraries using product code.
  • Some apps depend on others, so we run the remove function to ensure all apps get removed automatically.
  • C:\Autodesk is the cached folder when installing Autodesk products. Uncomment in the script if you want to delete it when uninstalling.
function Autodesk-Uninstaller {

    # Get the list of all installed Autodesk products from the Windows Registry.
    Clear-Host
    $apps = @()
    $apps = Get-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\*"
    $apps += Get-ItemProperty -Path "HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*"
    $apps = $apps | Where-Object {($_.DisplayName -like "*Autodesk*") -or ($_.Publisher -like "*Autodesk*") -or ($_.DisplayName -like "*AutoCAD*") -or ($_.DisplayName -like "*Revit*")}
    $apps = $apps | Select-Object DisplayName, Publisher, PSChildName, UninstallString -Unique

    Write-Host "Found $($apps.Count) installed Autodesk products" -ForegroundColor Yellow

    foreach ($app in $apps) {
        # Uninstall Autodesk Access
        if ($app.DisplayName -match "Autodesk Access"){
            Write-Host "Uninstalling Autodesk Access..." -ForegroundColor Yellow
            Start-Process -FilePath "C:\Program Files\Autodesk\AdODIS\V1\Installer.exe" -ArgumentList "-q -i uninstall --trigger_point system -m C:\ProgramData\Autodesk\ODIS\metadata\{A3158B3E-5F28-358A-BF1A-9532D8EBC811}\pkg.access.xml -x `"C:\Program Files\Autodesk\AdODIS\V1\SetupRes\manifest.xsd`" --manifest_type package" -NoNewWindow -Wait
        }

        # Uninstall Autodesk Identity Manager
        if ($app.DisplayName -match "Autodesk Identity Manager"){
            Write-Host "Uninstalling Autodesk Identity Manager..." -ForegroundColor Yellow
            Start-Process -FilePath "C:\Program Files\Autodesk\AdskIdentityManager\uninstall.exe" -ArgumentList "--mode unattended" -NoNewWindow -Wait
        }

        # Uninstall Autodesk Genuine Service
        if ($app.DisplayName -match "Autodesk Genuine Service"){
            Write-Host "Uninstalling Autodesk Genuine Service..." -ForegroundColor Yellow
            Remove-Item "$Env:ALLUSERSPROFILE\Autodesk\Adlm\ProductInformation.pit" -Force
            Remove-Item "$Env:userprofile\AppData\Local\Autodesk\Genuine Autodesk Service\id.dat" -Force
            msiexec.exe /x "{21DE6405-91DE-4A69-A8FB-483847F702C6}" /qn
        }

        # Uninstall Carbon Insights for Revit
        if ($app.DisplayName -like "*Carbon Insights for Revit*"){
            Write-Host "Uninstalling Carbon Insights for Revit..." -ForegroundColor Yellow
            Start-Process -FilePath "C:\Program Files\Autodesk\AdODIS\V1\Installer.exe" -ArgumentList "-q -i uninstall --trigger_point system -m C:\ProgramData\Autodesk\ODIS\metadata\`"$($app.PSChildName)`"\pkg.RTCA.xml -x `"C:\Program Files\Autodesk\AdODIS\V1\SetupRes\manifest.xsd`" --manifest_type package" -NoNewWindow -Wait
        }
        
        if ($app.UninstallString -like "*installer.exe*"){
            Write-Host "Uninstalling $($app.DisplayName)..." -ForegroundColor Yellow
            Start-Process -FilePath "C:\Program Files\Autodesk\AdODIS\V1\Installer.exe" -ArgumentList "-q -i uninstall --trigger_point system -m C:\ProgramData\Autodesk\ODIS\metadata\$($app.PSChildName)\bundleManifest.xml -x C:\ProgramData\Autodesk\ODIS\metadata\$($app.PSChildName)\SetupRes\manifest.xsd" -NoNewWindow -Wait
            Start-Sleep -Seconds 3
        }
        else {
            # Uninstall apps and libraries using product code.
            Write-Host "Uninstalling $($app.DisplayName)..." -ForegroundColor Yellow
            Start-Process -FilePath msiexec.exe -ArgumentList "/x `"$($app.PSChildName)`" /qn" -NoNewWindow -Wait
            Start-Sleep -Seconds 3
        } 
    }
}

# Some apps are the depending apps of others. So, run the function three times to make sure all apps got removed.
$i = 0
for ($i = 1; $i -lt 5; $i++) {
    Autodesk-Uninstaller
}

# Uncomment the below line to delete the C:\Autodesk folder.
# Remove-Item -Path 'C:\Autodesk' -Recurse -Force

# Uncomment the below line to restart the computer automatically when complete.
# Restart-Computer -Force

Clear-Host
Write-Host "The uninstallation process has been completed. It is recommended to restart the computer." -ForegroundColor Green

1. Copy the code snippet, then create your own PowerShell script, for example, at E:\Scripts\uninstall.ps1.

2. Right click on the Windows Start icon then open PowerShell (Terminal) as administrator.

3. Now, run the following commands to:

  • Configure the execution policy to run the script in this session only (more secure).
  • Navigate to the script location.
  • Execute the script.
Set-ExecutionPolicy Bypass
cd E:\Scripts\
.\uninstall.ps1
6fWC8gr9WL9nJDFQKQ62HM1gyu0KwIaaYJ0yHwGpxPunGMVTKBWyDd7cUUQW

4. The script will detect all installed Autodesk products and then uninstall them automatically without any prompts or interactions. It could take some time to complete, depending on the number of installed apps.

6esVIp0Zgl2SkhLTzlThkB1jaXEATN8KnGZwK5y6Z7UX8ZsFkewvz41G4N3B

Once done, go to the Control Panel to see if all Autodesk products have been removed.

aMHw0FhPX5eWuTGuuQW6Vis5fzXoazrWZvbesX9JVJncaZ7bqW9s6PbPt4fD

One-line PowerShell script

Alternatively, instead of creating the PowerShell script manually. You can open PowerShell as administrator and then run the below one-line script to do it automatically.

irm bonguides.com/autodesk-installer | iex
Note Note: Our script is safe, but you should verify the security and contents of any script from the internet you are not familiar with and use it with your own risk.

View the script on GitHub.

ADVERTISEMENT

Not a reader? Watch this related video tutorial:

5/5 - (2 votes)
Previous Post

How to Uninstall the Autodesk Genuine Service on Windows

Next Post

Running Hyper-V and VMware Workstation on The Same Machine

Related Posts

Images Hidden Due To Mature Content Settings In CivitAI

August 31, 2024

Azure OpenAI vs Azure AI Hub, How to Choose the Right One for Your Needs

August 20, 2024

Running Hyper-V and VMware Workstation on The Same Machine

August 15, 2024
Ftr5

How to Uninstall the Autodesk Genuine Service on Windows

July 29, 2024

How to Remove The Test Mode Watermark Without Disabling Test Mode

July 28, 2024
Ftr19

How to Fix Windows Cannot Read the ProductKey From the Unattend Answer File in VirtualBox

July 26, 2024

Leave a Reply Cancel reply

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

Recent Posts

  • How To Turn On uBlock Origin Extension in Chrome (2025)
  • Images Hidden Due To Mature Content Settings In CivitAI
  • Azure OpenAI vs Azure AI Hub, How to Choose the Right One for Your Needs

Categories

Stay in Touch

Discord Server

Join the Discord server with the site members for all questions and discussions.

Telegram Community

Jump in Telegram server. Ask questions and discuss everything with the site members.

Youtube Channel

Watch more videos, learning and sharing with Leo ❤❤❤. Sharing to be better.

Newsletter

Join the movement and receive our weekly Tech related newsletter. It’s Free.

General

Microsoft Windows

Microsoft Office

VMware

VirtualBox

Technology

PowerShell

Microsoft 365

Microsoft Teams

Email Servers

Copyright 2025 © All rights Reserved. Design by Leo with ❤

No Result
View All Result
  • Home
  • Linux
  • Intune
  • macOS
  • VMware
  • VirtualBox
  • Powershell
  • Windows 10
  • Windows 11
  • Microsoft 365
  • Microsoft Azure
  • Microsoft Office
  • Active Directory

No Result
View All Result
  • Home
  • Linux
  • Intune
  • macOS
  • VMware
  • VirtualBox
  • Powershell
  • Windows 10
  • Windows 11
  • Microsoft 365
  • Microsoft Azure
  • Microsoft Office
  • Active Directory