Posts

Showing posts from December, 2014

Site slowness because of SharePoint STS certificate CRL checking

Assume that you have a web application that uses claims-based authentication in SharePoint Foundation 2010 or SharePoint Server 2010. The SharePoint server does not have access to the Internet, or the server is protected by a firewall that has limited ports open. In this situation, users intermittently experience long delays when they perform certain operations, such as logging in to the site or performing a search. Users may also encounter HTTP timeouts when they perform these operations. https://support.microsoft.com/kb/2625048?wa=wsignin1.0

Tasks Aggregation

In SharePoint 2013, there is a new feature called Task Aggregation. http://blogs.perficient.com/microsoft/2012/09/sharepoint-2013-task-management-in-my-sites/ http://www.microsoft.com/en-us/download/details.aspx?id=38799

SharePoint 2013 Designer workflow and sending emails

In SharePoint 2013 designer workflows if you created workflow with 2013 workflow template you will not be able to end email outside your domain resolution to that, create separate 2010 workflow that sends email and start it from your 2013 workflow. check those articles too check those artilce http://www.stefanfeenstra.nl/office-365/unable-send-emails-external-users-sharepoint-online-2013-experience/ http://blogs.technet.com/b/rajbugga/archive/2013/10/15/sharepoint-2013-unable-to-send-emails-to-external-email-addresses-sharepoint-2013-workflows.aspx

Move SharePoint Farm to New Domain

Here you are the complete steps http://blogs.technet.com/b/sushrao/archive/2011/12/02/sharepoint-migrating-sharepoint-server-from-one-domain-to-another.aspx check those links also http://www.falconitservices.com/support/KB/Lists/Posts/Post.aspx?ID=194 https://social.technet.microsoft.com/Forums/sharepoint/en-US/20ab9c73-ab38-47d0-a791-8f9004fbe1a4/move-sharepoint-farm-servers-to-another-ad-domain

How to add big files in SharePoint (More than 2 GB)

you have 3 options 1- use a software to split those large files and uplod 2 SharePoint and then after downloading u merge them http://www.online-tech-tips.com/computer-tips/how-to-split-a-large-file-into-multiple-smaller-pieces/ 2- Use file Share to store those large files and from SharePoint create a view to access the file Share http://blogbaris.blogspot.co.uk/2012/01/sharepoint-link-to-file-shares-in.html http://serverfault.com/questions/236979/linking-to-network-shares-from-sharepoint-pages 3- Upload those file to a cloud solution and add links to them in a SharePoint list

Add Video in Content Editor

<embed src = "http://link to video goes here" autoplay = "true" loop = "false" width = "200" height = "200" > </embed>

How to Customize in Office 365

https://support.office.com/en-us/article/Plan-customizations-solutions-and-apps-for-SharePoint-Online-b7898ebf-69b7-4196-81e3-b04e1a4e7d67?ui=en-US&rs=en-US&ad=US http://technet.microsoft.com/en-us/library/sharepoint-online-developer-service-description.aspx office 365 developer reference http://msdn.microsoft.com/en-us/office/aa905340.aspx

SharePoint On Premise Vs online

https://4sysops.com/archives/sharepoint-2013-on-premises-vs-sharepoint-online/ http://searchcontentmanagement.techtarget.com/podcast/SharePoint-Online-vs-on-premises-When-does-it-make-sense http://redmondmag.com/articles/2013/04/01/key-piece.aspx

SharePoint 2010 and ISA server proxy - Any step by step documentation

http://blogs.technet.com/b/paulpaa/archive/2009/09/23/steps-to-publish-sharepoint-sites-created-in-host-header-mode-hh-mode-with-isa-server-2006.aspx http://serverfault.com/questions/174061/how-to-configure-aams-in-sp-2010-to-work-with-isa-2006-and-kerberos-authenticati http://www.benjaminathawes.com/2010/08/22/publishing-sharepoint-2010-with-isa-server-2006-sp1/ http://www.isaserver.org/articles-tutorials/publishing/How-to-Publish-Microsoft-Sharepoint-Service-ISA-Server-2006.html http://technet.microsoft.com/library/bb794854.aspx#SecureWebPublishing

Check if Folder is available

SPList myList = web.Lists["Pages"]; SPFolder oFolder = myList.RootFolder.SubFolders["foldername"]; But instead of mentioning   if (oFolder == null)                     {                         Console.WriteLine("FOLDER NOT FOUND");                     }                     else                     {                         Console.WriteLine("FOLDER FOUND");                                               Console.ReadLine();                     }

Migrate content in RBS SharePoint 2013

To migrate content in RBS SharePoint 2013 http://technet.microsoft.com/en-us/library/ff628254(v=office.15).aspx

Set SharePoint task indicator color

To set SharePoint task indicator color Use calculated column and formula like that = "<DIV style=’font-weight:bold; font-size:24px; color:" & CHOOSE ( RIGHT ( LEFT ( Priority , 2 ), 1 ), "red" , "orange" , "green" )& ";’>&bull;</DIV>"

Add Identity to Empty Web Project

Adding ASP.NET Identity to an Empty or Existing Web Forms Project http://www.asp.net/identity/overview/getting-started/adding-aspnet-identity-to-an-empty-or-existing-web-forms-project

Update Published Visual Studio workflow

To update workflow that is already published need to have versions, to do so follow the following  http://turtlellc.com/sharepoint/sharepoint-workflow-versioning-with-visual-studio-2012/ http://blogs.msdn.com/b/yardman/archive/2010/04/14/versioning-a-visual-studio-sharepoint-workflow.aspx https://social.msdn.microsoft.com/Forums/sharepoint/en-US/0f50841d-e9ce-42a5-b489-45575463bb56/sharepoint-workflow-versioning