Réponses:
Voici un script VBS rapide que vous pouvez utiliser pour afficher l'attribut DistinguishedName de votre compte qui contient l'unité d'organisation dans laquelle se trouve votre compte:
set objSysInfo = CreateObject("ADSystemInfo")
set objUser = GetObject("LDAP://" & objSysInfo.UserName)
wscript.echo "DN: " & objUser.distinguishedName
EDIT: Je dois dire qu'il affichera le DN du compte dans quel contexte le script est exécuté ...
gpresult / r | trouver"
le fera.
Utilisateur: adfind -sc u:% username% dn
Ordinateur: adfind -sc c:% nomordinateur% dn
Adfind disponible sur http://www.joeware.net/freetools/tools/adfind/index.htm
Je peux exécuter ce qui suit dans une fenêtre cmd
gpresult /r | find "OU"
Exemple de sortie:
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
Il répertorie également les groupes d'utilisateurs dont vous êtes membre:
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
À l'invite de commande / PowerShell:
dsquery user -name <your-user-name>