我想使用 powershell 脚本在 Web 部件区域中添加 Web 部件

发布于 2024-11-13 08:36:02 字数 586 浏览 1 评论 0原文

我想仅使用 power shell 脚本以编程方式在 Web 部件区域中添加 Web 部件

我使用 power shell 脚本编写出现此异常 异常

代码

$webPart = $webpartmanager.ImportWebPart($xmlReader, $errorMsg) -as [Microsoft.SharePoint.WebPartPages.WebPart]



Argument: '2' should be a System.Management.Automation.PSReference. Use [ref].
+ $webPart = $webpartmanager.ImportWebPart <<<< ($xmlReader, $errorMsg) -as [Microsoft.SharePoint.WebPartPages.WebPart]
    + CategoryInfo          : NotSpecified: (:) [], MethodException
    + FullyQualifiedErrorId : NonRefArgumentToRefParameterMsg

I want to add web part in the web part zone programmatically only using power shell script

I am getting this exception using power shell scripting

Exception code

$webPart = $webpartmanager.ImportWebPart($xmlReader, $errorMsg) -as [Microsoft.SharePoint.WebPartPages.WebPart]



Argument: '2' should be a System.Management.Automation.PSReference. Use [ref].
+ $webPart = $webpartmanager.ImportWebPart <<<< ($xmlReader, $errorMsg) -as [Microsoft.SharePoint.WebPartPages.WebPart]
    + CategoryInfo          : NotSpecified: (:) [], MethodException
    + FullyQualifiedErrorId : NonRefArgumentToRefParameterMsg

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

绾颜 2024-11-20 08:36:02

您是否尝试过错误消息建议的内容(请注意在 $errorMsg 之前添加 [ref])?

$webPart = $webpartmanager.ImportWebPart($xmlReader, [ref]$errorMsg)
               -as [Microsoft.SharePoint.WebPartPages.WebPart]

Have you tried what the error message suggests (note the addition of [ref] before $errorMsg)?

$webPart = $webpartmanager.ImportWebPart($xmlReader, [ref]$errorMsg)
               -as [Microsoft.SharePoint.WebPartPages.WebPart]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文