powershell 这会手动运行SharePoint运行状况分析作业。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 这会手动运行SharePoint运行状况分析作业。相关的知识,希望对你有一定的参考价值。
Add-PSSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue
#Display name of the Timer Job to Run on-demand
$TimerJobName = "Health Analysis Job"
#Get the Timer Job
$TimerJobs = Get-SPTimerJob | where { $_.DisplayName -match $TimerJobName}
foreach($TimerJob in $TimerJobs)
{
Write-Host "Running:" $TimerJob.DisplayName
$TimerJob.RunNow()
#$TimerJob.Status
}
以上是关于powershell 这会手动运行SharePoint运行状况分析作业。的主要内容,如果未能解决你的问题,请参考以下文章
如何在前台运行 Windows 任务?
powershell 这会将sharepoint powershell命令添加到ISE中的默认配置文件中
如何在 Powershell 中手动增加 $err 计数?
如何使用PowerShell remoting运行远程命令
powershell 这会将内容数据库安装到SharePoint Web应用程序
powershell 这会将列表从一个SharePoint站点复制到另一个SharePoint站点