This repository was archived by the owner on Jan 21, 2021. It is now read-only.
File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -4471,7 +4471,7 @@ Switch. Return user accounts that are marked as 'sensitive and not allowed for d
4471
4471
4472
4472
Switch. Return computer objects that are trusted to authenticate for other principals.
4473
4473
4474
- .PARAMETER KerberosPreauthNotRequired
4474
+ .PARAMETER PreauthNotRequired
4475
4475
4476
4476
Switch. Return user accounts with "Do not require Kerberos preauthentication" set.
4477
4477
@@ -4628,8 +4628,9 @@ The raw DirectoryServices.SearchResult object, if -Raw is enabled.
4628
4628
[Switch]
4629
4629
$TrustedToAuth,
4630
4630
4631
+ [Alias('KerberosPreauthNotRequired', 'NoPreauth')]
4631
4632
[Switch]
4632
- $KerberosPreauthNotRequired ,
4633
+ $PreauthNotRequired ,
4633
4634
4634
4635
[ValidateNotNullOrEmpty()]
4635
4636
[String]
@@ -4763,7 +4764,7 @@ The raw DirectoryServices.SearchResult object, if -Raw is enabled.
4763
4764
Write-Verbose '[Get-DomainUser] Searching for users that are trusted to authenticate for other principals'
4764
4765
$Filter += '(msds-allowedtodelegateto=*)'
4765
4766
}
4766
- if ($PSBoundParameters['KerberosPreauthNotRequired ']) {
4767
+ if ($PSBoundParameters['PreauthNotRequired ']) {
4767
4768
Write-Verbose '[Get-DomainUser] Searching for user accounts that do not require kerberos preauthenticate'
4768
4769
$Filter += '(userAccountControl:1.2.840.113556.1.4.803:=4194304)'
4769
4770
}
You can’t perform that action at this time.
0 commit comments