here are some examples of the schema structure (I have several hundred i need to go thru:
OU=UsersandComputers,OU=Ma
OU=UsersandComputers,OU=En
OU=UsersandComputers,OU=Sa
Main Topics
Browse All TopicsI am using this VB script i got from MS KB:
''''''''''''''''''''''''''
On Error Resume Next
Set objRootDSE = GetObject("LDAP://rootDSE"
Set objUsers = GetObject("LDAP://OU=Users
' set msExchOmaAdminWirelessEnab
For Each objUser In objUsers
strname = objUser.Get("name")
WScript.Echo "name: " & strname
strWirelessEnabled = objUser.Get("msExchOmaAdmi
'If strWirelessEnabled = "" Then
objUser.Put "msExchOmaAdminWirelessEna
objUser.setinfo
'End If
strWirelessEnabled = objUser.Get("msExchOmaAdmi
Next
WScript.Echo "Mobile Services disabled for all users"
''''''''''''''''''''''''''
And works great if i am going directly to the OU
The problem is I have several hundred OUs i need to modify
I tried modifying to start at a higher level container:
Set objUsers = GetObject("LDAP://OU=Deale
hoping this would propagate down to all of the OUs several containers deep, but it did not.
How can I get the objUser.Put "msExchOmaAdminWirelessEna
And no, the naming conventions isn't the same across all the locations
However, all users are in OUs called 'Users and Computers'
I'm hoping there is a modification to the script that allows the script to go several containers deep to get all users
Thanks,
Gabe Ybarra
gabriel.ybarra@gmail.com
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
here are some examples of the schema structure (I have several hundred i need to go thru:
OU=UsersandComputers,OU=Ma
OU=UsersandComputers,OU=En
OU=UsersandComputers,OU=Sa
Business Accounts
Answer for Membership
by: MesthaPosted on 2009-11-02 at 15:16:07ID: 25724782
If you want to turn it off on bulk, then I would suggest that you look at admodify.net.
Simon.