Exam MD-102 All QuestionsBrowse all questions from this exam
Question 167

Your network contains an on-premises Active Directory domain. The domain contains two computers named Computer1 and Computer2 that run Windows 10.

You install Windows Admin Center on Computer1.

You need to manage Computer2 from Computer1 by using Windows Admin Center.

What should you do on Computer2?

    Correct Answer: B

    To manage Computer2 from Computer1 using Windows Admin Center, you need to enable Windows Remote Management (WinRM) and configure it to allow remote connections. By running the Enable-PSRemoting cmdlet, you start the WinRM service, create a listener to accept requests, enable a firewall exception for WinRM, and ensure all necessary configurations are made. This cmdlet simplifies the process by performing all required steps automatically, making it the most comprehensive and effective option to prepare Computer2 for remote management using Windows Admin Center.

Discussion
VirtualJPOption: C

Windows Admin Center uses WinRM for remote management, so allowing WinRM through the firewall is a crucial step in enabling this functionality

MerrybobOption: B

Going against the grain and selecting "B. Run the Enable-PSRemoting cmdlet" as my answer. According to the MS site, you need to allow WinRM port 5589 only for Workgroup machines that are on the same subnet. The question here states these machines are domain-joined. Ref: https://learn.microsoft.com/en-us/windows-server/manage/windows-admin-center/support/troubleshooting#are-you-connecting-to-a-workgroup-machine-on-a-different-subnet Also, the Enable-PSRemoting cmdlet performs a series of functions including; starting the WinRM service, creating a listener to accept requests on any IP address, enabling a firewall exception, and restarting the WinRM service after all changes are made. Ref: https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/enable-psremoting?view=powershell-7.4#:~:text=The%20Enable%2DPSRemoting%20cmdlet%20performs,make%20the%20preceding%20changes%20effective. Good luck to all!

madsaOption: B

Run the Enable-PSRemoting cmdlet.

fiskaba

I would go with B too, as that command enables remote management AND also allows WinRM through the firewall.

nap61Option: B

Enable-PSRemoting enables WinRM services and rule in firewall.

OyYaGottaOption: B

PSRRemote will open a firewall port and run WinRM. If you do just any other the others it won't connect and enable powershell scripts to be pushed to the machine.

DarkfireOption: B

While C and D are also correct, there just a single setting. I'll go for B based on the command sets multiple settings: https://learn.microsoft.com/en-us/windows-server/manage/windows-admin-center/support/known-issues#:~:text=Windows%2010%20doesn%27t,enable%20PSRemoting. https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/enable-psremoting?view=powershell-7.4 But the real question is..... Which is the official answer @ the exam?! =D

MR_EliotOption: B

I will go with B. Only allowing WinRM port is not enough. You will also need to change the service to automatic. Enable-PSRemoting does both at them.

mp34Option: B

C will work, as long as the service is started and set to Automatic..... But running Enable-Psremoting starts the service and adds the Firewall exception....

yosryOption: C

IS CORRECT

nosmanavOption: B

As far as I know WAC uses PowerShell connection to manage remote servers. Even if I am mistaken Just open the a FW port could not be enough. The service must also be enabled and set to start automatically. All these step are done with the command Enable-PSRemoting

chandravamsiOption: C

Option : C

PrasisOption: B

Chatgpt: To manage Computer2 from Computer1 using Windows Admin Center, you need to ensure that Windows Remote Management (WinRM) is enabled and allowed through the firewall on Computer2. This is necessary for Windows Admin Center to connect and manage the remote machine. Therefore, the correct steps to take on Computer2 are: **B. Run the Enable-PSRemoting cmdlet.** This cmdlet configures the computer to receive PowerShell remote commands that are sent using the WS-Management technology. **C. Allow Windows Remote Management (WinRM) through the Microsoft Defender firewall.** This step ensures that the necessary firewall ports are open to allow WinRM communication. You should perform both actions to fully configure Computer2 for remote management via Windows Admin Center.

ejonesy80Option: C

To manage Computer2 from Computer1 using Windows Admin Center, you need to ensure that the necessary prerequisites are met. The correct answer is: C. Allow Windows Remote Management (WinRM) through the Microsoft Defender firewall. Explanation: Windows Admin Center relies on WinRM (Windows Remote Management) for communication with remote computers. By default, WinRM is not enabled on Windows 10 computers, and the firewall may block WinRM traffic. Therefore, you need to allow WinRM through the firewall on Computer2 to enable remote management via Windows Admin Center from Computer1.

ejonesy80

My apologies, After further investigation, i change my anser to: B. Run the Enable-PSRemoting cmdlet. This cmdlet does it all. While WinRM through firewall only, if it's Enabled on device, which isn't the case by Default. Hope one day Microsoft/Pearson VUE will add the function to see which answers were wrong, so we can learn from it.

mail2bala3011Option: B

Option B does all required setting

PasadoOption: A

ChatGPT answer is A

da_terminator

well, its wrong

NoursBearOption: B

Make sure you have WinRM & PowerShell remoting enabled, these are disabled by default in Windows 10 and to enable them you type "Enable-PSRemoting" in the PowerShell console with admin privileges. You also need to allow TCP connections from outside of your subnet. Type "Set-NetFirewallRule -Name WINRM-HTTP-In-TCP -RemoteAddress Any" from the same PowerShell console with admin privileges.

NoursBear

https://serverfault.com/questions/1013979/can-windows-admin-center-connect-to-a-remote-server

Amir1909Option: C

C is correct