Question
Message erreur Setinfo()
- ARRIVE
- Auteur du sujet
- Hors Ligne
- Membre senior
Réduire
Plus d'informations
- Messages : 50
- Remerciements reçus 0
il y a 14 ans 1 mois #7961
par ARRIVE
Message erreur Setinfo() a été créé par ARRIVE
Bonsoir à tous
J'ai besoin de faire quelque chose de simple, créer une OU.
[code:1]$objDomain = [ADSI]'LDAP://ou=COMPTES,dc=domaine,dc=priv'
$objOU = $objDomain.Create('organizationalUnit','ADMINNISTRATEURS')
$objOU.put('description','OU de test')
$objOU.SetInfo()[/code:1]
Théoriquement rien ,amis je ne comprends pas pourquoi est-ce que j'ai un message d'erreur :
Si quelqu'un peut m'expliquer car n'étant pas à l'aise avec le code, moi pas comprendre
J'ai besoin de faire quelque chose de simple, créer une OU.
[code:1]$objDomain = [ADSI]'LDAP://ou=COMPTES,dc=domaine,dc=priv'
$objOU = $objDomain.Create('organizationalUnit','ADMINNISTRATEURS')
$objOU.put('description','OU de test')
$objOU.SetInfo()[/code:1]
Théoriquement rien ,amis je ne comprends pas pourquoi est-ce que j'ai un message d'erreur :
Exception lors de l'appel de « SetInfo » avec « 0 » argument(s) : « Violation de nom. (Exception de HRESULT : 0x80072037) »
à : ligne:5 caractère:14
+ $objOU.SetInfo <<<< ()
Si quelqu'un peut m'expliquer car n'étant pas à l'aise avec le code, moi pas comprendre
Connexion ou Créer un compte pour participer à la conversation.
- Richard Lazaro
- Hors Ligne
- Membre platinium
Réduire
Plus d'informations
- Messages : 530
- Remerciements reçus 0
il y a 14 ans 1 mois #7962
par Richard Lazaro
Think-MS : (Get-Life).Days | %{ Learn-More }
\\"Problems cannot be solved by the same level of thinking that created them.\\" - Albert Einstein
Réponse de Richard Lazaro sur le sujet Re:Message erreur Setinfo()
Voici un exemple (c'était pour un cookbook) :
[code:1]
$objDom = [ADSI]\"LDAP://server-ad.msit-france.com/dc=msit-france,dc=com\"
$objOu = $objDom.Create(\"organizationalUnit\",\"ou=Interns\"«»)
$objOu.SetInfo()
[/code:1]
donc à première vu, je dirais que tu as une faute dans ton code, essaye avec cela :
[code:1]
$objDomain = [ADSI]'LDAP://ou=COMPTES,dc=domaine,dc=priv'
$objOU = $objDomain.Create('organizationalUnit','ou=ADMINNISTRATEURS')
$objOU.put('description','OU de test')
$objOU.SetInfo()
[/code:1]
Bien Cordialement,
Richard Lazaro.
[code:1]
$objDom = [ADSI]\"LDAP://server-ad.msit-france.com/dc=msit-france,dc=com\"
$objOu = $objDom.Create(\"organizationalUnit\",\"ou=Interns\"«»)
$objOu.SetInfo()
[/code:1]
donc à première vu, je dirais que tu as une faute dans ton code, essaye avec cela :
[code:1]
$objDomain = [ADSI]'LDAP://ou=COMPTES,dc=domaine,dc=priv'
$objOU = $objDomain.Create('organizationalUnit','ou=ADMINNISTRATEURS')
$objOU.put('description','OU de test')
$objOU.SetInfo()
[/code:1]
Bien Cordialement,
Richard Lazaro.
Think-MS : (Get-Life).Days | %{ Learn-More }
\\"Problems cannot be solved by the same level of thinking that created them.\\" - Albert Einstein
Connexion ou Créer un compte pour participer à la conversation.
- Richard Lazaro
- Hors Ligne
- Membre platinium
Réduire
Plus d'informations
- Messages : 530
- Remerciements reçus 0
il y a 14 ans 1 mois #7963
par Richard Lazaro
Think-MS : (Get-Life).Days | %{ Learn-More }
\\"Problems cannot be solved by the same level of thinking that created them.\\" - Albert Einstein
Réponse de Richard Lazaro sur le sujet Re:Message erreur Setinfo()
Je cherche une explication claire à te fournir ... mais je trouve pas le 'man' de la méthode Create de la classe DirectoryEntry sur le msdn Oo
Think-MS : (Get-Life).Days | %{ Learn-More }
\\"Problems cannot be solved by the same level of thinking that created them.\\" - Albert Einstein
Connexion ou Créer un compte pour participer à la conversation.
- Laurent Dardenne
- Hors Ligne
- Modérateur
Réduire
Plus d'informations
- Messages : 6302
- Remerciements reçus 68
il y a 14 ans 1 mois #7964
par Laurent Dardenne
Tutoriels PowerShell
Réponse de Laurent Dardenne sur le sujet Re:Message erreur Setinfo()
Salut,
Richard Lazaro écrit:
Richard Lazaro écrit:
Peut être ici (Active Directory Service Interfaces (ADSI) is a set of COM interfaces used to access the features of directory services from different network providers. )mais je trouve pas le 'man' de la méthode Create de la classe DirectoryEntry sur le msdn Oo
Tutoriels PowerShell
Connexion ou Créer un compte pour participer à la conversation.
Temps de génération de la page : 0.110 secondes
- Vous êtes ici :
- Accueil
- forum
- PowerShell
- Entraide pour les débutants
- Message erreur Setinfo()