Run every Timer Job


/ Published in: Windows PowerShell
Save to your folder(s)



Copy this code and paste it in your HTML
  1. $timers=Get-SPTimerJob|? {$_.isDisabled -eq $false}
  2. foreach ($timer in $timers) {$timer.RunNow()}

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.