You need to manage Server2 remotely from Server1

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?

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.



Leave a Reply to Dev7 Cancel reply7

Your email address will not be published. Required fields are marked *

20 − eleven =


Cribb

Cribb

B

I believe is the correct answer.

Andreas

Andreas

I don’t think you can manage a server just by doing winrm , if the server is another network and not a member of the same domain or forrest.

Matt

Matt

D
Since the Server 2 is standalone server it needs to be added to the trusted host list on server 1 using winrm set winrm/config/client ‘@{TrustedHosts=”Server2″}’

Michael

Michael

Going with Matt in this one. Answer = D

https://technet.microsoft.com/en-us/magazine/ff700227.aspx

In many cases, you will be able to work with remote computers in other domains. However, if the remote computer is not in a trusted domain, the remote computer might not be able to authenticate your credentials. To enable authentication, you need to add the remote computer to the list of trusted hosts for the local computer in WinRM. To do so, type:
winrm s winrm/config/client ‘@{TrustedHosts=”RemoteComputer”}’
Here, RemoteComputer should be the name of the remote computer, such as:
winrm s winrm/config/client ‘@{TrustedHosts=”CorpServer56″}’

james cribb

james cribb

Winrm is the ‘server’ that is being managed. WinRS is the ‘client’ that can remotely manage the machine with WinRm configured.

B

Dev7

Dev7

C is the answer

billkom

billkom

D is the answer.
On Windows ServerĀ® 2012, Windows PowerShell remoting is enabled by default. No need to run Enable-PsRemotingcmdlet