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 the default installation of 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.
For remote connections in a Workgroup to Workgroup/Domain scenario, the remote computer (here Server2) must be added to the trusted hosts list on the source computer (here Server1). To do this, run the following command on the source computer in a Command Prompt window that is opened with elevated user rights.
winrm set winrm/config/client @{TrustedHosts=”RemoteComputerName”}
Note: TrustedHosts is a setting on the local computer that defines one or more computers that are trusted when establishing remoting sessions using WinRM from the local computer using either ENTER-PSSESSION or INVOKE-COMMAND.
Reference: Remote Management with Server Manager
https://technet.microsoft.com/en-us/library/dd759202.aspx
0
0
A couple more good websites with info on setting up winrm:
http://www.spinningtek.com/configuring-remote-management-for-windows-server-2012-in-a-workgroup/
0
0