1 Pluspunkt 0 Minuspunkte

Wie kann man PSRemoting Befehle von Linux aus auf einem Remote Windows ausführen?

root@ubuntu:~$ pwsh
PowerShell 7.5.0
PS /root> Invoke-Command -ComputerName vie-t-srv-audit -ScriptBlock { hostname }
Invoke-Command: This parameter set requires WSMan, and no supported WSMan client library was found. WSMan is either not installed or unavailable for this system.
PS /root>
von  

1 Antwort

0 Pluspunkte 0 Minuspunkte

PowerShell unter Linux verwendet standardmäßig SSH anstelle von WSMan für Invoke-Command. Installiere auf dem Windows Zielsystem einen OpenSSH Server.

Add-WindowsFeature -Name OpenSSH-Server

Starte den Dienst 

Start-Service sshd
Set-Service -Name sshd -StartupType Automatic

und versuche dich per SSH zu verbinden.

ssh user@host
von (1.1k Punkte)