Uncaught TypeError: SP.ClientContext is not a constructor by Administrator Last updated March 2, 2018 Comments Usually this will happen when the SP.ClientContext Js file was not loaded before it is being used. in other words, a method has been called before the whole sp.js finished…Read More
PowerShell scripts for workflows by Administrator Last updated February 15, 2018 Comments links to good PowerShell scripts for workflows SP2007 PowerShell Script To Find Instances Of Running SharePoint Workflow $assoc = $spList.WorkflowAssociations | where {$_.BaseId -eq $workflowBase.Id.ToString() ` -and $_.RunningInstances -gt 0} if($assoc…Read More