PowerShell - Remote Management
Which of the following is the correct syntax to start an interactive SSH-based PowerShell session to a remote computer named
Server01?Server01?Enter-PSSession -HostName <name> to start SSH sessions.-HostName Server01, which is correct for SSH remoting. Enter-PSSession -ComputerName Server01 -UseSSH uses -ComputerName with -UseSSH which is invalid syntax. Invoke-Command -Session Server01 -SSH mixes parameters incorrectly. New-PSSession -ComputerName Server01 creates a session but does not specify SSH or hostname properly.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions