Wilfriede
Lieutenant
- Registriert
- Juni 2012
- Beiträge
- 931
Hallo zusammen
Powershell ist zwar nicht wirklich programmieren aber ich hoffe ich bin hier doch richtig.
-----------------------------------------------------------------------------------------------------
Import-Module ActiveDirectory
$Attribcsv=Import-csv "C:\Temp\Test_123.csv"
ForEach ($User in Attribcsv)
{
Get-ADUser -Identitiy $User.SamAccountName | set-ADUser -mail $($user.mail)
}
Attribcsv : The term 'Attribcsv' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify
that the path is correct and try again.
At C:\Users\Importieren.ps1:3 char:19
+ FullyQualifiedErrorId : CommandNotFoundException
Jemand ne Idee was ich falsch mache? Ich habe doch alles definiert und die Namen müssten auch passen?!?
Besten Dank & Gruss
Orc
Powershell ist zwar nicht wirklich programmieren aber ich hoffe ich bin hier doch richtig.
-----------------------------------------------------------------------------------------------------
Import-Module ActiveDirectory
$Attribcsv=Import-csv "C:\Temp\Test_123.csv"
ForEach ($User in Attribcsv)
{
Get-ADUser -Identitiy $User.SamAccountName | set-ADUser -mail $($user.mail)
}
- Dies ist mein kleines Skript
Attribcsv : The term 'Attribcsv' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify
that the path is correct and try again.
At C:\Users\Importieren.ps1:3 char:19
- ForEach ($User in Attribcsv)
- ~~~~~~~~~
+ FullyQualifiedErrorId : CommandNotFoundException
- Diese Fehlermeldung wird ausgegeben
- Dies ist die .csv DAtei
Jemand ne Idee was ich falsch mache? Ich habe doch alles definiert und die Namen müssten auch passen?!?
Besten Dank & Gruss
Orc