Friday, December 14, 2012

Presentation–SharePoint 2010 development with WCF

Recently I did a presentation at Sri Lanka SharePoint forum regarding SharePoint 2010 development with WCF

unnamed (1)

You can download the source code from this link

Monday, December 10, 2012

Patch management in SharePoint

Application of regular security patches and updates is vital for any system. It is same for our SharePoint environment as well. But we should be very careful in patching, as our SharePoint environment can contain mission critical data as well as customization. Data and customization need to be preserved 100% for the patching exercise to be a success.

First we need to understand how Microsoft releases patches for SharePoint.Microsoft provides following types of patches

Hot fixes Released whenever Microsoft encounter vulnerability/issue on SharePoint
Cumulative updates Collection of hot fixes and security updates released every 2 months
Service Packs Collection of fully tested cumulative updates

We can get information on any security update or vulnerability from Microsoft Security Bulletins site. In that site we can search for SharePoint related updates. Once we get the update we need to assess the risk of applying such update.
To assess risks and identify the course of action I use following as the guideline
image
After risk assessment I follow the process given below to apply patches and updates to my production environments
image

Monday, November 19, 2012

Get SharePoint sites created after specific date using PowerShell

Following PowerShell Script will provide sites created after a specific date

  1. $date = [datetime]"10/15/2012"
  2.  
  3. Get-SPWebApplication "http://sp13:8080" | Get-SPSite -Limit All | Get-SPWeb -Limit All | where {$_.Created -lt $date } | select Url, {$_.Created}

Friday, October 12, 2012

Usage of Merge-SPLogFile in SharePoint

We can setup our SharePoint as a multi server farm. Although it is best to distribute workloads among different servers, It can be very painful to debug errors.

Let’s assume we have a SharePoint farm with 3 servers (WFE, App, DB). For an example, let’s say suddenly we get an error while opening a excel document. What do we normally do ?

If the error message is not self-explanatory we will use ULS logs.There are very helpful ULS log readers available. (ULS Viewer is my favourite). First we will log in to WFE and investigate the error using ULS logs and relevant Correlation Id.

image
If the “Excel Services” service application is deployed in App server we might need to get ULS logs from that server as well. If we have tens of servers in our farm we will be in a great trouble. Are we going to remote login each and every server to debug the error?
There is a far better solution. There is a PowerShell cmdlet called Merge-SPLogFile. Using that we can get all log entries from all servers. In the above scenario where we have an issue and we know the correlation id we can use something like below to generate a log file compiled from each server in the farm.

image
Then we can open the CustomLog.log file using ULS Viewer to check all related information from each server.

image
Is this the only usage from Merge-SPLogFile command?
Not really. We can do following using the command. (and there are more use cases as well)
  • Get a summary of all activity compiled from all servers in last hour
Merge-SPLogFile -Path "D:\Logs\FarmMergedLog.log" -Overwrite
  • Get a summary of all activity compiled from all servers for a given log area in last hour(ex.: Search) 
    Merge-SPLogFile -Path "D:\Logs\FarmMergedLog.log" -Overwrite -Area Search
I hope you got some idea about this PowerShell cmdlet.

Wednesday, August 29, 2012

Presentation-SharePoint 2010 Best Practices

In this post I will share the presentation I did at Sri Lanka SharePoint Forum

unnamed

I explained about best practices we can use in different stages of a SharePoint 2010 project, including plan, build and operate.

Tuesday, April 10, 2012

Upload file to SharePoint document library using PowerShell

Following small script will upload file to a given document library in SharePoint

  1. $webUrl = "https://sp13/sites/site"
  2. $docLibName = "SiteLog"
  3. $filePath = "C:\Logs\test.txt"
  4.  
  5. #upload file
  6. $web=Get-SPWeb $webUrl
  7. $file=Get-Item $filePath
  8. $fileStream=([System.IO.FileInfo](Get-Item $file.FullName)).OpenRead()
  9. $folder=$web.GetFolder($docLibName)
  10. $spFile=$folder.Files.Add($folder.Url +/” + $file.Name, [System.IO.Stream]$fileStream, $true)
  11. $fileStream.Close()

Thursday, March 8, 2012

Identify issues & risks in your SharePoint – Part 1

One important and regular task of a SharePoint administrator is to identify issues/risks in his SharePoint environment. Most probably the first task of a newly recruited SharePoint administrator would be to understand and report the current status of the SharePoint system. The objective of this article is to describe different ways to identify issues or risks. Some techniques and tools mentioned here can be used for regular monitoring and some of them can be used when you encounter a symptom of an issue. I will split the article in to two parts based on the SharePoint version.

Part 1: Identify issues and risks in WSS 3.0 and SharePoint 2007 (MOSS)
Part 2: Identify issues and risks in SharePoint Server 2010 and SharePoint Foundation

Identify issues and risks in WSS 3.0 and SharePoint 2007 (MOSS)

Although those SharePoint versions are very old, they are still being used in small to large scale organizations. So there is a good chance that you will have to manage a WSS 3.0 or MOSS system in your organization. By the way there is a good chance that those versions are selected for new installations over SharePoint 2010 due to various business decisions (e.g.: Standards, Compatibility, Cost, etc.…) .

So let’s assume we have an older version of SharePoint and we need to monitor for issues and risks. Following section will provide different tools that we can use to identify problems in WSS 3.0 or MOSS systems.

1. Site Collection Usage summary

image

I believe this should be the starting point of our analysis. You have to do this exercise for every site collection in your farm. By doing this you will get a better idea of what are the heavily used and what are not being accessed at all.

Most important sections in this report are current storage used, the maximum storage allowed (site collection quota), number of users and recent bandwidth use. By monitoring first 2 sections we can identify if there is a risk of our SharePoint to be out of service due to lack of storage. If the rate of storage used over time (change of storage used/ time period) is alarmingly high we may reduce the maximum file upload size temporary until proper solution is in place (This should be done after monitoring Storage space allocation). The network utilization section denotes the number of megabytes per day of network utilization attributable to sites in the site collection. We can detect network related risks/issues if this figure is too high compared to the available bandwidth.

2. Storage space allocation

This feature is only available if a quota template is applied to the site collection. If the current storage is reaching the quota you can check what has taken the most of storage. Following are some practical scenarios where this report is extremely helpful

There was an instance in one of our SharePoint systems where the recycle bin had occupied more than 50GB.

If you see large document libraries, you need to take special care in order to overcome possible performance compromise. You can use this Microsoft guideline as a framework to tackle this kind of situation.

image

3. Event viewer

We can get a list of recent errors, warnings and notification related to SharePoint using this console. Most of the SharePoint related items will be available in the Application category.

image

4. SharePoint ULS

SharePoint Unified Logging Service (ULS) writes SharePoint events to trace logs located in “C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\LOGS\” path. As a general practice we can first monitor Windows application events in Event Viewer. If there is a SharePoint related event we can further study in SharePoint trace logs. There are some third party tools to view ULS logs in a user friendly manner.

We can control the level of Windows and ULS logs using event throttling settings. I will describe that in a separate post.

5. SharePoint diagnostic tool

This tool can be downloaded from Microsoft using this URL. You can setup this tool according to this guideline. It does the analysis based on several areas and finally provides a report.

clip_image010[4]

6. Microsoft Performance Monitor

Various performance counters are available in the performance monitor. We can select more relevant counters to do our analysis

clip_image012[4]

Following are some relevant performance counters. You can select some more counters as well

Counter

Threshold

Target

Logical Disk / % Free Space

15%

Storage

Physical Disk / % Idle Time

20%

Storage

Memory / Cache Byte

300MB

Memory

Memory / % of Committed Bytes

80%

Memory

Memory / Available Mbytes

205MB

Memory

Processor / % Processor Time

80%

Processor

7. Microsoft Operations Manager 2005 (MOM)

This is little bit advanced but the recommended approach for WSS as well as MOSS. WSS and MOSS Management Packs (MP) are available to download for this purpose. If your SharePoint is a multi-server farm this will be the practical monitoring tool as it is required to collect data from each and every server of the farm. MOM has predefined performance counters. So it will track and respond to events based on those performance counters. Furthermore this is capable of alerting the administrator if it detects a problem.

8. Microsoft System Center Operations Manager (SCOM)

This can also be used to monitor WSS 3.0 and MOSS, since this is applicable to SharePoint Server 2010 as well, I will describe this in the next part of the article.

Those are some of the techniques we use regularly to monitor WSS 3.0 and MOSS 2007 and identify issues and risks. Hope this will help someone.