批量导入到AD powershell

批量导入到AD powershell

我正在尝试使用 powershell 将员工列表导入 AD。该脚本需要更新现有的 AD 对象。

我遇到的问题是,一些用户有手机号码、一些内部号码和一些分机号码,当我以最基本的形式运行 Set-ADuser 命令时,只要值为空,它似乎就会失败。

我不擅长编写脚本,谁能向我解释为什么下面的脚本不起作用?如果可以,谁能建议如何让它起作用?谢谢

Import-module ActiveDirectory

$CSVPath = "c:\scripts\ictdepartment2.csv" 
$csvData = Import-CSV $CSVPath -delimiter "," -Header ("SamaccountName","identity","Title","Company","Department","Description","Office","OfficePhone","IPPhone","MobilePhone") 


##

foreach ($line in $csvData) 
{
$accountTable = @{ 
'SamaccountName'= $line.SamaccountName 
'identity'= $line.identity
'title'= $line.title 
'company'= $line.company 
'department'= $line.department 
'description'= $line.description 
'office'= $line.office
'officephone'= $line.officephone 
'IPPhone'= $line.ipPhone 
'mobilephone'= $line.mobilephone 
}
}

##

ForEach($line in $csvData) 
{
$SamaccountName = $line.SamaccountName
$identity = $line.identity
$title = $line.title 
$company = $line.company 
$department = $line.department 
$description = $line.description 
$office = $line.office
$officephone = $line.officephone
$IPPhone = $line.ipPhone 
$mobilephone = $line.mobilephone 
}

##

ForEach($line in $csvData) 
{
if ($officephone -ne $null)
{Set-ADUser -Identity $SamaccountName -OfficePhone $officephone}
if ($mobilephone -ne $null)
{Set-ADUser -Identity $SamaccountName -MobilePhone $mobilephone}
if ($ipphone -ne $null)
{Set-ADUser -Identity $SamaccountName -replace @{ipPhone=$ipphone}}

Set-ADUser -Identity $SamaccountName -Company $Company -Department $Department -Description $Description -Office $office -Title $title
}

如果我使用以下命令,它会起作用,但是当我添加 if $null 语句时它再次失败:(

ForEach($line in $csvData) 
{ 
Get-ADUser -Filter "SamAccountName -eq '$($line.samaccountname)'" |
Set-ADUser -Replace @{ipphone=$ipphone}
}

ForEach($line in $csvData) 
{ 
Get-ADUser -Filter "SamAccountName -eq '$($line.samaccountname)'" |
Set-ADUser -Company $Company -Department $Department -Description $Description -MobilePhone $mobilephone -Office $office -OfficePhone $officephone -Title $title
}

答案1

$null和空字符串 ("") 是 powershell 的两种不同数据类型。$null将 的任何实例替换为"",您就应该没问题了。几乎所有 MS 提供的 cmdlet 都设置为[ValidateNotNull]

我想稍微解释一下什么$Null是 Powershell。Powershell 是一个 OOP(面向对象编程)shell,可直接挂接到 .Net。 $Null是一个占位符,也是一个本身不代表任何内容的对象。$Null现在不用担心完全理解,很多人(甚至一些程序员)都无法理解$Null到极致。

那么为什么这现在很重要?让我链接到本参考但我会将相关信息复制在这里...

...您不能使用 $null 来表示“没有参数值”。参数值 $null 将覆盖默认参数值。

在您的情况下,您试图将一个变量的内容等同于对象$Null,它永远不会匹配,因为只有$Null-eq $Null

空字符串 ("") 是String没有值的对象。这就是为什么您要将其与比较运算符 (-eq、-lt、-ge) 一起使用来评估其他字符串。

相关内容