我刚遇到这种奇怪的行为:
以下行导致powershell停止工作:
Add-PSSnapin Microsoft.Exchange.Management.PowerShell.E2010 -Erroraction Silentlycontinue
虽然以下工作正常:
Add-PSSnapin Microsoft.Exchange.Management.PowerShell.E2010
这是在Eventviewer中找到的问题签名:
P1:powershell.exe
P2:6.3.9600.17090
P3:System.NullReferenceException
P4:System.TypeInitializationException
P5:未知
P6:oft.Exchange.Diagnostics.SystemTraceControl.Update
P7:未知
有没有人知道为什么会这样?系统在Server 2012R2上运行
提前致谢
答案 0 :(得分:2)
我在Server 2012 R2上遇到了这个问题。我能够通过利用-name参数使其工作。
Add-PSSnapin -name "Microsoft.Exchange.Management.PowerShell.E2010"