从 PowerShell 运行 SharePoint 计时器作业

发布于 2024-09-18 04:47:53 字数 220 浏览 6 评论 0原文

目前,我们的 SharePoint 安装脚本从使用 stsadm 转向使用 PowerShell。

我们还没有找到与此等效的方法:

stsadm -o -execadmsvcjobs

我们尝试过暂停,但暂停需要的时间长短各不相同。

PowerShell 中是否有等效命令,或者我们可以从 PowerShell 运行此命令吗?

We are currently moving from using stsadm to using PowerShell for our SharePoint install scripts.

We have not been able to find an equivilent to this:

stsadm -o -execadmsvcjobs

We have tried putting in a pause, but it varies how long the pause needs to be.

Is there an equivilent command in PowerShell, or could we run this command from PowerShell?

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

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

发布评论

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

评论(3

罗罗贝儿 2024-09-25 04:47:53

此处查看 Start-SPAdminJob cmdlet< /a>

根据这篇文章,它相当于 execadmsvcjobs 。

Have a look at the Start-SPAdminJob cmdlet here

According to this article, it is the equivalent of execadmsvcjobs.

楠木可依 2024-09-25 04:47:53

尝试使用如下内容:

$wa = Get-SPWebApplication $url

Get-SPTimerJob | ?{$_.Name -match "VariationsCreateHierarchies"} | ?{$_.Parent -eq $wa} | Start-SPTimerJob 

此代码片段为 $url 处的 Web 应用程序运行 Create Variations Hierarchies 作业

Try using something like this:

$wa = Get-SPWebApplication $url

Get-SPTimerJob | ?{$_.Name -match "VariationsCreateHierarchies"} | ?{$_.Parent -eq $wa} | Start-SPTimerJob 

This snippet runs the Create Variations Hierarchies job for the the web application at $url

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文