Why you don’t see “Add”
That guidance is a bit out of date. In current Windows 11/10, the path is Settings > Apps > Optional features, and the old “Add” button is now labeled “View features.” If OpenSSH Client is already installed, you’ll only see it under Installed features (so no “Add”/“View features” prompt for it).
Add OpenSSH via Settings (GUI)
- Open Settings > Apps > Optional features.
- Click View features (under “Add an optional feature”).
- Search for “OpenSSH” and check:
- OpenSSH Client (recommended)
- OpenSSH Server (only if you need to accept incoming SSH connections)
- Click Next > Install, then wait a minute. Verify with: open Windows Terminal and run: ssh -V
If “View features” is missing/greyed out
- The feature may already be installed: look under Installed features for “OpenSSH Client/Server.”
- Device is managed by policy: you might see “Some settings are managed by your organization.” In that case, use PowerShell below or contact your admin.
- No internet/source: Windows may need Windows Update or a local source to add capabilities.
Add via PowerShell (works on Home/Pro/Enterprise)
Run Windows Terminal (Admin) and execute:
Code:
# Client
Add-WindowsCapability -Online -Name OpenSSH.Client~~~~0.0.1.0
# Server (optional)
Add-WindowsCapability -Online -Name OpenSSH.Server~~~~0.0.1.0
# Start and enable SSH server (only if you installed Server)
Start-Service sshd
Set-Service -Name sshd -StartupType Automatic
Then test with:
ssh -V
What version of Windows are you running, and do you see “View features” on Settings > Apps > Optional features? If not, tell me exactly what you see on that page.