Skip to main content

Posts

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 

Custom Search in Sharepoint listing

Dear All  There are different ways to make custom search here is the two i found the easiest way  regards Rashid Imran Bilgrami

New subsite missing the installed templates in multilanguage or Missing site templates in sharepoint 2010

Dear All  If you face an issue to that during creating a site if you did not find the installed template or Template selection is empty like below screens then you need to follow the below steps to make it available:  Solution:  Go to Site Action > Site Settings >   Look and Feel  > Page layouts and site templates Select Subsite template drop down to "Arabic"  and select the template you want to display in the list  Regards  Rashid Bilgrami 

Step by Step: Setup multi language support in SharePoint 2010

http://www.denisstadler.com/sharepoint-2010/sharepoint-2010-publishing-feature/set-up-multilingual-support-in-sharepoint-2010/ Before deploying multi language support you need to download the wanted language pack for SharePoint from Microsoft web site. Check out this older post –  Adding language packs to SharePoint 2010  which describes how to get and deploy the German language pack. Then if you are not already using a Publishing site template on your site collection, you have to enable the Publishing Infrastructure. This is done in two steps: at the site collection features level: click on Site Actions -> Site Settings -> Site collection features (Under Site Collection Administration) and activate SharePoint Server Publishing Infrastructure at the site features level: click on Site Actions -> Site Settings -> Manage site features (Under Site Actions) and activate SharePoint Server Publishing Now under Site Collection Administrat...