Remove duplicate entries in SharePoint calendar with overlays
Solution:-You will need to modify the existing view of the calendar with filter as shown below (set event category as empty)in order to not get duplicates on SharePoint Calendar.
Solution:-You will need to modify the existing view of the calendar with filter as shown below (set event category as empty)in order to not get duplicates on SharePoint Calendar.
Enabling the Developer Site Collection Feature in SharePoint On-Premisis Open Powershell command prompt // load sharepoint dll Add-PSSnapin Microsoft.SharePoint.PowerShell //activate feature Enable-SPFeature e374875e-06b6-11e0-b0fa-57f5dfd72085 –url siteUrl Enabling the Developer Site Collection Feature in SharePoint Online $programFiles = [environment]::getfolderpath(“programfiles”) add-type -Path $programFiles’\SharePoint Online Management Shell\’ + ` ‘Microsoft.Online.SharePoint.PowerShell\Microsoft.SharePoint.Client.dll’ Write-Host ` ‘To enable SharePoint app… Read More
PowerShell Script: Register-SPWorkflowService –SPSite “http://yourSharePointSiteCollection” –WorkflowHostUri “https://yourWorkFlowServer:12290” –AllowOAuthHttp -force Troubleshooting: Register-SPWorkflowService : The underlying connection was closed: An unexpected error occurred on a receive. + CategoryInfo : InvalidData: (Microsoft.Share…WorkflowService: RegisterSPWorkflowService) [Register-SPWorkflowService], InvalidOperationE xception + FullyQualifiedErrorId : Microsoft.SharePoint.WorkflowServices.PowerShell .RegisterSPWorkflowServicePS C:\Users\Asish.Punnose> Register-SPWorkflowService… Read More
Download SharePoint 2016 Release To Manufacturing: http://aka.ms/GetSharePoint2016 Information Link: https://blogs.office.com/2016/03/14/sharepoint-2016-rtm-and-the-future-of-sharepoint-event/
To stop a service: $ServiceName = “Microsoft SharePoint Foundation Sandboxed Code Service” Get-SPServiceInstance -server $env:COMPUTERNAME | where-object {$_.TypeName -eq $ServiceName} | Stop-SPServiceInstance -confirm:$false > $null To start a service: $ServiceName = “Microsoft SharePoint Foundation Sandboxed Code Service” Get-SPServiceInstance -server $env:COMPUTERNAME | where-object {$_.TypeName -eq… Read More
While installing SharePoint Server 2016 you get the “Microsoft SharePoint Server 2016 encountered an error during setup”, and when the error page opens you see its error 1603. Solution :- Run the below PowerShell with administrator privileges if(!(Test-Path HKLM:SOFTWAREPoliciesMicrosoftWindowsInstaller)){ New-Item -Path HKLM:SOFTWAREPoliciesMicrosoftWindowsInstaller | Out-Null… Read More
Microsoft deprecated Public Websites from SharePoint Online and Office 365 in January 2015. Starting January 2015, Microsoft is making changes to the SharePoint Online Public Website feature. Customers who currently use this feature will continue to have access to the feature for a minimum of… Read More
Beta version of SharePoint 2016 will be released on fourth quarter of 2015 (Q4 2015) and Microsoft is planning to release the final build(General Availability) on second quarter of 2016 (Q2 2016)
Easier Hybrid Setup True Hybrid Search Surfacing of On Premise Content in Delve Mobile UI Coming to SharePoint 2016 Durable Links New Boundaries and Limits New Infrastructure Roles Zero Downtime Patching Authentication Encrypted SMTP Connections Upgrade Path… Read More