Ssh-server-windows: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
| (4 dazwischenliegende Versionen von 2 Benutzern werden nicht angezeigt) | |||
| Zeile 1: | Zeile 1: | ||
| − | =Installation= | + | =Powershell= |
| + | ;Checken | ||
| + | * Get-WindowsCapability -Online | Where-Object Name -like 'OpenSSH*' | ||
| + | Name : OpenSSH.Client | ||
| + | (UTC)0.0.1.0 | ||
| + | State : Installed | ||
| + | |||
| + | Name : OpenSSH.Server | ||
| + | State : NotPresent | ||
| + | ;Installation | ||
| + | *Add-WindowsCapability -Online -Name OpenSSH.Server | ||
| + | |||
| + | Path : | ||
| + | Online : True | ||
| + | RestartNeeded : False | ||
| + | ;Start | ||
| + | *Start-Service sshd | ||
| + | ;Rebootfähig machen | ||
| + | *Set-Service -Name sshd -StartupType Automatic | ||
| + | |||
| + | =Grafische Installation= | ||
*Einstellungen | *Einstellungen | ||
**Apps | **Apps | ||
| Zeile 12: | Zeile 32: | ||
[[Datei:ssh-server-1.png]] | [[Datei:ssh-server-1.png]] | ||
| + | |||
| + | =Links= | ||
| + | *https://learn.microsoft.com/de-de/windows-server/administration/openssh/openssh_install_firstuse?tabs=gui | ||
| + | *https://www.server-world.info/en/note?os=Windows_Server_2012&p=openssh | ||
Aktuelle Version vom 24. September 2025, 11:56 Uhr
Powershell
- Checken
- Get-WindowsCapability -Online | Where-Object Name -like 'OpenSSH*'
Name : OpenSSH.Client (UTC)0.0.1.0 State : Installed
Name : OpenSSH.Server State : NotPresent
- Installation
- Add-WindowsCapability -Online -Name OpenSSH.Server
Path : Online : True RestartNeeded : False
- Start
- Start-Service sshd
- Rebootfähig machen
- Set-Service -Name sshd -StartupType Automatic
Grafische Installation
- Einstellungen
- Apps
- Optinale Features verwalten
- Features hinzufügen
- Open-SSH Server installieren
- Features hinzufügen
- Optinale Features verwalten
- Apps
Aktivieren
- Dienste
- OpenSSH SSH Server
- Starten und auf Starttyp Automatisch stellen
- OpenSSH SSH Server
