Home > Enterprise >  How to connect to LDAP from Powershell in another server
How to connect to LDAP from Powershell in another server

Time:11-03

I have to query my Active Directory from another windows server using PowerShell through LDAP. I got LDAP connection details, port number, login credential. However, after googling for hours I couldnt find a soultion to connect PowerShell to LDAP. I tried below cmdlet but all returned the error "the term ** is not recognised as the the name of a cmdlet".

    New-AdfsLdapServerConnection
    Test-LDAPConnection

Can someone please help. I want to connect to my LDAP and run a simple command like

Get-ADGroup -Filter 'Name -like "Sec-abc-xyz-123-U"'

later I want to write my full Powershell script and then use Task scheduler to automate my powershell script. Can someone please let me know how I could connect to LDAP?

CodePudding user response:

As @Santiago Squarzon suggested, you need to install RSAT to use the AD PS Module

  • Related