Pritunl is an open source VPN server and management panel. It gives the user the power of the OpenVPN protocol while using an intuitive web interface. This article will serve as an informative guide and give you a clear understanding of how to perform a silent installation of the Pritunl Client from the command line using the EXE installer.
How to Install the Pritunl Client Silently
Pritunl Client Silent Install (EXE)
- Navigate to: https://github.com/pritunl/pritunl-client-electron/releases/latest
- Download the Pritunl.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: Pritunl.exe /VERYSILENT /NORESTART
- Press Enter
After a few moments you should see the Pritunl Desktop Shortcut appear. You will also find entries in the Start Menu, Installation Directory, and Programs and Features in the Control Panel.
Software Title: | Pritunl Client |
Vendor: | Pritunl |
Architecture: | x86 |
Installer Type: | EXE |
Silent Install Switch: | Pritunl.exe /VERYSILENT /NORESTART |
Silent Uninstall Switch (32-bit System) | "%ProgramFiles%\Pritunl\unins000.exe" /VERYSILENT /NORESTART |
Silent Uninstall Switch (64-bit System) | "%ProgramFiles(x86)%\Pritunl\unins000.exe" /VERYSILENT /NORESTART |
Download Link: | https://github.com/pritunl/pritunl-client-electron/releases/latest |
PowerShell Script: | https://silentinstallhq.com/pritunl-client-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 Pritunl Client Installation Log File
The Pritunl Client installer offers the option to generate a log file during installation to assist with troubleshooting should any problems arise. You can use the following command to create a verbose log file with details about the installation.
Pritunl Client Silent Install (EXE) with Logging
Pritunl.exe /VERYSILENT /NORESTART /LOG="%WINDIR%\Temp\Pritunl-Install.log" |
Change the Pritunl Client Default Installation Directory
You can also change the default installation directory by using the following command line parameters. In this example, I’m installing the Pritunl Client to “C:\Pritunl”
Pritunl.exe /DIR="C:\Pritunl" /VERYSILENT /NORESTART |
Exclude the Pritunl Desktop Shortcut During Install
The Pritunl Client installer creates a desktop shortcut by default. If you do not want the desktop shortcut, then you can run the following command line switches to exclude it.
Pritunl Client Silent Install (EXE) with No Desktop Shortcut
Pritunl.exe /VERYSILENT /NORESTART /MERGETASKS=!desktopicon |
How to Uninstall the Pritunl Client Silently
Check out the Pritunl Client 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 one of the following commands:
Pritunl Client Silent Uninstall (EXE) on 32-bit System
"%ProgramFiles%\Pritunl\unins000.exe" /VERYSILENT /NORESTART |
Pritunl Client Silent Uninstall (EXE) on 64-bit System
"%ProgramFiles(x86)%\Pritunl\unins000.exe" /VERYSILENT /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.