bonjour

j'ai compris comment faire pour configurer un profil itinerant mais pour un seul utilistateur a la fois

j'ai trouver un script qui configure plusieurs profils a la fois

le voila :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
Set objUser = GetObject _
("LDAP://cn=Nom_Utilisateur,ou=Nom_OU,dc=Nom_domaine,dc=com")

strCurrentProfilePath = objUser.Get("profilePath")
intStringLen = Len(strCurrentProfilePath)
intStringRemains = intStringLen - 11
strRemains = Mid(strCurrentProfilePath, 12, intStringRemains)
strNewProfilePath = "\\Serveur\Partage\%Username%" & strRemains
objUser.Put "profilePath", strNewProfilePath
objUser.SetInfo
mais ce script il lui manque une boucle pour quil saplique a tout les profils en plus je ne sais pas lutiliser sur windows 2003 server

si quelqu'un peu maider?

merci