从 PowerShell 运行 SharePoint 计时器作业
目前,我们的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在此处查看
Start-SPAdminJob
cmdlet< /a>根据这篇文章,它相当于 execadmsvcjobs 。
Have a look at the
Start-SPAdminJob
cmdlet hereAccording to this article, it is the equivalent of execadmsvcjobs.
我们最终使用了 Sohel 博客
http:/ 中的解决方案/ranaictiu-technicalblog.blogspot.com/2010/05/sharepoint-2010-deployment-powershell.html
We ended up using this solution from Sohel's Blog
http://ranaictiu-technicalblog.blogspot.com/2010/05/sharepoint-2010-deployment-powershell.html
尝试使用如下内容:
此代码片段为 $url 处的 Web 应用程序运行 Create Variations Hierarchies 作业
Try using something like this:
This snippet runs the Create Variations Hierarchies job for the the web application at $url