Tableau Desktop 2022 is a business intelligence and data visualization tool that lets you see and understand data in minutes. This article will serve as an informative guide and give you a clear understanding of how to perform a silent installation of Tableau Desktop 2022 from the command line using the EXE installer.
How to Install Tableau Desktop 2022 Silently
Tableau Desktop 2022 Silent Install (EXE)
- Navigate to: https://www.tableau.com/support/releases
- Select the 2022 version you would like to install
- Download the TableauDesktop-64bit-2022-x-x.exe to a folder created at (C:\Downloads)
- Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
- Navigate to the C:\Downloads folder
- Enter the following command:
- TableauDesktop-64bit-2022-x-x.exe /install /quiet /norestart ACCEPTEULA=1
- Press Enter
After a few moments you should see the Tableau Desktop Shortcut appear. You will also find entries in the Start Menu, Installation Directory, and Programs and Features in the Control Panel.
Software Title: | Tableau 2022 |
Vendor: | Tableau Software, LLC |
Architecture: | x64 |
Installer Type: | EXE |
Silent Install Switch: | TableauDesktop-64bit-2022-x-x.exe /install /quiet /norestart ACCEPTEULA=1 |
Silent Uninstall Switch: | TableauDesktop-64bit-2022-x-x.exe /uninstall /quiet /norestart |
Repair Command: | TableauDesktop-64bit-2022-x-x.exe /repair /quiet /norestart |
Download Link: | https://www.tableau.com/support/releases |
PowerShell Script: | https://silentinstallhq.com/tableau-desktop-2022-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. Continue reading if you are interested in additional details and configurations.
Additional Configurations
Create a Tableau Desktop Installation Log File
The Tableau Desktop installer offers the option to generate a log file during installation to assist with troubleshooting should any problems arise. You can use the following commands to create a verbose log file with details about the installation.
Tableau Desktop 2022 Silent Install (EXE) with Logging
TableauDesktop-64bit-2022-x-x.exe /install /quiet /norestart /log "%WINDIR%\Temp\TableauReader-Install.log" ACCEPTEULA=1 |
Change the Tableau Desktop Default Installation Directory
You can change the default installation directory by using the following command line parameters. In this example, I’m installing Tableau Desktop to “C:\Tableau 2022”
TableauDesktop-64bit-2022-x-x.exe /install /quiet /norestart ACCEPTEULA=1 INSTALLDIR="C:\Tableau 2022" |
Exclude Tableau Desktop Shortcut During Install
The Tableau installer creates a desktop shortcut by default. If you don’t want the desktop shortcut, then you can run the following command line switches to exclude it.
Tableau Desktop 2022 Silent Install (EXE) with No Desktop Shortcut
TableauDesktop-64bit-2022-x-x.exe /install /quiet /norestart ACCEPTEULA=1 DESKTOPSHORTCUT=0 |
Disable Tableau Desktop Auto Update Check
The Tableau installer has Auto Update and the Check for Product Update enabled by default. If you want to disable Tableau auto updates you can run the following command line switches.
Tableau Desktop 2022 Silent Install (EXE) with Auto Updates Disabled
TableauDesktop-64bit-2022-x-x.exe /install /quiet /norestart ACCEPTEULA=1 AUTOUPDATE=0 |
Disable the Microsoft SQL Server Driver Install
Tableau Desktop 2022 Silent Install (EXE) Excluding Microsoft SQL Server Driver
TableauDesktop-64bit-2022-x-x.exe /install /quiet /norestart ACCEPTEULA=1 DRIVER_MSSQL=0 |
Disable the PostgreSQL Driver Install
Tableau Desktop 2022 Silent Install (EXE) Excluding PostgreSQL Driver
TableauDesktop-64bit-2022-x-x.exe /install /quiet /norestart ACCEPTEULA=1 DRIVER_POSTGRES=0 |
Disable Tableau Telemetry
Tableau collects data that helps them learn how their products are being used so they can improve existing features and develop new ones. If you don’t want to participate in this option, you can opt out during the install by running the following command line switches.
Tableau Desktop 2022 Silent Install with Telemetry Disabled
TableauDesktop-64bit-2022-x-x.exe /install /quiet /norestart ACCEPTEULA=1 SENDTELEMETRY=0 |
Activate Tableau Product Key During Install
Tableau Desktop 2022 Silent Install (EXE) with Product Key Activation
TableauDesktop-64bit-2022-x-x.exe /install /quiet /norestart ACCEPTEULA=1 ACTIVATE_KEY="XXXX-XXXX-XXXX-XXXX" |
How to Uninstall Tableau Desktop 2022 Silently
Check out the Tableau Desktop 2022 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 command:
Tableau Desktop 2022 Silent Uninstall (EXE)
TableauDesktop-64bit-2022-x-x.exe /uninstall /quiet /norestart |
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.