Bird
0
0

Which of the following commands correctly installs the Active Directory module on Windows 10 using PowerShell?

easy📝 Syntax Q3 of 15
PowerShell - Active Directory
Which of the following commands correctly installs the Active Directory module on Windows 10 using PowerShell?
AInstall-Module ActiveDirectory
BInstall-WindowsFeature RSAT-AD-PowerShell
CEnable-WindowsOptionalFeature -FeatureName RSAT-AD-PowerShell -Online
DAdd-WindowsCapability -Online -Name Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0
Step-by-Step Solution
Solution:
  1. Step 1: Understand Windows 10 AD module installation

    On Windows 10, the AD module is part of RSAT features installed via Add-WindowsCapability.
  2. Step 2: Identify correct command syntax

    The correct command is Add-WindowsCapability -Online -Name Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0.
  3. Final Answer:

    Add-WindowsCapability -Online -Name Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0 -> Option D
  4. Quick Check:

    Windows 10 AD install = Add-WindowsCapability with RSAT name [OK]
Quick Trick: Use Add-WindowsCapability for RSAT features on Windows 10 [OK]
Common Mistakes:
  • Using Install-WindowsFeature on Windows 10 (server-only)
  • Trying Enable-WindowsOptionalFeature with wrong feature name
  • Using Install-Module which is for PowerShell Gallery modules

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More PowerShell Quizzes