Script to remove Profile Path In AD

Discussion in 'Scripting & Programming' started by Nelix, Dec 4, 2003.

  1. Nelix
    Honorary Member

    Nelix Gigabyte Poster

    1,416
    3
    82
    Anyone know of a script that will do this???????

    orry it's short and sweet, really busy at work
     
    Certifications: A+, 70-210, 70-290, 70-291, 74-409, 70-410, 70-411, 70-337, 70-347
    WIP: 70-346
  2. Phil
    Honorary Member

    Phil Gigabyte Poster

    1,680
    7
    87
    Derek, this is just the same answer as the one I gave for the changing AD thread only chopped down a bit

    [code:1:ebd10e1af3]
    'This line gets the user
    Set colAccounts = GetObject("LDAP://cn=USER,ou=YEAR1,dc=DOM,dc=CO,dc=UK")
    'These lines set the path to nothing and save
    objUser.Put "profilePath", ""
    objUser.SetInfo
    [/code:1:ebd10e1af3]

    Just change the LDAP bit to the fqdn of your user.
     
    Certifications: MCSE:M & S MCSA:M CCNA CNA
    WIP: 2003 Upgrade, CCNA Upgrade
  3. Nelix
    Honorary Member

    Nelix Gigabyte Poster

    1,416
    3
    82
    Can this script be changed so that it will retrieve a list of ALL the users in AD and place it in a text file then use the text file to carryout the profile path change?

    If so, how, I have NEVER written a script in my life.

    Also, what is FQDN? and would the line i need to change be

    Set colAccounts = GetObject("LDAP://cn=demerson,ou=technology,dc=Labour,dc=org,dc=CO,dc=UK") if i was just running the script for me? and would i leave the ( ) in?
     
    Certifications: A+, 70-210, 70-290, 70-291, 74-409, 70-410, 70-411, 70-337, 70-347
    WIP: 70-346
  4. flex22

    flex22 Gigabyte Poster

    1,679
    0
    69
    Fully Qualified Domain Name

    That's all I can help you with, scripting isn't my forte at the mo.
     
  5. Phil
    Honorary Member

    Phil Gigabyte Poster

    1,680
    7
    87
    Hi Derek,

    First of all let me apologise for the first script, it wouldn't work if you tried it. I thought you would be able to set the attribute to null in the same way as you normally would with a variable "" but it doesn't let you. So if you wanted to only modify a single user you should use the following

    [code:1:19ccf45a51]
    'This line gets the user
    Set colAccounts = GetObject("LDAP://cn=USER,ou=YEAR1,dc=DOM,dc=CO,dc=UK")
    'These lines set the path to nothing and save
    objUser.Putex 1, "profilePath", 0
    objUser.SetInfo
    [/code:1:19ccf45a51]

    Now, if you want to modify every user in an AD domain use the following. Again modifying the LDAP bit to reflect your domain. Beware though, this will swat every single user in your domain, if you don't want to modify some of the users don't run this code.

    [code:1:19ccf45a51]
    Set objConnection = CreateObject("ADODB.Connection")
    objConnection.Open "Provider=ADsDSOObject;"

    Set objCommand = CreateObject("ADODB.Command")
    objCommand.ActiveConnection = objConnection

    objCommand.CommandText = _
    "<LDAP://dc=tip,dc=co,dc=uk>;" &_
    "(&(objectCategory=person)(objectClass=user));" &_
    "ADsPath;subtree"

    Set objRecordSet = objCommand.Execute

    While Not objRecordset.EOF
    strADsPath = objRecordset.Fields("ADsPath")
    Set objUser = GetObject(strADsPath)
    objUser.PutEx 1, "profilePath",0
    objUser.SetInfo
    objRecordset.MoveNext
    Wend

    Wscript.Echo objRecordSet.RecordCount & " user accounts modified."

    objConnection.Close
    [/code:1:19ccf45a51]

    You could narrow the field of the search by adding an ou into the LDAP path. So the script would search the ou you specify and all of it's sub-ou's.

    I would strongly recommend anybody who uses this script to test it in a lab environment first just to see how it behaves and make sure it does what they require (sermon over :) )

    HTH
     
    Certifications: MCSE:M & S MCSA:M CCNA CNA
    WIP: 2003 Upgrade, CCNA Upgrade
  6. Nelix
    Honorary Member

    Nelix Gigabyte Poster

    1,416
    3
    82
    That looks great phil, I will run it on my home Lab before running it on the Government network.

    thanks alot

    Your the master of the code
     
    Certifications: A+, 70-210, 70-290, 70-291, 74-409, 70-410, 70-411, 70-337, 70-347
    WIP: 70-346
  7. Nelix
    Honorary Member

    Nelix Gigabyte Poster

    1,416
    3
    82
    I have taken a look at the above script and have a few questions.

    Will I have to run this script separately for each OU, is there a way for it just to work it's way through all the OU's until it reaches the end. if it will help I can email you a diagram of the AD tree.
     
    Certifications: A+, 70-210, 70-290, 70-291, 74-409, 70-410, 70-411, 70-337, 70-347
    WIP: 70-346
  8. Phil
    Honorary Member

    Phil Gigabyte Poster

    1,680
    7
    87
    The script I've posted will do the entire domain including ou's and sub ou's. If you want to just do a single ou tree add the ou to the LDAP bit.
     
    Certifications: MCSE:M & S MCSA:M CCNA CNA
    WIP: 2003 Upgrade, CCNA Upgrade
  9. Nelix
    Honorary Member

    Nelix Gigabyte Poster

    1,416
    3
    82
    Superb Phil, will run it on a test lab sometime over the weekend.

    Will let you know how it goes.
     
    Certifications: A+, 70-210, 70-290, 70-291, 74-409, 70-410, 70-411, 70-337, 70-347
    WIP: 70-346
  10. Nelix
    Honorary Member

    Nelix Gigabyte Poster

    1,416
    3
    82
    Got another wuestion for you, does it matter how many Sub OU's there are. We have 3 main OU's, some of which have a sub OU others have multiple OU's, will this make a difference?
     
    Certifications: A+, 70-210, 70-290, 70-291, 74-409, 70-410, 70-411, 70-337, 70-347
    WIP: 70-346
  11. Phil
    Honorary Member

    Phil Gigabyte Poster

    1,680
    7
    87
    It shouldn't do, it should do the lot. I checked it on vmware last night with 1 sub ou, it would be easy to check though.
     
    Certifications: MCSE:M & S MCSA:M CCNA CNA
    WIP: 2003 Upgrade, CCNA Upgrade

Share This Page

Loading...
  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.