Tag: PowerShell

Install OpenSSH on Windows 10 using PowerShell

Install OpenSSH on Windows 10 using PowerShell

If you haven’t heard, the latest versions of Windows 10 now has an OpenSSH client and server. There are several articles that detail how to install OpenSSH from the graphical settings panel in Windows 10 but I had a hard time finding the command to install OpenSSH via powershell.

Read More Read More

PowerShell: Get Listening Network Daemons and Associated Processes – netstat replacement

PowerShell: Get Listening Network Daemons and Associated Processes – netstat replacement

This command line tool (powershell script) will list all tcp & udp listeners and their associated windows processes.

It works by querying for all listening TCP & UDP network daemons and then cross-references to the process that is listening on the port, pulling Process Name, Path, and executing Username. Consider it an enhanced replacement for the old netstat command.

Read More Read More