PuTTY is a free and open-source terminal emulator, serial console and network file transfer application. This article will serve as an informative guide and give you a clear understanding of how to perform a silent installation of PuTTY 0.80 from the command line using the MSI installer.
How to Install PuTTY Silently
PuTTY 0.80 Silent Install (MSI) 32-bit
- Navigate to: https://www.chiark.greenend.org.uk/~sgtatham/putty/releases/0.80.html
- Select the 32-bit MSI (Windows Installer) link under Package Files
- Download the putty-0.80-installer.msi 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: MsiExec.exe /i putty-0.80-installer.msi /qn
- Press Enter
After a few moments you should see the PuTTY shortcut in the Start Menu, Installation Directory, and Programs and Features in the Control Panel.
Software Title: | PuTTY release 0.80 (32-bit) |
Vendor: | Simon Tatham |
Version: | 0.80.0.0 |
Architecture: | x86 |
Installer Type: | MSI |
Silent Install Switch: | MsiExec.exe /i putty-0.80-installer.msi /qn |
Silent Uninstall Switch: | MsiExec.exe /x {BE8E4B58-023F-4B1C-864E-686C003BC8DF} /qn |
Repair Command: | MsiExec.exe /fa {BE8E4B58-023F-4B1C-864E-686C003BC8DF} /qn |
Download Link: | PuTTY release 0.80 (32-bit) Download |
PowerShell Script: | PuTTY | PowerShell Script |
Detection Script: | PuTTY | Detection Script |
PuTTY 0.80 Silent Install (MSI) 64-bit
- Navigate to: https://www.chiark.greenend.org.uk/~sgtatham/putty/releases/0.80.html
- Select the 64-bit MSI (Windows Installer) link under Package Files
- Download the putty-64bit-0.80-installer.msi 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: MsiExec.exe /i putty-64bit-0.80-installer.msi /qn
- Press Enter
After a few moments you should see the PuTTY shortcut in the Start Menu, Installation Directory, and Programs and Features in the Control Panel.
Software Title: | PuTTY release 0.80 (64-bit) |
Vendor: | Simon Tatham |
Version: | 0.80.0.0 |
Architecture: | x64 |
Installer Type: | MSI |
Silent Install Switch: | MsiExec.exe /i putty-64bit-0.80-installer.msi /qn |
Silent Uninstall Switch: | MsiExec.exe /x {98B86AF9-EC3E-49F8-8B34-B48837CC5719} /qn |
Repair Command: | MsiExec.exe /fa {98B86AF9-EC3E-49F8-8B34-B48837CC5719} /qn |
Download Link: | PuTTY release 0.80 (64-bit) Download |
PowerShell Script: | PuTTY | PowerShell Script |
Detection Script: | PuTTY | Detection Script |
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 PuTTY Installation Log File
The PuTTY MSI 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.
PuTTY 0.80 Silent Install (MSI) 32-bit with Logging
MsiExec.exe /i putty-0.80-installer.msi /qn /L*V "%WINDIR%\Temp\PuTTY-Install.log" |
PuTTY 0.80 Silent Install (MSI) 64-bit with Logging
MsiExec.exe /i putty-64bit-0.80-installer.msi /qn /L*V "%WINDIR%\Temp\PuTTY-Install.log" |
Change the PuTTY Default Installation Directory
You can change the default installation directory by using the following command line parameters. In this example, I’m installing PuTTY to “C:\PuTTY”
MsiExec.exe /i putty-64bit-0.80-installer.msi INSTALLDIR="C:\PuTTY" /qn |
How to Uninstall PuTTY 0.80 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:
PuTTY 0.80 Silent Uninstall (MSI) 32-bit
MsiExec.exe /x {BE8E4B58-023F-4B1C-864E-686C003BC8DF} /qn |
PuTTY 0.80 Silent Uninstall (MSI) 64-bit
MsiExec.exe /x {98B86AF9-EC3E-49F8-8B34-B48837CC5719} /qn |
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.