ADSI

  • Thread starter Thread starter Guest
  • Start date Start date
Patrick,

Can not help you with the ADSI question ( there is a limit of 1000 to this
that I believe can be changed! ) but I might have another way to do this.

Take a look at a really cool tool called ADModify that will help you do this
for all existing users and then look at ADSIEdit to set it so all newly
created users will be set up this way.

There is a really good article by Mark Fugatt that explains this at the
following link:

http://www.msexchange.org/tutorials/MF023.html

It includes the link to download ADModify ( currently at version 1.5 ). You
will need to install the Support Tools on your DC ( I would strongly suggest
that you install the Support Tools on all WIN2000 Servers ). You can find
the Support Tools on the WIN2000 Server CD or on the WIN2000 Service Pack CD
in the Support | Tools folder. I would opt for the Service Pack....

HTH,

Cary

Patrick said:
How to Change the Display Names of Active Directory Users with Active
Directory Services Interface Script
http://support.microsoft.com/defaul...port/kb/articles/Q277/7/17.ASP&NoWebContent=1

Is there a way to use this with more than 1000 objects? cause I've got a
lot more than 1000users and it just don't work....it stop a 1k...!
 
This will set to 3000 this applies to your object in which you are
manipulating, default is 1000.

Set objCommand = CreateObject("ADODB.Command") 'Create an ADO Command
object in memory, and assign the Command _
objCommand.ActiveConnection = objConnection ' object's
ActiveConnection property to the Connection object

objCommand.Properties("Page Size") = 100
objCommand.Properties("Size Limit") = 3000

objCommand.CommandText = place your command string here


Paul Bergson MCSE, MCT, CNE, CNA, CCA

Patrick said:
How to Change the Display Names of Active Directory Users with Active
Directory Services Interface Script
http://support.microsoft.com/defaul...port/kb/articles/Q277/7/17.ASP&NoWebContent=1

Is there a way to use this with more than 1000 objects? cause I've got a
lot more than 1000users and it just don't work....it stop a 1k...!
 

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

Back
Top