Is there any way (short of getting an active directory browser) to view my OU while logged in to the domain?
Asked
Active
Viewed 1.3e+01k times
35
-
Are you a domain admin, or have access to the domain admin tools? – Matt Simmons Jun 09 '09 at 19:44
7 Answers
57
gpresult /r | find "OU"
will do it.

MathewC
- 6,957
- 9
- 39
- 53
-
1
-
/r doesn't work for me, although you do get almost everything otherwise with gpresult. – Matt Hanson Jun 09 '09 at 19:48
-
-
1
-
-
-
-
-
-
1
16
UPDATE
You should now use this answer on any kind of modern version of Windows
Here's a quick VBS script you can use to display your account's DistinguishedName attribute which contains the OU that your account is in:
set objSysInfo = CreateObject("ADSystemInfo")
set objUser = GetObject("LDAP://" & objSysInfo.UserName)
wscript.echo "DN: " & objUser.distinguishedName
EDIT: I should say that it will display the DN of the account in which context the script is run...

squillman
- 37,883
- 12
- 92
- 146
-
-
I beat him but for some reason gpresult /r doesn't work for everyone. "snaps fingers in lost pointage regret" ;-) – MathewC Jun 09 '09 at 19:57
-
-
3Not sure why this is the accepted answer when "whoami /fqdn" is far simpler? – RCross Feb 23 '18 at 10:42
3
I am able to run the following in a cmd window
gpresult /r | find "OU"
Example 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
It also lists the user groups you are a member of:
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

Kevin
- 213
- 2
- 8
2
User: adfind -sc u:%username% dn
Computer: adfind -sc c:%computername% dn
Adfind available at http://www.joeware.net/freetools/tools/adfind/index.htm

benPearce
- 321
- 5
- 11