More fixes

This commit is contained in:
Ray 2024-04-12 21:16:12 +10:00 committed by GitHub
parent 0aa8bef540
commit a313e7b671
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ foreach ($row in $fous) {
$ouName = $row.Name
# Check if the OU already exists
if (-not (Get-ADOrganizationalUnit -Filter {Name -eq $ouName})) {
if (-not (Get-ADOrganizationalUnit -Filter "Name -eq '$ouName'")) {
# Create the OU
New-ADOrganizationalUnit -Name $ouName -Path "DC=alphadelta,DC=com" -ErrorAction SilentlyContinue
Write-Host "OU '$ouName' created successfully."