Re: tools



Perhaps you could try searching msdn.com for the two words:
adsi matic

-Paul Randall

"phoenix" <phoenix@xxxxxxxxx> wrote in message
news:uNEhFupMJHA.260@xxxxxxxxxxxxxxxxxxxxxxx
Fantastic tool.. thank you very much.

Is there something similar with Active Directory ? Or am I pushing my
luck ..





Pegasus (MVP) wrote:
"phoenix" <phoenix@xxxxxxxxx> wrote in message
news:OTInp9oMJHA.5692@xxxxxxxxxxxxxxxxxxxxxxx
If I take the following script.

strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" & strComputer &
"\root\cimv2")

Set IPConfigSet = objWMIService.ExecQuery _
("Select * from Win32_NetworkAdapterConfiguration Where
IPEnabled=TRUE")

For Each IPConfig in IPConfigSet
If Not IsNull(IPConfig.IPAddress) Then
For i=LBound(IPConfig.IPAddress) to UBound(IPConfig.IPAddress)
WScript.Echo IPConfig.IPAddress(i)
Next
End If
Next



I am using Windows Management Instrument, how can I trace where this is
and what all the available other options are.

Are there any better tools ?

Try WMI Code Creator:
http://www.microsoft.com/downloads/details.aspx?FamilyID=2cc30a64-ea15-4661-8da4-55bbc145c30e&displaylang=en


.