User Profile attributes

G

Guest

Even though using the latest AD Users & Computers snap-in (Adminpak for 2003 server), on an XP client to a Windows 2000 DC, I am unable to to change the profile attributes of multiple selected users. I believe that this is supposed to be possible. can anyone offer advice on how to do this by either scripting or by using the admin snap-in? Many Thanks.
 
A

Ace Fekay [MVP]

In
Dominic Williams said:
Even though using the latest AD Users & Computers snap-in (Adminpak
for 2003 server), on an XP client to a Windows 2000 DC, I am unable
to to change the profile attributes of multiple selected users. I
believe that this is supposed to be possible. can anyone offer
advice on how to do this by either scripting or by using the admin
snap-in? Many Thanks.


You would have to script it.

Try the scripting center at
www.technet.com
or try
http://cwashington.netreach.net

There are other scripting sites out there as well.

--
Regards,
Ace

Please direct all replies to the newsgroup so all can benefit.
This posting is provided "AS-IS" with no warranties and confers no
rights.

Ace Fekay, MCSE 2000, MCSE+I, MCSA, MCT, MVP
Microsoft Windows MVP - Active Directory
 
J

Johan Arwidmark

You can use this script...

Set ou = Getobject("LDAP://ou=Sales,dc=lcab,dc=net")

For each obj in ou
obj.profilepath = "\\server\profile\" & obj.cn
obj.setinfo
Next


or with a check for existing profile...

Set ou = Getobject("LDAP://ou=Sales,dc=lcab,dc=net")

For each obj in ou
if obj.profilepath = "\\old-server\profile\" & obj.cn Then
obj.profilepath = "\\new-server\profile\" & obj.cn
obj.setinfo
end if
Next


regards
Johan Arwidmark

Windows User Group - Nordic
http://www.wug-nordic.net
 

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

Top