If you have been developing custom solutions on SharePoint 2010 platform, having knowledge of how to move your code from developer’s machine to server environ... [read more]
I have already blogged the code snippet about how to configure SharePoint lists and document library view’s group by settings programmatically. http://nik... [read more]
Here is how you can tell SharePoint 2010 site to open the PDF files in the browser instead of prompting the user to save or open the PDF. This will be a great o... [read more]
This is third part of the article series and it provides the final/full version of PowerShell script built in earliar article to automate the SharePoint 2010 Fa... [read more]
This is second part of the article series and it provides the step by step process of building PowerShell script to automate the SharePoint 2010 Farm Level Solu... [read more]
Article Series Content Basics of Farm Level SharePoint Deployment and Retraction Step by Step Building Deployment and Retraction PowerShell Script Final Version... [read more]
This will help out when you need to force files to be checked in. It can also be modified to find all the checked out files and notify users… function CheckIn... [read more]
This is a great script that allows you to do batch permission updates… function AddAccountToAllSites ($siteURL, $accountName, $permLevel, [switch]$skipRootSit... [read more]
When you upgrade from Microsoft Office SharePoint Server 2007 to Microsoft SharePoint Server 2010, you can choose to use the Visual Upgrade feature to give site... [read more]
1. Install / Uninstall and Activate/Deactivate Feature $Hive14=’C:Program FilesCommon FilesMicrosoft SharedWeb Server Extensions14TEMPLATEFEATURES’... [read more]
The SharePoint developer tools in Visual Studio 2010 allow you to deploy the solution you’re working on directly to a SharePoint site. The deployment st... [read more]
This script specifically gets site collection admins, but it can be modified to get other data you might be interested in… $rootSite = New-Object Microsoft.Sh... [read more]
In this small post lets see how you can configure Time Jobs using PowerShell. Lets say you want to enable Activity Feed Job which is by default Disabled on the ... [read more]
In a previous post I wrote about how to replace the Visual Studio deployment steps with your own PowerShell script, which allows you to take full control over h... [read more]
Have you ever had C# functions library and you wanted to reuse it in the PowerShell script instead of reinventing the wheels and translating the c# code into Po... [read more]