Your network contains an Active Directory domain named contoso.com. The domain contains a
server named Server1. The domain contains a standalone server named Server2 that is located in a
perimeter network. Both servers run Windows Server 2012 R2.
You need to manage Server2 remotely from Server1.
What should you do?

A.
From Server1, run the Enable-PsRemotingcmdlet.
B.
From Server2, run the winrm command.
C.
From Server2/ run the Enable-PsRemotingcmdlet.
D.
From Server1, run the winrm command.
This one is confusing but if I got it right the answer D is correct because of:
-in WS 2012 R remote management is enabled by default but to connect to a computer that is running WS 2012 R2 remotely, remote management must be first enabled (winrm cmd).
– winrm must be run on the destination server – in our case that is Server1, as we are tasked to remotely manage Server2 from Server1.
Any comments on that?
0
0
D.) is still correct because you configure the trustedHosts list on Server 1
winrm set winrm/config/client @{TrustedHosts=”SERVER-NAME-OR-IP”}
0
0