Skip to main content

How to create PuTTY shortcut in Windows to establish connection to Linux server? | Step by step guide is here!

PuTTY is open-source software and an SSH and telnet client for Windows. PuTTY helps to establish an SSH connection from a Windows machine to a Linux server. However it is not limited to this feature only, it has loads of other features. 
This article will guide us in creating a PutTTY shortcut for windows.

This is a 7-step procedure and step 6 is very important!

Step 1: Download the MSI file and install PuTTY on your Windows machine.

Step 2: Go to your PuTTY folder. It is usually located in C:\Program Files\PuTTY or C:\Program Files(x86)\PuTTY

Fig: image_1


Step 3: Create a shortcut of putty.exe - the shortcut will be created in the desktop folder.


Fig: image_2

Step 4: Navigate to your desktop folder and you will find the shortcut named putty.exe - Shortcut


Fig: image_3

Step 5: Right-click on the putty.exe - Shortcut and then click properties - properties window will open, like the images shown below (image_4 and image_5)- 

 
Fig: image_4


Fig: image_5

Step 6: Modify the Target field value of the configuration window like the image below (image_6).
You will modify this field value by your server's credential and IP address. 

Here is an example - 
IP address: 192.0.0.102
Username: mukitul
Password: pass

So, in the Target field after "C:\Program Files\PuTTY\putty.exe"  we will add space and after the space, we will add -ssh mukitul@192.0.0.102 -pw pass


Fig: image_6

Now close the properties window by clicking Apply and OK

Step 7: Rename the putty.exe - Shortcut to 192.0.0.102 - server and now open the terminal by double clicking on 192.0.0.102 - server.




Congrats! You are successful to create a PuTTY shortcut to connect a Linux server from your Windows machine.

Comments

Popular posts from this blog

Part 1: Connecting AI to My Daily Tools – A Simple MCP-Powered TODO App

Imagine asking an AI to manage your TODO list, run a local script, or update a file - it does exactly that, like a virtual assistant plugged into your computer. This is now possible thanks to something called MCP ( Model Context Protocol ).  What is MCP?   MCP (Model Context Protocol) is a lightweight protocol proposed by Anthropic that enables AI models to interact with tools in a structured and transparent manner. It lets you define tools in an AI-readable format — including their names, parameters, descriptions, and return types — so that LLMs like Claude, GPT (and others) can understand and call them safely. With MCP, you can turn your scripts, utilities, and services into AI-callable tools, effectively giving the model "extensions" into your local environment or applications.  Image Source: fb.com/devtalks My First Experiment: A TODO List MCP Server   To explore MCP in action, I created a simple MCP server that exposes two tools:   đŸ“ addTodo(day,...

Double (==) equal and Triple (===) equal sign - how it works on JavaScript | a brief explanation!

 In JavaScript, we may come across double equal (==) and triple equal (===) sign while checking the equality of two variables' values. But why two different operators are there for the same operation of equality check? What do they actually mean? You will find the answers in this blog. 1. How  ==  ( double equal ) works Double equal does the loose equality check. It checks the value equality only. It converts the type of the variables to match each other. Some common examples of double equal (==) check of two variables x and y are given below in tabular form - x y x==y undefined undefined / null true undefined true / false / NaN / 0 / 17 / 'string' false null true / false / NaN / 0 / 12 / 'string' false null null / undefined true NaN any-value false new String("mukitul") "mukitul" true {...