Posts

Showing posts from July, 2015

How to disable sharepoint mobile website

Dear All If you want to disable SharePoint mobile URL do the add the following code under web.config  <system.web> tag /* code starte */ <browserCaps> <result type="System.Web.Mobile.MobileCapabilities, System.Web.Mobile, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/> <filter>isMobileDevice=false</filter> </browserCaps> /*code end*/ Regards 3art Technology Experts http://www.3art.tech

Create Custom New Edit and Display form for sharepoint list

Image
Reference URL http://blog.karstein-consulting.com/2010/12/29/walkthrough-create-custom-sharepoint-2010-list-form-for-deployment-in-a-visual-studio-2010-project/ Another post http://www.ilikesharepoint.de/2013/11/sharepoint-create-custom-list-forms-with-visual-studio-part-1/ Check out the other solution for 2013  http://www.ilikesharepoint.de/2013/11/sharepoint-create-custom-list-forms-with-visual-studio-part-1/ Walkthrough: Create custom SharePoint 2010 list form for deployment in a Visual Studio 2010 project (This is part 1 of 2. See link below.) Today I want to show you how to create a custom list form for deployment within a custom list template developed in Visual Studio 2010. Download or update or modify my demo code on Codeplex.com: http://spcustomlistformdemo.codeplex.com/ For me I was difficult to figure out this way. I could not find a good documentation about this topic so I’ll write ist – If you found another description please post a link in the comments

How to forcely run the upgrade on the single farm

PS C:\Users\sp2010farm> psconfig -cmd upgrade -inplace b2b -wait -force Result will be some how like that SharePoint Products Configuration Wizard version 14.0.6009.1000. Copyright (C) M icrosoft Corporation 2010. All rights reserved. Performing configuration task 1 of 4 Initializing SharePoint Products upgrade... Waiting to get a lock to upgrade the farm. Successfully initialized SharePoint Products upgrade. Performing configuration task 2 of 4 Initiating the upgrade sequence... Successfully initiated the upgrade sequence. Performing configuration task 3 of 4 Upgrading SharePoint Products... 100.00% Successfully upgraded SharePoint Products. Performing configuration task 4 of 4 Finalizing the SharePoint Products configuration... Successfully completed the SharePoint Products configuration. Total number of configuration settings run: 4 Total number of successful configuration settings: 4 Total number of unsuccessful configuration settings: 0 Successfully stopped the con

How to tell which Service Pack 1 you have installed on SharePoint 2013 or Service pack1 is not getting update on one of the farm

Dear all If you are facing an issue for the Sharepoint SP1 not impact on any individual server and you are getting such kind of screen than run following command You can get the missing/notinstalled error at the following location  Patch updates by Central Administration (CA)> Upgrade and migration > Check product and patch installation status Get-SPProduct -local I hope it resolve your issue  Regards  Rashid Imran Bilgrami 

How to delete corrupted sharepoint list with powershell

Dear All If you want to delete any corrupted SharePoint list through PS script here it is     $web = get-spweb -Identity http://sp2010     $list = $web.lists["corrupted list name"]     $list.AllowDeletion = $true     $list.Update()     $list.Delete() Original post reference https://sharepointgroup.wordpress.com/2012/07/05/how-to-delete-corrupted-sharepoint-list-with-powershell/  I hope it save the time  Regards