Recommendations
How to Test credentials in PowerShell?
How to Test credentials in PowerShell? PowerShell allows you to test login / password authentication against Active Directory using one of these two methods: $UserName = ‘xxxx’ $Password = ‘yyyy’ Function Test-ADAuthentication { param( $username, Read more…