Your network contains an Active Directory domain named contoso.com. The domain contains a server named
Server1 that runs Windows Server 2012 and a server named Server2 that runs Windows Server 2008 R2
Service Pack 1 (SP1). Both servers are member servers.
On Server2, you install all of the software required to ensure that Server2 can be managed remotely from
Server Manager.
You need to ensure that you can manage Server2 fromServer1 by using Server Manager.
Which two tasks should you perform on Server2? (Each correct answer presents part of the solution. Choose
two.)
A.
Run the Enable-PSRemotingcmdlet.
B.
Run the Configure-SMRemoting.ps1 script.
C.
Run the Enable-PSSessionConfigurationcmdlet.
D.
Run the Set-ExecutionPolicycmdlet.
E.
Run the systempropertiesremote.exe command.
Explanation:
The output of this command indicates whether ServerManager Remoting is enabled or disabled on the server.
To configure Server Manager remote management by using Windows PowerShell
On the computer that you want to manage remotely, open a Windows PowerShell session with elevated user
rights. To do this, click Start, click All Programs, click Accessories, click
Windows PowerShell, right-click the Windows PowerShell shortcut, and then click Run as administrator.
In the Windows PowerShell session, type the following, and then press Enter.
Set-ExecutionPolicy -ExecutionPolicyRemoteSigned
Type the following, and then press Enter to enable all required firewall rule exceptions.
Configure-SMRemoting.ps1 -force enable
Answers should be A and D.
It cannot be B since Server2 is running Server 2008 R2 SP1. The Configure-SMRemoting.ps1 script is for Server 2012 R2 servers. Thus it cannot be run.
Also in the book “exam Ref 70-417 of Microsoft Press” the answer is set-executionpolicy anche configure-smremoting.ps1!
The answer is correct, B and D.
Please refer this:
http://technet.microsoft.com/en-us/library/dd759202.aspx
Yes, it is B and D.
https://technet.microsoft.com/en-us/library/dd759202.aspx
The answer is B and D. A is not correct because its already stated in the question that all the necessary software for remote pc is installed. this mean you should apply the policies after that.