Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion DomainManagement/DomainManagement.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
RootModule = 'DomainManagement.psm1'

# Version number of this module.
ModuleVersion = '1.9.248'
ModuleVersion = '1.9.249'

# ID used to uniquely identify this module
GUID = '0a405382-ebc2-445b-8325-541535810193'
Expand Down
4 changes: 4 additions & 0 deletions DomainManagement/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.9.249 (2026-02-12)

- Fix: ServiceAccounts - fixed typo.

## 1.9.248 (2026-02-12)

- Upd: AccessRules - stopped removing "Protect from Accidental deletion" from containers
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@

#region PrincipalsAllowedToRetrieveManagedPassword
# Use SamAccountName rather than DistinguishedName as accounts may not yet have been moved to their correct container so DN might fail
$currentPrincipals = ($adObject.PrincipalsAllowedToRetrieveManagedPassword | Get-ADObject @parameters -Properties SamAccountName -ErrorAction SilentlzContinue -ErrorVariable failed).SamAccountName
$currentPrincipals = ($adObject.PrincipalsAllowedToRetrieveManagedPassword | Get-ADObject @parameters -Properties SamAccountName -ErrorAction SilentlyContinue -ErrorVariable failed).SamAccountName
foreach ($fail in $failed) {
Write-PSFMessage -Level Warning -String 'Test-DMServiceAccount.Error.PrincipalNotFound' -StringValues $adObject.SamAccountName, $fail.TargetObject -Target $adObject
}
Expand Down