When creating event receivers or workflows it might be interesting to look at the differences between the following SPListItem methods. The differences might be subtle but it can make a huge difference when you have extra event receivers or workflows…
Database is in compatibility range and upgrade is recommended
Issue: Database is in compatibility range and upgrade is recommended Solution: Please find the below solution to upgrade the SharePoint DB. In SharePoint Central Admin click BACKUP AND RESTORE, then PERFORM A Full BACKUP. Start the SHAREPOINT 2013 MANAGEMENT SHELL…
Sharepoint Installation Required and Upgrade Blocked ? what does it mean
I am getting more Queries from SharePoint community about the below, so explaining in this article. Definition: when we Install the CU in the farm, we see the Installation required and upgrade blocked in the status of servers under the…
SharePoint powershell script to find unique permissions in sharepoint
#This script loops through all the sites in a site collection and then writes out any that have unique permissions. [System.Reflection.Assembly]::Load(“Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c”) | out-null $siteurl = “Enter URL Here” $site=new-object Microsoft.SharePoint.SPSite($siteurl) foreach($web in $site.AllWebs) { if ($web.HasUniqueRoleAssignments) {…
SharePoint And JQuery handy scripts and tools
Be found on those create topics Jquery for everyone Hope you enjoy them Entries in this series: JQuery for Everyone: Accordion Left Nav JQuery for Everyone: Print (Any) Web Part JQuery for Everyone: HTML Calculated Column JQuery for Everyone: Dressing-up…
Sharepoint powershell loop all site collection, sites, sub sites
[System.Reflection.Assembly]::LoadWithPartialName(“Microsoft.SharePoint”) > $null $farm = [Microsoft.SharePoint.Administration.SPFarm]::Local $websvcs = $farm.Services | where -FilterScript {$_.GetType() -eq [Microsoft.SharePoint.Administration.SPWebService]} $webapps = @() foreach ($websvc in $websvcs) { write-host “###############Web Applications################” foreach ($webapp in $websvc.WebApplications) { write-host “Webapp Name :”$webapp.Name “Webapp URL :”$webapp.URL…
Re-provision user profile sync without losing data.
User profile sync serves as a staging area for data, and the data in profile store and social databases is the data consumed by the user profile service. So if the right steps are followed, you should be able to…
Stopped-extension-dll-exceptions in User Profile Sync
Symptons: You get stopped-extension-dll-exceptions in MIIS client while running full or incremental user profile sync. Fix: This problem arises from user profiles that have URL in PictureURL field, but the picture is not accessible. You can fix this issue by…
Clear the SharePoint Timer Cache using Powershell
Write-Host -foregroundcolor White “” Write-Host -foregroundcolor White “Clear SharePoint Timer Cache“ #************************************************************************************** # References #************************************************************************************** [void][reflection.assembly]::LoadWithPartialName(“Microsoft.SharePoint“) [void][reflection.assembly]::LoadWithPartialName(“Microsoft.SharePoint.Administration“) [void][reflection.assembly]::LoadWithPartialName(“System“) [void][reflection.assembly]::LoadWithPartialName(“System.Collections“) #************************************************************************************** #************************************************************************************** # Constants #************************************************************************************** Set-Variable timerServiceName -option Constant -value “SharePoint 2010 Timer“ Set-Variable timerServiceInstanceName -option Constant -value “Microsoft SharePoint Foundation…
Clear configuration cache in SharePoint
There were many common issues that could occur in WSS v3 and MOSS that would require you to clear the configuration cache on your servers. While less common, these issues can still turn up occasionally on SharePoint Server 2010 (And…