How to list available ADSI (Active Directory Service Interfaces) service providers?
How can I list available ADSI (Active Directory Service Interfaces) service providers?
On StackOverflow no one knows, so they advised me to ask here.
this works, googled “script list of adsi providers”
WScript.Echo( listProviders() );function listProviders()
{
var list = "ADSI Providers on this machine\n" );
list += "==============================\n" ); var ads = GetObject( "ADs:" ); var e = new Enumerator( ads );
for( ; !e.atEnd(); e.moveNext() )
{
var mem = e.item();
list += mem.Name + "\n";
}
return( list );
}
Check more discussion of this question.
No related posts.
Leave a comment
Recent Posts
Tags
active-directory
amazon-ec2
apache
apache2
backup
bash
centos
cisco
command-line
debian
dns
email
exchange
firewall
iis
iis7
iptables
linux
macosx
monitoring
mysql
networking
nginx
performance
permissions
php
postfix
raid
security
sql-server
sql-server-2005
sql-server-2008
ssh
ssl
ubuntu
unix
virtualization
vpn
webserver
windows
windows-7
windows-server-2003
windows-server-2008
windows-server-2008-r2
windows-xp





