Altium Designer is a PCB and electronic design automation software package for printed circuit boards. This article will serve as an informative guide and give you a clear understanding of how to perform a silent installation of Altium Designer 22 from the command line using the EXE installer.
How to Install Altium Designer Silently
Altium Designer 22 Silent Install (EXE)
- Follow the instructions outlined here to get access to the Offline Installer:
- https://www.altium.com/documentation/altium-designer/offline-installation-of-altium-designer
- Note: The Offline Installer can be obtained directly from the Downloads page of the Altium website ONLY after signing into your AltiumLive account.
- Download & Copy the OfflineSetup_Altium_Designer_Public_22_x_x.zip to a folder created at (C:\Downloads)
- Extract the contents of the OfflineSetup_Altium_Designer_Public_22_x_x.zip file to C:\Downloads\AltiumDesigner22
- Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
- Navigate to the C:\Downloads\AltiumDesigner22 folder
- Enter the following command:
AltiumDesigner22Setup.exe -Install -AutoInstall -UI:None
- Press Enter
After a few minutes you will find Altium Designer entries in the Start Menu, Installation Directory, and Programs and Features in the Control Panel.
Software Title: | Altium Designer 22 |
Vendor: | Altium Limited |
Architecture: | x64 |
Installer Type: | EXE |
Silent Install Switch: | AltiumDesigner22Setup.exe -Install -AutoInstall -UI:None |
Silent Uninstall Switch: | See Uninstall Section Below |
Download Link: | https://www.altium.com/products/downloads |
PowerShell Script: | https://silentinstallhq.com/altium-designer-22-install-and-uninstall-powershell/ |
The information above provides a quick overview of the software title, vendor, silent install, and silent uninstall switches. The download links provided take you directly to the vendors website.
How to Uninstall Altium Designer 22 Silently
Check out the Altium Designer 22 Install and Uninstall (PowerShell) post for a scripted solution.
- Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
- Enter the following set of commands:
Altium Designer 22 Silent Uninstall (EXE)
DEL "%ALLUSERSPROFILE%\Microsoft\Windows\Start Menu\Altium Designer.lnk" |
DEL "%ALLUSERSPROFILE%\Microsoft\Windows\Start Menu\Programs\Altium\Altium Designer.lnk" |
RMDIR /Q /S "%ALLUSERSPROFILE%\Altium" |
RMDIR /Q /S "%PUBLIC%\Documents\Altium\AD22" |
RMDIR /Q /S "%PROGRAMFILES%\Altium\AD22" |
REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Altium Designer {XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}" /f |
Always make sure to test everything in a development environment prior to implementing anything into production. The information in this article is provided “As Is” without warranty of any kind.