Risposte:
Ecco un rapido script VBS che puoi utilizzare per visualizzare l'attributo DistinguishedName del tuo account che contiene l'unità organizzativa in cui si trova il tuo account:
set objSysInfo = CreateObject("ADSystemInfo")
set objUser = GetObject("LDAP://" & objSysInfo.UserName)
wscript.echo "DN: " & objUser.distinguishedName
EDIT: dovrei dire che mostrerà il DN dell'account in quale contesto viene eseguito lo script ...
gpresult / r | trova "OU"
lo farà.
Utente: adfind -sc u:% username% dn
Computer: adfind -sc c:% nomecomputer% dn
Adfind disponibile su http://www.joeware.net/freetools/tools/adfind/index.htm
Sono in grado di eseguire quanto segue in una finestra cmd
gpresult /r | find "OU"
Esempio di output:
USER SETTINGS
--------------
CN=Lastname\, Firstname,OU=Users,OU=Toronto,DC=site,DC=com
Last time Group Policy was applied: 1/24/2019 at 4:04:04 PM
Group Policy was applied from: dc.site.com
Group Policy slow link threshold: 500 kbps
Domain Name: SITE
Domain Type: Windows 2008 or later
Elenca anche i gruppi di utenti di cui sei membro:
The user is a part of the following security groups
---------------------------------------------------
Domain Users
Everyone
BUILTIN\Administrators
BUILTIN\Users
Performance Log Users
NT AUTHORITY\INTERACTIVE
CONSOLE LOGON
NT AUTHORITY\Authenticated Users
This Organization
LOCAL
custom_security_linux_group
A un prompt dei comandi / powershell:
dsquery user -name <your-user-name>