I would like to authenticate an user in my ActiveDirectory with the Username and the Password. Is there any chance to do that with powershell and the activeDirectory module. Thank you

link|improve this question

1  
Such questions with no details and no hint of what you have tried ( and failed ) are not welcome in StackOverflow. – manojlds Oct 5 '11 at 14:54
Do you need to validate user credentials against active directory? – Shay Levy Oct 5 '11 at 15:10
Sorry for the lack of details. Next time I gonna write my question more in detail – seven-ply Oct 6 '11 at 7:22
feedback

2 Answers

up vote 2 down vote accepted

There are multiple ways of doing this. Here is a quick and simple function which authenticates a user to AD.

Function Test-ADAuthentication {
    param($username,$password)
    (new-object directoryservices.directoryentry "",$username,$password).psbase.name -ne $null
}

PS C:\> Test-ADAuthentication "dom\myusername" "mypassword"
True
PS C:\> 

It might not be the best function for your needs but your question lacks details.

link|improve this answer
That was exactly what I was looking for. Thank You and sorry for the lack of details. Next time I gonna write my question more in detail – seven-ply Oct 6 '11 at 7:22
feedback

Requires .NET 3.5 and PowerShell V2

$UserName = 'user1'
$Password = 'P@ssw0rd'
$Domain = $env:USERDOMAIN

Add-Type -AssemblyName System.DirectoryServices.AccountManagement
$ct = [System.DirectoryServices.AccountManagement.ContextType]::Domain
$pc = New-Object System.DirectoryServices.AccountManagement.PrincipalContext $ct,$Domain
$pc.ValidateCredentials($UserName,$Password)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.