Complete the code to start an interactive session with a remote computer named 'Server01'.
Enter-PSSession -ComputerName [1]The Enter-PSSession command starts an interactive session with the remote computer named 'Server01'.
Complete the code to enter a session on a remote computer using the IP address '192.168.1.10'.
Enter-PSSession -ComputerName [1]You can use an IP address with Enter-PSSession to connect to a remote computer.
Fix the error in the code to enter a session on 'Server02' using the correct parameter name.
Enter-PSSession -[1] Server02The correct parameter to specify the remote computer is -ComputerName.
Fill both blanks to enter a session on 'Server03' using the username 'AdminUser'.
Enter-PSSession -ComputerName [1] -Credential (Get-Credential -UserName [2])
You specify the remote computer with -ComputerName and use (Get-Credential -UserName) with the username for the -Credential parameter.
Fill all three blanks to enter a session on 'Server04' with username 'User1' and specify the port 5986.
Enter-PSSession -ComputerName [1] -Credential (Get-Credential -UserName [2]) -Port [3]
The -ComputerName is 'Server04', -Credential uses (Get-Credential -UserName 'User1'), and the -Port is 5986, which is the default for secure PowerShell remoting.