Butterbrot 10 Posted July 27, 2004 Report Share Posted July 27, 2004 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 :) Quote Link to comment
freak04 10 Posted July 27, 2004 Report Share Posted July 27, 2004 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 Quote Link to comment
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.