Posts

How to remove app from SharePoint 2013/2016

I have installed an SharePoint App for creating surveys but when try to uninstall / remove it from the site it shows exception message " sorry we couldn't remove the app ". Solution: I have used following Power-Shell commands to install/remove app successfully  $instances = Get-SPAppInstance -Web <URL> $instance = $instances | where {$_.Title -eq '<app_title>'}   Uninstall-SPAppInstance -Identity $instance

SharePoint 2013 Developer

Very useful link: http://www.learningsharepoint.com/sharepoint-2013-developer-tutorials-and-samples/ This link contains following contain  JS Link Delegate Controls How to hide NewsFeed, SkyDrive, Sites (DeltaSuiteLinks) in SharePoint 2013 Master Page & Layout Pages(Design Manager) CallOut Popups Custom Actions, Features, Solutions How to Add a Custom Action for Site Action or Settings menu in SharePoint 2013 Social How to Programmatically Follow Documents in SharePoint 2013   Uploading JavaScript (JS Files) as Javascript Display Template in SharePoint 2013 Create Task Indicators for Status Column in SharePoint 2013 using JS Link Color Code List Items using JS Link in SharePoint 2013 See more  SharePoint 2013 JS Link Samples & Tutorials>> How to Add\Remove Newsfeed,Skydrive Links by Overriding “SuiteLinksDelegate” Delegate Control in SharePoint 2013 Add Links to Promoted Actions (Share,Follow,SYNC) by Overrid...

SharePoint 2013 – Hide NewsFeed, SkyDrive, Sites (DeltaSuiteLinks)

http://www.learningsharepoint.com/2012/08/09/sharepoint-2013-hide-newsfeed-skydrive-sites-deltasuitelinks/

Add,Remove Links in Top Suitebar (SkyDrive,Sites,NewsFeed) in SharePoint 2013

http://www.learningsharepoint.com/2013/02/10/addremove-links-in-top-suitebar-skydrivesitesnewsfeed-in-sharepoint-2013/

How to: Customize the Document Set Ribbon in SharePoint Server 2010 (ECM)

This is to allow user  to download all contents of document set as zip file rather than download each file individually. https://msdn.microsoft.com/en-us/library/ff512775.aspx 

Start or Stop SharePoint Server Search

Stop /Start SharePoint Server Search before configuring Search Application Service. Get-SPEnterpriseSearchServiceInstance -Local | Start-SPEnterpriseSearchServiceInstance OR Get-SPEnterpriseSearchServiceInstance -Local | Stop-SPEnterpriseSearchServiceInstance

Audit Log Reports Link Missing

Problem Audit Log Reports Link is missing even though you have enabled Auditing on the site collection. Solution Enable the  Reporting  feature under Site Collection Features.