Documents opening in Offline Mode
Problem An excel document consistently opens in ‘offline’ mode. Cause If you are using your Office Document Cache as temporary storage for SharePoint files, the Office Document Cache may be corrupted....
View ArticleSharePoint 2010 Service Pack 2 breaking scripts using SPServices / jquery
Problem: We have some scripts that use jQuery Library for SharePoint Web Services. After installing Service Pack 2 for SharePoint 2010, several of the scripts stopped working. Cause: We found that the...
View ArticleSharePoint 2010 Service Pack 2 no longer allows unresolvable e-mail addresses
Problem: Before Service Pack 2, you could specify an e-mail address in the cc’ field of a workflow form. After installing Service Pack 2, this is no longer possible and you will get the following error...
View ArticleAutomatically download versions of a file in SharePoint to your computer
Requirement Download all versions of a file in SharePoint to a local folder on your computer. Solution Use the PowerShell script below to do this. You can run this script as a normal user as long as...
View ArticleGet list of Site Collection Admins (SCA) using PowerShell
Requirement Generate a list of SCAs across all your SharePoint site collections. Solution function Get-SCA { param($site) $link = $site+"/_layouts/mngsiteadmin.aspx" $result = Invoke-WebRequest $link...
View Article