Thursday, October 30, 2014

SPRequest allocation call stack logging in SharePoint

Sp Requestallocation call stack logging in SharePoint


SPRequest call stack logging gives more detailed and useful information to allow to diagnose the problem. It provides information about memory leaks, issues in code part which are not captured in the ULS logs, event viewer. There is no Impact of enabling the cal stack because it’s not going to reset or restart any service. The only thing is, The size of the Log will be more.

Just copy the following code into a file with the extension .ps1 

[System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint") > $null
$contentSvc = [Microsoft.SharePoint.Administration.SPWebService]::ContentService
$contentSvc.CollectSPRequestAllocationCallStacks = $true
$contentSvc.Update() 

To disable SPRequest allcoation callstack logging after you completed testing just replace $true with $false:

[System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint") > $null
$contentSvc = [Microsoft.SharePoint.Administration.SPWebService]::ContentService
$contentSvc.CollectSPRequestAllocationCallStacks = $false
$contentSvc.Update() 

To start the power shell scripts please open the SharePoint 2010 Management Shell, switch to the directory where you stored the ps1 files and start them using the following syntax:
PS> .\EnableSPRequestCallstacks.ps1
  


I hope the above information will help you to resolve the issue, in case of any queries/questions regarding the above mentioned information then please let me know. I would be more than happy to help you as well as resolves your issues, Thank you.

Turn on the verbose log in SharePoint 2013



Turn on the verbose log in SharePoint 2013

To  Turn on the verbose log in SharePoint 2013 run the below command in SharePoint management shell.

Set-SPLogLevel -TraceSeverity verbose


I hope the above information will help you to resolve the issue, in case of any queries/questions regarding the above mentioned information then please let me know. I would be more than happy to help you as well as resolves your issues, Thank you.

Wednesday, October 29, 2014

Configure the maximum number of co-authoring authors in SharePoint 2013



Configure the maximum number of co-authoring authors in SharePoint 2013

Description: The CoauthoringMaxAuthors property lets you specify the maximum number of users who can co-author a Word document or PowerPoint presentation at the same time in SharePoint 2013. This article describes how to configure the CoauthoringMaxAuthors property by using Windows Power Shell.

Check the ink below from MS.

  http://technet.microsoft.com/en-us/library/ff718248%28v=office.15%29.aspx


I hope the above information will help you to resolve the issue, in case of any queries/questions regarding the above mentioned information then please let me know. I would be more than happy to help you as well as resolves your issues, Thank you.

Tuesday, October 28, 2014

Set up and manage access requests



Set up and manage access requests

I found a very detailed article on how to configure the access requests in SharePoint 2013.


  http://office.microsoft.com/en-in/sharepoint-help/set-up-and-manage-access-requests-HA103456596.aspx

http://blog.cloudshare.com/2012/12/09/how-to-configure-the-site-access-request-in-sharepoint-2013/


I hope the above information will help you to resolve the issue, in case of any queries/questions regarding the above mentioned information then please let me know. I would be more than happy to help you as well as resolves your issues, Thank you.

moving a List from SharePoint 2010 to SharePoint 2013



moving a List from SharePoint 2010 to SharePoint 2013

I found a very detailed article on how to move  a list from SharePoint 2010 to SharePoint 2013.please find the link below.

  http://absolute-sharepoint.com/2013/08/how-to-move-a-list-from-sharepoint-2010-to-sharepoint-2013.html


I hope the above information will help you to resolve the issue, in case of any queries/questions regarding the above mentioned information then please let me know. I would be more than happy to help you as well as resolves your issues, Thank you.

ShareThis

X