ADD and Remove Users from AD group – Python
Lately, I am working with Python so sharing a TIP on how to ADD and remove users from AD group. With PowerShell there is Active Directory Module that makes our life easy. Similarly with python you can utilize ldap3 library. https://pypi.org/project/ldap3/ Install it on your machine using pip install ldap3 Here are the samples that I…