PoshCode Archive  Artifact [49d99fb356]

Artifact 49d99fb3564b8b847f218286db5474d8eb7aa208507598ebebdb170fcb4f68d2:

  • File This-script-performs-OpenLdap-query-.ps1 — part of check-in [fbc9a8f1be] at 2018-06-10 14:24:49 on branch trunk — This script performs OpenLdap query against specified Server. (user: unknown size: 1470)

# encoding: ascii
# api: powershell
# title: 
# description: This script performs OpenLdap query against specified Server.
# version: 0.1
# type: class
# license: CC0
# x-poshcode-id: 84
# x-archived: 2016-05-24T22:52:35
#
# Note: $Path is the LDAP path for the User account to authenticate with.
#
Param($user,
      $password = $(Read-Host "Enter Password" -asSec),
      $filter = "(objectclass=user)",
      $server = $(throw '$server is required'),
      $path = $(throw '$path is required'),
      [switch]$all,
      [switch]$verbose)
    
function GetSecurePass ($SecurePassword) {
  $Ptr = [System.Runtime.InteropServices.Marshal]::SecureStringToCoTaskMemUnicode($SecurePassword)
  $password = [System.Runtime.InteropServices.Marshal]::PtrToStringUni($Ptr)
  [System.Runtime.InteropServices.Marshal]::ZeroFreeCoTaskMemUnicode($Ptr)
  $password
}    

if($verbose){$verbosepreference = "Continue"}

$DN = "LDAP://$server/$path"
Write-Verbose "DN = $DN"
$auth = [System.DirectoryServices.AuthenticationTypes]::FastBind
Write-Verbose "Auth = FastBind"
$de = New-Object System.DirectoryServices.DirectoryEntry($DN,$user,(GetSecurePass $Password),$auth)
Write-Verbose $de
Write-Verbose "Filter: $filter"
$ds = New-Object system.DirectoryServices.DirectorySearcher($de,$filter) 
Write-Verbose $ds
if($all)
{
    Write-Verbose "Finding All"
    $ds.FindAll()
}
else
{
    Write-Verbose "Finding One"
    $ds.FindOne()
}