Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagepowershell
#Handy SharePoint Scripts
#Get FeatureID matching name
Get-SPFeature | where {$_.DisplayName -like "*yourtext*"} | fl displayname, id


#Run the workflow timer job
$job = get-sptimerjob job-workflow; $job.RunNow()