SQLiteStudio is an open-source, cross-platform, and intuitive SQLite database manager. It provides a graphical user interface (GUI) for interacting with SQLite databases, allowing users to create, modify, and query databases without the need to write SQL commands manually. This article will serve as an informative guide and give you a clear understanding of how to perform a silent installation of SQLiteStudio from the command line using the EXE installer.
How to Install SQLiteStudio Silently
SQLiteStudio 32-bit Silent Install (EXE)
- Navigate to: https://github.com/pawelsalawa/sqlitestudio/releases/latest
- Download the SQLiteStudio-x.y.z-windows-installer.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:
SQLiteStudio-x.y.z-windows-installer.exe --unattendedmodeui none --mode unattended --install_for all |
After a few moments you should see the SQLiteStudio Desktop Shortcut appear. You will also find entries in the Start Menu, Installation Directory, and Programs and Features in the Control Panel.
Software Title: | SQLiteStudio |
Vendor: | sqlitestudio.pl |
Architecture: | x86 |
Installer Type: | EXE |
Silent Install Switch: | SQLiteStudio-x.y.z-windows-installer.exe --unattendedmodeui none --mode unattended --install_for all |
Silent Uninstall Switch (32-bit System) | "%ProgramFiles%\SQLiteStudio\uninstall.exe" --unattendedmodeui none --mode unattended |
Silent Uninstall Switch (64-bit System) | "%ProgramFiles(x86)%\SQLiteStudio\uninstall.exe" --unattendedmodeui none --mode unattended |
Download Link: | https://github.com/pawelsalawa/sqlitestudio/releases/latest |
PowerShell Script: | https://silentinstallhq.com/sqlitestudio-install-and-uninstall-powershell/ |
Detection Script: | https://silentinstallhq.com/create-a-custom-detection-script-for-sqlitestudio-powershell/ |
SQLiteStudio 64-bit Silent Install (EXE)
- Navigate to: https://github.com/pawelsalawa/sqlitestudio/releases/latest
- Download the SQLiteStudio-x.y.z-windows-x64-installer.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:
SQLiteStudio-x.y.z-windows-x64-installer.exe --unattendedmodeui none --mode unattended --install_for all |
After a few moments you should see the SQLiteStudio Desktop Shortcut appear. You will also find entries in the Start Menu, Installation Directory, and Programs and Features in the Control Panel.
Software Title: | SQLiteStudio |
Vendor: | sqlitestudio.pl |
Architecture: | x64 |
Installer Type: | EXE |
Silent Install Switch: | SQLiteStudio-x.y.z-windows-x64-installer.exe --unattendedmodeui none --mode unattended --install_for all |
Silent Uninstall Switch: | "%ProgramFiles%\SQLiteStudio\uninstall.exe" --unattendedmodeui none --mode unattended |
Download Link: | https://github.com/pawelsalawa/sqlitestudio/releases/latest |
PowerShell Script: | https://silentinstallhq.com/sqlitestudio-install-and-uninstall-powershell/ |
Detection Script: | https://silentinstallhq.com/create-a-custom-detection-script-for-sqlitestudio-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
Change the SQLiteStudio Default Installation Directory
You can also change the default installation directory by using the following command line parameters. In this example, I’m installing SQLiteStudio to “C:\SQLiteStudio”
SQLiteStudio-x.y.z-windows-x64-installer.exe --prefix "C:\SQLiteStudio" --unattendedmodeui none --mode unattended --install_for all |
Do Not Associate SQLite File Extensions with SQLiteStudio
SQLiteStudio-x.y.z-windows-x64-installer.exe --unattendedmodeui none --mode unattended --install_for all --file_assoc 0 |
How to Uninstall SQLiteStudio Silently
Check out the following posts for a scripted solution:
- Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
- Enter one of the following commands:
SQLiteStudio 32-bit Silent Uninstall (EXE) on 32-bit System
"%ProgramFiles%\SQLiteStudio\uninstall.exe" --unattendedmodeui none --mode unattended |
SQLiteStudio 32-bit Silent Uninstall (EXE) on 64-bit System
"%ProgramFiles(x86)%\SQLiteStudio\uninstall.exe" --unattendedmodeui none --mode unattended |
SQLiteStudio 64-bit Silent Uninstall (EXE) on 64-bit System
"%ProgramFiles%\SQLiteStudio\uninstall.exe" --unattendedmodeui none --mode unattended |
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.