我尝试使用PowerShell从Exchange Online帐户导出所有没有照片的用户列表。我无法让它工作,并尝试了各种方法。
当没有配置文件存在时,Get-UserPhoto会返回此异常。
Microsoft.Exchange.Data.Storage.UserPhotoNotFoundException: There is no photo stored here.
首先,我尝试对命令使用 Errorvariable ,但收到了:
A variable that cannot be referenced in restricted language mode or a Data section is being referenced. Variables that can be referenced include the following: $PSCulture, $PSUICulture, $true, $false, and $null.
+ CategoryInfo : InvalidOperation: (:) [], RuntimeException
+ FullyQualifiedErrorId : VariableReferenceNotSupportedInDataSection
+ PSComputerName : outlook.office365.com
接下来我尝试了尝试,抓住,但是非终止错误从不会调用 catch ,尽管在线有关于首先设置 $ ErrorActionPreference 的各种方法所有。
有什么想法吗?这是脚本:
$UserCredential = Get-Credential
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection
Import-PSSession $Session
$timestamp = $timestamp = get-date -Format "dd/M/yy-hh-mm"
$outfile = "c:\temp\" + $timestamp + "UserswithoutPhotos.txt"
$resultslist=@()
$userlist = get-user -ResultSize unlimited -RecipientTypeDetails usermailbox | where {$_.accountdisabled -ne $True}
Foreach($user in $userlist)
{
try
{
$user | get-userphoto -erroraction stop
}
catch
{
Write-Host "ERROR: $_"
$email= $user.userprincipalname
$name = $user.DisplayName
$office = $user.office
write-host "User photo not found...adding to list : $name , $email, $office"
$resultslist += $user
}
}
$resultslist | add-content $outfile
$resultslist
答案 0 :(得分:3)
PowerShell的错误处理非常棘手,尤其是使用通过本地生成的代理脚本模块进行隐式远程处理的cmdlet。
以下习惯用法提供了一种基于暂时将$ErrorActionPreference
设置为Stop
全局的解决方法(当然,您可以移动代码以恢复{{{}以外的先前值1}} loop),确保即使是来自不同模块的函数也能看到它:
foreach
至于为什么这是必要的:
函数 不查看调用者的首选项变量 - 与 cmdlet 不同,
< / LI>在模块中运行的唯一外部范围是全局范围。
有关此基本问题的详细信息,请参阅https://www.lfd.uci.edu/~gohlke/pythonlibs/。
答案 1 :(得分:1)
您可以抛出自己的错误:
try {
$error.Clear()
$user | Get-UserPhoto
if ($error[0].CategoryInfo.Reason -eq "UserPhotoNotFoundException") {throw "UserPhotoNotFoundException" }
} catch {
#code
}