Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

Script

Name

Description

Last Modified Date

Download

Misc

Building over time, handy commands.

 

None

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()