其他分享
首页 > 其他分享> > Office 365 Troubleshooting:Import-PSSession 出错

Office 365 Troubleshooting:Import-PSSession 出错

作者:互联网

Blog 地址:https://blog.51cto.com/13969817

很多情况,Office 365 Admin 需要使用PowerShell执行一些类似Mailbox相关的管理设置,当执行导入PSSession命令时,会弹出如下错误提示:

Office 365 Troubleshooting:Import-PSSession 出错

这个问题产生的原因是:

默认情况下执行策略是“Restricted”,你没有正确的配置Powershell 执行策略。

解决方案:

可以通过下面命令解决问题:Set-ExecutionPolicy RemoteSigned

点击链接了解更多关于 Set-ExecutionPolicy 设置介绍

Office 365 Troubleshooting:Import-PSSession 出错

回车后,在弹出的Execution Policy Change对话框中,点击“yes to all”

Office 365 Troubleshooting:Import-PSSession 出错

说明:

再次输入 Import-PSSession $Session 命令,导入成功,如下图所示:

Office 365 Troubleshooting:Import-PSSession 出错

小编遇到的问题以及解决方案,整理分享给有需要的人,希望能帮助大家。

标签:脚本,Office,Windows,默认,PSSession,Troubleshooting,执行,运行
来源: https://blog.51cto.com/13969817/2446190