Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update deployment-prep-active-directory.md #2772

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions azure-stack/hci/deploy/deployment-prep-active-directory.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,15 @@ Before you begin, make sure you've done the following:

- Satisfy the [prerequisites](./deployment-prerequisites.md) for new deployments of Azure Stack HCI.
- Complete the [deployment checklist](./deployment-checklist.md).
- Install Remote Server Administration tools :
- Active Directory Services and Lightweight Directory Services
```powershell
Enable-WindowsOptionalFeature -Online -FeatureName "RSAT-AD-Tools-Feature"
```
- DNS Server Tools
```powershell
Enable-WindowsOptionalFeature -Online -FeatureName "DNS-Server-Tools"
```
- Install the PowerShell module to prepare Active Directory. You can follow one of these options:
- [Download AsHciADArtifactsPreCreationTool.psm1 from this location](https://github.com/Azure/AzureStack-Tools/tree/master/HCI). Run the following command:

Expand Down