z2z / adlds-docker

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

adlds-docker - A Docker Image for Active Directory Lightweight Directory Services

Adding information to the directory with Powershell

$secpasswd = ConvertTo-SecureString "4DLD$4dmin2017!" -AsPlainText -Force
$mycreds = New-Object System.Management.Automation.PSCredential ("ADLDSAdmin", $secpasswd)

New-ADUser GlenJohn -Type iNetOrgPerson -Path "DC=local" -server localhost:389 -authtype 1 -credential $mycreds

About


Languages

Language:Dockerfile 100.0%