The Logi Bolt App is a tool to pair Logi Bolt compatible devices with the Logi Bolt receiver. This article will serve as an informative guide and give you a clear understanding of how to perform a silent installation of the Logi Bolt App from the command line using the EXE installer.
How to Install the Logi Bolt App Silently
Logi Bolt App Silent Install (EXE)
- Navigate to: https://support.logi.com/hc/en-us/articles/4418089333655
- Download & Copy the LogiBoltInstaller.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: LogiBoltInstaller.exe /silent
- Press Enter
After a few moments you will find Logi Bolt entries in the Start Menu, Installation Directory, and Programs and Features in the Control Panel.
Software Title: | Logi Bolt |
Vendor: | Logitech |
Architecture: | x86_x64 |
Installer Type: | EXE |
Silent Install Switch: | LogiBoltInstaller.exe /silent |
Silent Uninstall Switch: | "%ProgramFiles%\Logi\LogiBolt\LogiBoltUninstaller.exe" /silent |
Download Link: | https://support.logi.com/hc/en-us/articles/4418089333655 |
PowerShell Script: | https://silentinstallhq.com/logi-bolt-app-install-and-uninstall-powershell/ |
Detection Script: | https://silentinstallhq.com/create-a-custom-detection-script-for-the-logi-bolt-app-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
Disable Logi Bolt Auto Updates
- Open Notepad or your favorite text editor
- Add the following lines:
{
"autostart": true,
"app_auto_update_enabled": false
}
- Save the file to C:\Downloads\ and name it: settings.json
- 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 to copy & overwrite the settings.json at “%ProgramFiles%\Logi\LogiBolt”:
xcopy /y ".\settings.json" "%ProgramFiles%\Logi\LogiBolt\" |
Disable Sharing Diagnostics & Usage Data (Analytics)
- Install Logi Bolt and open the application
- Select NO,THANKS to Diagnostics & Usage Data prompt
- Close the Logi Bolt application
- Navigate to: “%LocalAppData%\LogiBolt\”
- Copy the settings.json to “C:\Downloads” directory with the Logi Bolt executable downloaded earlier
- Uninstall Logi Bolt and delete the “%LocalAppData%\LogiBolt\” directory
- 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 commands:
LogiBoltInstaller.exe /silent |
|
How to Uninstall the Logi Bolt App 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 the following command:
Logi Bolt App Silent Uninstall (EXE)
"%ProgramFiles%\Logi\LogiBolt\LogiBoltUninstaller.exe" /silent |
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.