
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Connect to SSH Using PowerShell
It is possible to connect the non-windows target machines with the PowerShell using the SSH command in PowerShell. For that, you need to use the below format.
ssh username@servername
The below example shows how we can connect the non-windows target machine.
PS C:\> ssh [email protected]
Output
Once you run this command the first time for any new server the setting will be added to the path .ssh/known_hosts in the user profile.
Advertisements