Accessing ADSI Interface

  • Thread starter Thread starter Reynolds McClatchey
  • Start date Start date
R

Reynolds McClatchey

I am running some perl scripts that use the ADSI interface:
set oSysInfo = CreateObject("ADSystemInfo")
or in perl
my $sysinfo = Win32::OLE->new('ADSystemInfo');

I want the script to run as an unpriviledged user,
finding out which users are members of specified groups.

Works OK on a W2K DC as an unpriviledged user.
Works OK via terminal services on the same DC as an unpriviledged user.
Works OK on a member W2K PRO client as domain administrator user.
Fails on a member W2K PRO client as an unpriviledged user.

How can an unpriviledged W2K PRO user access AD?

Where can I find some DOCs on the ASDI calls?

Thanks
 
I reinstalled the W2K PRO and cannot reproduce failure
of an unpriviledged user. Now it all works.
 
Back
Top