Jump to content

AD - Alle Computer ausgeben


Der letzte Beitrag zu diesem Thema ist mehr als 180 Tage alt. Bitte erstelle einen neuen Beitrag zu Deiner Anfrage!

Recommended Posts

Hallo zusammen

 

Ich möchte alle Computer, die in meiner AD erfasst sind ausgeben. Nun sind diese Computer nicht alle im selben Container, so dass ich den Suchoption nicht auf einen Container , sondern auf die Klasse "Computer" definieren muss.

 

Könnt ihr mir hier helfen wie ich das via VBS realisieren kann? Hilfreiche Links?

 

thx :)

Link to comment

Hallo,

 

auf die schnelle kanns Du es mal hiermit versuchen ...

 

 

---------------------SNIP-----------------------------------

'* ------------------------------------------

'* Computerobjekte zurückliefern

'* ------------------------------------------

 

Set wshnetwork = CreateObject("WScript.Network")

domainname = wshnetwork.UserDomain

 

Set domain = GetObject("WinNT://" & domainname & ",domain")

 

domain.Filter = Array("Computer")

 

for each computer in domain

On Error Resume Next

Set computer = Getobject("WinNt://" & computer.Name & ",computer")

list = list & computer.Name & vbCr

Next

 

MsgBox list

 

---------------------SNIP-----------------------------------

 

hier noch ein Link dazu

 

http://www.microsoft.com/technet/scriptcenter/default.mspx

 

mfg

Link to comment
Der letzte Beitrag zu diesem Thema ist mehr als 180 Tage alt. Bitte erstelle einen neuen Beitrag zu Deiner Anfrage!

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...