...
Code Block | ||
---|---|---|
| ||
#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() |
...
Code Block | ||
---|---|---|
| ||
#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() |