File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ $DeploymentUser="deploymentuser"
66
66
#Assign required permissions
67
67
$userSecurityIdentifier = Get-ADuser -Identity $Deploymentuser
68
68
$userSID = [System.Security.Principal.SecurityIdentifier] $userSecurityIdentifier.SID
69
- $acl = Get-Acl -Path $ouPath
69
+ $acl = Get-Acl -Path "AD: $ouPath"
70
70
$userIdentityReference = [System.Security.Principal.IdentityReference] $userSID
71
71
$adRight = [System.DirectoryServices.ActiveDirectoryRights]::CreateChild -bor [System.DirectoryServices.ActiveDirectoryRights]::DeleteChild
72
72
$genericAllRight = [System.DirectoryServices.ActiveDirectoryRights]::GenericAll
@@ -86,7 +86,7 @@ $rule3 = New-Object System.DirectoryServices.ActiveDirectoryAccessRule($userIden
86
86
$acl.AddAccessRule($rule1)
87
87
$acl.AddAccessRule($rule2)
88
88
$acl.AddAccessRule($rule3)
89
- Set-Acl -Path $ouPath -AclObject $acl
89
+ Set-Acl -Path "AD: $ouPath" -AclObject $acl
90
90
```
91
91
92
92
## Required DNS records
@@ -162,4 +162,4 @@ Get-NetAdapter "vManagement*"|Set-DnsClient -RegisterThisConnectionsAddress $fal
162
162
163
163
Proceed to:
164
164
- [ Download the Azure Stack HCI OS software] ( ../deploy/download-23h2-software.md ) .
165
- - [ Install the Azure Stack HCI OS software] ( ../deploy/deployment-install-os.md ) .
165
+ - [ Install the Azure Stack HCI OS software] ( ../deploy/deployment-install-os.md ) .
You can’t perform that action at this time.
0 commit comments