-
-
Notifications
You must be signed in to change notification settings - Fork 278
Open
Labels
Description
I am working with multiple domains, and doing something like this:
foreach($DC in $DCs){
$accounts += Get-ADReplAccount -All -Server $DC
}
$accounts | Test-PasswordQuality -WeakPasswordHashesSortedFile $HIBP | Out-File $auditoutput -Encoding ASCII
$accounts | Format-Custom -View PwDump | Out-File $hashoutput -Encoding ASCIIIn the output for Test-PasswordQuality i get domain\user.
But in the PwDump I only get username.
Is there a way to get a domain reference in the pwdump etc.?
Thank you