Posts

SharePoint – The administration service is running so all administration jobs will be run in the timer service

https://amalhashim.wordpress.com/2013/01/28/sharepoint-the-administration-service-is-running-so-all-administration-jobs-will-be-run-in-the-timer-service/ When I was trying to deploy a solution it keep on saying the status as deploying… After a while I tried to execute following command stsadm -o execadmsvcjobs It gave me this message The administration service is running so all administration jobs will be run in the timer service This issue can be resolved by executing following commands in SharePoint Management Shell net stop SPAdminV4 Start-SPAdminJob net start SPAdminV4

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