ADSysteminfo

T

Tim Rush

I've used this in Excel before, but am not sure what library was necessary to
make it work. Can anyone clue me in?

Dim objSysInfo As Object
Set objSysInfo = CreateObject("ADSystemInfo")

I'm looking to pull in some system information off the machines running the
file and logging it. ojbSysInfo.coomputername for example would give me
the full CN=.... response.

Tim
 
R

Rick Rothstein \(MVP - VB\)

I'm pretty sure

CN = Environ("computername")

will assign the name of the computer your code is executing on to the CN
variable.

Rick
 
T

Tim Rush

I'm attempting to read them. Was not aware I could even write them back.
Especially on domain protected systems.
Just need to know which references to use for this library.
 

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

Top