Bird
0
0

Which PowerShell command is used to import the Active Directory module after it is installed?

easy📝 Conceptual Q1 of 15
PowerShell - Active Directory
Which PowerShell command is used to import the Active Directory module after it is installed?
AImport-Module ActiveDirectory
BInstall-Module ActiveDirectory
CEnable-Module ActiveDirectory
DAdd-Module ActiveDirectory
Step-by-Step Solution
Solution:
  1. Step 1: Understand module import in PowerShell

    PowerShell uses Import-Module to load installed modules into the session.
  2. Step 2: Identify the correct module name for AD

    The Active Directory module is named 'ActiveDirectory'. So the command is Import-Module ActiveDirectory.
  3. Final Answer:

    Import-Module ActiveDirectory -> Option A
  4. Quick Check:

    Import module command = Import-Module ActiveDirectory [OK]
Quick Trick: Use Import-Module to load installed modules into PowerShell [OK]
Common Mistakes:
  • Confusing Install-Module with Import-Module
  • Using incorrect module names
  • Trying to enable or add modules with wrong commands

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More PowerShell Quizzes