Final Answer:
To install active directory binaries on a Windows Server 2019 system using PowerShell, you should execute the command:
a) Install-WindowsFeature -Name AD-Domain-Services
Step-by-step explanation:
The correct PowerShell command for installing Active Directory Domain Services (AD DS) on a Windows Server 2019 system is Install-WindowsFeature -Name AD-Domain-Services. This cmdlet is used to install specified roles, role services, or features on a computer, and in this case, it adds the AD DS feature.
Options analysis:
Option a) is correct and aligns with the standard PowerShell command for installing AD DS.
Options b), c), and d) provide incorrect commands for other purposes, such as enabling optional features or using an invalid cmdlet.
Therefore, the correct answer is a) Install-WindowsFeature -Name AD-Domain-Services.
"
Complete Question
You want to install active directory binaries on a windows server 2019 system. To be able to do this, which of the following command should you execute on windows powershell?
a) Install-WindowsFeature -Name AD-Domain-Services
b) Enable-ADOptionalFeature -Identity 'WindowsServerBackup' -Source 'd:\sources\sxs'
c) Add-WindowsFeature AD-Domain-Services
d) Install-Feature -Name 'ADDS'
"