List domains on a windows network?

J

Jason

Hi,

I'm looking for a way to enumerate the domains within my network. I
can find functions within the win32net library to enumerate computers
within a given domain, but is there a way I can get a list of the
domains themselves?

Thanks,
Jason
 
T

Tim Golden

Hi,

I'm looking for a way to enumerate the domains within my network. I
can find functions within the win32net library to enumerate computers
within a given domain, but is there a way I can get a list of the
domains themselves?

Thanks,
Jason

You've probably found this out by now, but the following
code should do the business:

<code>

import win32com.client

for domain in win32com.client.GetObject ("WinNT:"):
print domain.Name

</code>

TJG
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,764
Messages
2,569,565
Members
45,041
Latest member
RomeoFarnh

Latest Threads

Top