Determining your Active Directory DN
This little piece of wscript works wonders when you’re attempting to determine where you live in the active directory.
Set objADSysInfo = CreateObject("ADSystemInfo")
wscript.echo objADSysInfo.UserName
You can put that into a file called FindMyDN.vbs, and then execute it with wscript FindMyDN.vbs from the command line. Voila!
This post is licensed under CC BY 4.0 by the author.