Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. LoganDecker84

    ldap_matching_rule_in_chain question/issue

    Hi All I need some help on a vbscript that uses ldap_matching_rule_in_chain to add all users whose top level manager into a Distribution List. I have this portion working perfectly and it returns exactly what i needed but im stuck as to how to check if they are in a group and if not add them...
  2. LoganDecker84

    Modifying AD from a text file

    It appears your text file has all the information seperated by a comma. You should simply import that info into an excel spreadsheet, label the columns accordingly, and then use the script mentioned above to make your changes.
  3. LoganDecker84

    One User getting an Error : LDAP Object creation

    What is it you are trying to do with the logon script?.IF you can try and post the whole script. I would also find out from him, when he is entering his credentials is he putting DOMAIN\username or just his username. That could be causing some errors. I had that happen to me..
  4. LoganDecker84

    Input multiple users ASP page

    As usual I need your assistance on this one. If this was a regular Vbscript, I could import the users from a text file, and do it that way with no problem(thanks to you), but with this ASP page, I have no clue how to.
  5. LoganDecker84

    Compare ManagedBY for Dist List to list of usernames

    Got it...used your dictionary info to grab the user information, and then did a For each....next --------------------------------------- Do Until objRecordSet.EOF StrDN = objRecordSet.Fields("distinguishedName") strManager = objRecordSet.Fields("managedby").Value groupCN =...
  6. LoganDecker84

    Compare ManagedBY for Dist List to list of usernames

    The user names are in distinguished name format, even though they appear as the display name, when you retrieve it, it prints out as the dn.
  7. LoganDecker84

    Compare ManagedBY for Dist List to list of usernames

    Yes please..but again without having to go thru the Dist Lists each time. I figured a Dictionary would be the best, but I am kinda stuck
  8. LoganDecker84

    Compare ManagedBY for Dist List to list of usernames

    Thats the problem and where I need your assistance with. I cannot figure out the placement or the proper coding for it.
  9. LoganDecker84

    Compare ManagedBY for Dist List to list of usernames

    Hello The bottom script is used ot retrieve the ManagedBy attribute of a Distribution List as part of our termination process. Since we have thousands of DL's, when we cannot afford to have the script loop thru each DL each time a username is called.(I realize I may have cause this by the...
  10. LoganDecker84

    Counting returned data

    Excellent...it worked thank you VERY much. If you are up for another challenge here is my next question. http://www.tek-tips.com/viewthread.cfm?qid=1485700&page=1
  11. LoganDecker84

    Input multiple users ASP page

    Hello again. I have an .aspx home page that allows you to enter multiple users(one on each line) and when you click submit it should query A/D and return the requested attribs. Problem is, it only works when I use a single text box and enter one user, but when I made it into a multiple text box...
  12. LoganDecker84

    Counting returned data

    Hello All I use the below query to retrieve a username and extensionattribute7 from Active Directory. attrib7 contains version numbers of backup software installed on end user machines. i.e 6.2, 8.2.1 etc... I would like to take the info from that attrib and find out how manu total versions of...
  13. LoganDecker84

    Modify Distribution Lists

    yes, rather than put my company's info, i put MS's example. Ya never know who is lurking on these forums i dont need to get crap for posting our Domain info.
  14. LoganDecker84

    Modify Distribution Lists

    I have a number of DL's that I need to update the managed by field. All the DL's are located in the same OU. The script I am using is the following Set objGroup = GetObject _ ("LDAP://cn=Scientists,ou=R&D,dc=NA,dc=fabrikam,dc=com") objGroup.Put "managedBy"...

Part and Inventory Search

Back
Top