Microsoft Certified Trainer 2012
26 Saturday May 2012
Posted in SharePoint 2010
26 Saturday May 2012
Posted in SharePoint 2010
25 Friday May 2012
Posted in SharePoint 2010
05 Saturday May 2012
Posted in PowerShell, SharePoint 2010
Today I was writing some PowerShell functions and I wanted to see the results in GridView like below;
This output to the results from PowerShell in GridView and as if it is a windows application..
And I got exception in the first screenshot saying “ [ Out-GridView ], Not supported exception.
But that was easy since PowerShell is telling you how to solve it.
In the coming line from the exception it is saying, “ Out-GridView : To use the Out-GridView cmdlet, install the Windows PowerShell Integrated Scripting Environment Feature from Server Manager. “
You need to go Features in Server Manager..
And Install…. ![]()
That was easy and start forward from PowerShell !
01 Tuesday May 2012
Tags
The product group released the April 2011 Cumulative Update for the SharePoint 2007 and 2010 product family.
The KB articles are available:
The Full Server Packages for April 2011 CU are available through the following links:
Remember that after installing the fixes you need to run the SharePoint 2010 Products Configuration Wizard on each machine in the farm.
24 Tuesday Apr 2012
Posted in SharePoint 2010, User Profile
You will be lucky if User Profile worked with you for the first time ! yaa we all know this.
We also know it stuck sometimes or always anyway on Starting … but for me was stucking on Stopping
it happens.
After searching I found this thread which helped me http://social.technet.microsoft.com/Forums/en-GB/sharepoint2010setup/thread/6d1b123a-391b-4e9e-946d-c23027192e62
Steps:
1. stsadm -o enumservices > c:\services.txt – Those gave me a list of services and showed me what the name of the service I need to stop is.
2. stsadm -o provisionservice -action stop -servicetype “Microsoft.Office.Server.Administration.ProfileSynchronizationService, Microsoft.Office.Server.UserProfiles, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c” -servicename FIMSynchronizationService
The second command stopped the service.
Good Luck.
23 Monday Apr 2012
Posted in SharePoint 2010, SharePoint Administration
I ran into this installation error for more then 4 hours ! I tried lots of stuff to make it & searched a lot till I found this article http://www.mattgrovesblog.com/2009/11/sp2010-installation-error.html#axzz1ssEbtjSV
so the exception I was getting was in step 9 is this;

“An exception of type Microsoft.SharePoint.PostSetupConfiguration.PostSetupConfigurationTaskException was thrown. Additional exception information: An error has occurred while validating the configuration settings. An exception of type System.ArgumentNullException was thrown. Additional exception information: The errorData argument cannot be null or zero length.“
After some diagnosis found this was due to the Windows firewall blocking PSConfig from talking to remote hosts!
So, what the error should say is:
Due to the Windows Firewall being enabled the PSConfig cannot create a connection to remote hosts (eg. your SQL server!!). Please allow PSConfig out through the firewall!
Having now created the firewall rule I am making progress!
Of course, some will simply disable Windows Firewall
09 Friday Mar 2012
Posted in SharePoint 15, SharePoint 2013
“Wouldn’t it be better to simply load only the changes from one page to the next? In many pages, the changes from one page to the next may be just a kilobyte or two of text, saving literally hundreds of Kb of bandwidth on every page hit. Loading only those changes would make your network guys very happy.
Well, that’s exactly what MDS tries to do. What the MDS does is that it allows users to load only what changes between pages. This drastically reduces page load time and speeds up responsiveness for the entire application.” please read more in http://blog.furuknap.net/minimal-download-strategy-in-sharepoint-2013
07 Sunday Aug 2011
Posted in Developer Dashboard, SharePoint 2010
This tool is useful for measuring the behavior and performance of individual pages.
Can be used to monitor page load and performance
It has three states:
Activating the Developer Dashboard
Developer Dashboard is a utility that is available in all SharePoint 2010 versions, and can be enabled in a few different ways:
Activate the Developer Dashboard using STSADM.EXE
The Developer Dashboard state can only be toggled with a STSADM command
STSADM –o setproperty –pn developer-dashboard –pv on
STSADM –o setproperty –pn developer-dashboard –pv off
STSADM –o setproperty –pn developer-dashboard –pv ondemand
Activate the Developer Dashboard using PowerShell:
$DevDashboardSettings = [Microsoft.SharePoint.Administration.SPWebService]::
ContentService.DeveloperDashboardSettings;
$DevDashboardSettings.DisplayLevel = ‘OnDemand’;
$DevDashboardSettings.RequiredPermissions =’EmptyMask’;
$DevDashboardSettings.TraceEnabled = $true;
$DevDashboardSettings.Update()
Activate the Developer Dashboard using the SharePoint Object Model
using Microsoft.SharePoint.Administration;
SPWebService svc = SPContext.Current.Site.WebApplication.WebService;
svc.DeveloperDashboardSettings.DisplayLevel=SPDeveloperDashboardLevel.Off;
svc.DeveloperDashboardSettngs.Update();
Where is it?
You can see the Developer Dashboard button In the top right.
Developer Dashboard 3 Border Colors
You see this Developer Dashboard has a yellow border color.
03 Wednesday Aug 2011
Posted in SharePoint 2010
As SharePoint 2010 does not support .NET 4.0
And I guess that next version of SharePoint which could be SharePoint 16 will support .net 4.0 But that time or after few months of releasing SharePoint 16, .NET 5.0 will be released.
SO again is SharePoint 16 going to support .NET 5.0
01 Monday Aug 2011
Posted in SharePoint 2010