Posts

Showing posts from 2015

How to Change Favicon.ico in SharePoint 2013

First we have to upload image in this link : http://tools.dynamicdrive.com/favicon/ Note: it's supports gif, jpg, png, and bmp extensions. Next step we have to open SharePoint Site(Like http://abc ). Go to site setting--> Site asserts--> Click on New Document and Upload Converted  favicon.ico and Save it. Finally we have to Open SharePoint Designer. Open site (type http://abc). Once Open it go to Master pages---> take a copy of v4.master and Open it.  Search <SharePoint:SPShortcutIcon and Replace with this tag  <SharePoint:SPShortcutIcon runar="Server" IconUrl="http://abc/siteasserts/favicon.ico"/> Check your site. If not updated Clear cache.

Exploring SharePoint Users, Groups, and Security Using PowerShell

http://sharepointpromag.com/sharepoint-2013/exploring-sharepoint-users-groups-and-security-using-powershell

The server was unable to save the form at this time. Please try again

The server was unable to save the form at this time. Please try again Hi Folks, Restart the SharePoint Search Host Controller. Check the user permission if don't have provide appropriate permission. Enable anonymous access for the site in IIS (Most of the times its works) . Open the web application web.config and Replace <serviceHostingEnvironment aspNetCompatibilityEnabled="true"/> with <serviceHostingEnvironment aspNetCompatibilityEnabled="true" minFreeMemoryPercentageToActivateService="0"/> I spend my time on google. But now use......finally I found the error due to creating two web application with same port number(No host header). Once I  stopped One web application. Its working for me.......  Finally Reset INETMGR (IISRESET). Cheer it...............

How to Stop Service Application using PowerShell with Identity

Service application stopping: $serviceInstance = Get-SPServiceInstance | where {$_.ID -eq "076f00b8-1fc8-46b2-bd42-574d708b2763"} $serviceInstance.Unprovision() $serviceInstance.Provision()

Adding and Removing super user and super reader to web application using PowerShell:

Adding super user and super reader to web application using PowerShell: Object Cache: The super user account utilized by the cache is not configured. This can increase the number of cache misses, which causes the page requests to consume unneccesary system resources. To configure the account use the following command ‘stsadm -o setproperty -propertyname portalsuperuseraccount -propertyvalue account -url webappurl’. The account should be any account that has Full Control access to the SharePoint databases but is not an application pool account. Additional Data: Current default super user account: SHAREPOINT\system  Object Cache: The super reader account utilized by the cache does not have sufficient permissions to SharePoint databases. To configure the account use the following command 'stsadm -o setproperty -propertyname portalsuperreaderaccount -propertyvalue account -url webappurl'. It should be configured to be an account that has Read access to the Sha...

Hide newsfeed onedrive and sites in SharePoint 2013 with SharePoint Visitors.

SharePoint 2013 provides a delegate contol for Suite links and that is there in the master page. So we need to hide that delegate control from the master page. The delegate control is  <SharePoint:DelegateControl id="ID_SuiteLinksDelegate" ControlId="SuiteLinksDelegate" runat="server" /> Once you will remove that you will not able to see those links. For my case Visitor will not remove that links. I hide the newsfeed, oneDrive and Sites in SharePoint 2013 But it is visible to visitor. I did R&D. Finally I got the Solution. Go to  C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\TEMPLATE\LAYOUTS\1033\STYLES\Themable\COREV15.CSS Take the backup of .css and Add "#suiteLinksBox {display:none}" style at the end and save. Note: Its Hide Entire farm.