Summary: Identify if capabilities like OpenSSH are installed in your Windows 10 Operating System
Hey, Doctor Scripto. I was curious if there was a way to see if a workstation has a capability installed on it like OpenSSH. I’m trying to report on this for my environment.
Absolutely! You can run the following line on a workstation to show the installed Capabilities like OpenSSH
Get-WindowsCapability -Online | Where-Object { $_.State -eq ‘Installed’ }
PowerShell, Doctor Scripto, PowerTip, Sean Kearney
0 comments