5

Trying to figure out if there is an environment variable or another method to get a given machine's logon domain from simple command line script.

The variable %USERDOMAIN% will provide me with the domain my user is - and in a domain trsut scenario does not return the machine's domain, rather MY domain.

The idea is that I want to be able to have my cmd script code not care about what domain it is in, but sitll be able to determine that info at runtime.

There's VBScript method here:

Set objRootDSE = GetObject("LDAP://RootDSE") strDomain = objRootDSE.Get("DefaultNamingContext") WScript.Echo strDomain 

Another method is this:

net config workstation | findstr /C:"Workstation domain" 

which outputs:

Workstation domain DOMAINNAME 

But since there is no command line equivalent to unix cut, I am finding it difficult to get this info into a variable.

2
  • I'd also be happy with the non-NetBIOS name - i.e. domainname.mydomain.net Commented Jan 4, 2010 at 20:28
  • ^ That's also called the FQDN, or Fully Qualified Domain Name Commented Jan 4, 2010 at 20:40

3 Answers 3

3

This should do it for you:

for /f "tokens=1-3 delims= " %%d in ('net config workstation ^| findstr /c:"Workstation domain"') do set machinedomain=%%f 

Then %machinedomain% will contain the domain. Note that "Workstation domain" is case-sensitive there.

3
  • +1 - Works for me. I'd do a "tokens=3", and I'm more of a "FIND" guy, but that's all I'd change: for /f "usebackq tokens=3" %%i in (net config workstation ^| find "Workstation d omain") do echo Domain is %%i Commented Jan 4, 2010 at 23:56
  • Thanks, worked like a charm. Added an @ to get rid of a echoed command: ...do @set MACHINEDOMAIN=%%f Commented Jan 4, 2010 at 23:59
  • 1
    Hilarious thing about windows is that this won't work for a version in another language. Commented Jun 14, 2013 at 0:07
1

Wmi:

wmic path win32_computersystem get domain 
0

Powershell:

get-wmiobject win32_ntdomain 

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.