Skip to content

Instantly share code, notes, and snippets.

@mannharleen
Created July 15, 2020 00:04
Show Gist options
  • Save mannharleen/bf538f068e850612000a62e7854076c0 to your computer and use it in GitHub Desktop.
Save mannharleen/bf538f068e850612000a62e7854076c0 to your computer and use it in GitHub Desktop.
$cred = Get-Credential #Read credentials
$username = $cred.username
$password = $cred.GetNetworkCredential().password
# Get current domain using logged-on user's credentials
$CurrentDomain = "LDAP://" + ([ADSI]"").distinguishedName
$domain = New-Object System.DirectoryServices.DirectoryEntry($CurrentDomain,$UserName,$Password)
if ($domain.name -eq $null)
{
write-host "Authentication failed - please verify your username and password."
exit #terminate the script.
}
else
{
write-host "Successfully authenticated with domain $domain.name"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment