首页 文章

在后台作业中使用New-MailContact,Set-MailContact和Set-Contact

提问于
浏览
0

这是更新的,仍然得到相同的错误 .

$UserCredential = Get-Credential
$contacts = Import-Csv "C:\temp\testgal.csv"
    Start-Job -Name Loop -ScriptBlock {
        param([pscustomobject[]]$contacts, [System.Management.Automation.PSCredential[]]$UserCredential)
        $session2 = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection
        Import-PSSession $session2
        Connect-MsolService -cred $UserCredential
        foreach ($c in $contacts){
        ........
        }
    } -ArgumentList (,$contacts, $UserCredential)
Wait-Job -State Running | Receive-Job
Get-Job -State Completed | Remove-Job

我正在尝试使用脚本在365中创建大量的联系人,并希望运行并行作业以加快速度,我在作业中构建了一个循环并测试它在循环内使用以下内容来确保它可以从CSV中提取正确的变量 .

$name = $c1.displayname
New-Item -Path "C:\Temp\Output" -Name "$name"  -ItemType "file"

现在,当我尝试使用 Headers 中的命令运行循环时,如下所示

$contacts = Import-Csv "C:\temp\gal\testgal.csv"
       Start-Job -Name Loop -ScriptBlock {
           param([pscustomobject[]]$contacts)
            foreach ($c in $contacts){
                $name = $c.displayName
                $rawProxy = $c.proxyAddresses
                $proxysplit = $rawproxy -split '(?<!\\);'
                $proxyquoted = $proxysplit.replace('x500','"x500').replace('x400','"x400').replace('X500','"X500').replace('X400','"X400')
                $proxy = $proxyquoted
                New-MailContact -ExternalEmailAddress $c.Mail -Name "`"$name`"" -Alias $c.mailNickname -DisplayName $name -FirstName $c.givenName -Initials $c.initials -LastName $c.sn -AsJob
                Set-MailContact -Identity $c.mailNickname -CustomAttribute1 "CreatedWithScript" -CustomAttribute3 $c.extensionAttribute3 -EmailAddresses $proxy -AsJob
                Set-Contact -Identity $c.mailNickname -City $c.l -Company $c.company -Department $c.department -Office $c.physicalDeliveryOfficeName `
                    -Phone $c.telephoneNumber -PostalCode $c.postalCode -Title $c.title -AsJob
           }
       } -ArgumentList (,$contacts)
       Wait-Job -State Completed | Receive-Job
       Get-Job -State Completed | Remove-Job

它没有为每个循环说出以下内容:

术语“New-MailContact”不被识别为cmdlet,函数,脚本文件或可操作程序的名称 . 检查名称的拼写,或者如果包含路径,请验证路径是否正确,然后重试 . CategoryInfo:ObjectNotFound:(New-MailContact:String)[],CommandNotFoundException FullyQualifiedErrorId:CommandNotFoundException PSComputerName:localhost术语“Set-MailContact”未被识别为cmdlet,函数,脚本文件或可操作程序的名称 . 检查名称的拼写,或者如果包含路径,请验证路径是否正确,然后重试 . CategoryInfo:ObjectNotFound:(Set-MailContact:String)[],CommandNotFoundException FullyQualifiedErrorId:CommandNotFoundException PSComputerName:localhost术语“Set-Contact”未被识别为cmdlet,函数,脚本文件或可运行程序的名称 . 检查名称的拼写,或者如果包含路径,请验证路径是否正确,然后重试 . CategoryInfo:ObjectNotFound:(Set-Contact:String)[],CommandNotFoundException FullyQualifiedErrorId:CommandNotFoundException PSComputerName:localhost

在后台作业中运行这些命令有诀窍吗?

1 回答

  • 1

    您需要导入正确的powershell模块,在本例中为Office365:

    Import-Module MSOnline
    

    您还需要进行身份验证,以便将用户名和密码传递给您的工作并创建凭据对象:

    $contacts = Import-Csv "C:\temp\gal\testgal.csv"
           Start-Job -Name Loop -ScriptBlock {
               param([pscustomobject[]]$contacts, [string]$username, [string]$password)
                Import-Module MSOnline
                $secpasswd = ConvertTo-SecureString $password -AsPlainText -Force
                $creds = New-Object System.Management.Automation.PSCredential ($username, $secpasswd)
                $O365Session = New-PSSession –ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell -Credential $creds -Authentication Basic -AllowRedirection
                Connect-MsolService –Credential $creds
                foreach ($c in $contacts){
                  ...
               }
           } -ArgumentList (,$contacts, $username, $password)
           Wait-Job -State Completed | Receive-Job
           Get-Job -State Completed | Remove-Job
    

    NB . 这是未经测试的,但应该让你走上正确的轨道 .

相关问题