1
Powershell-암호를 재설정하여 AD에서 사용자 자격 증명 테스트
Powershell을 사용하여 사용자가 Active Directory에서 인증하는지 알 수 있습니다. Function Test-ADAuthentication { param($username,$password) (new-object directoryservices.directoryentry "",$username,$password).psbase.name -ne $null } Test-ADAuthentication "test" "Password1" 그러나 나는 내 인생에서 다음과 같은 방법을 알 수 없습니다. 비밀번호를 재설정해야하는지 확인 전송 된 자격 증명 확인이 마지막 비밀번호에서 작동했습니다. 어떻게하면 될까요?