#Get the site name to the variable
$web = Get-SPWeb SitURLHere
#Get the group name to the variable
$groupName = $web.SiteGroups["Group Name Here"]
#Assign user to variable
$user = $web.Site.RootWeb.EnsureUser(“User ID Here”)
#Add user to group
$groupName.AddUser($user)
Write-Host -ForegroundColor green "User Added Successfully";...
Jan 6, 2013
Dec 18, 2012
SharePoint 2013 Certification

Below is the links to know about initial release for Certifications in SharePoint 2013:
Exam 70-331: Core Solutions of Microsoft SharePoint Server 2013 http://www.microsoft.com/learning/en/us/Exam.aspx?ID=70-331
Exam 70-332:Advanced Solutions of Microsoft SharePoint Server 2013 http://...
Dec 12, 2012
Web Part with Custom Tool Part in SharePoint

To know about Basics of Creating a Custom Web Part with Validations and Deploying it in the SharePoint, read this article.
In this article, we will know how to create a custom web part in SharePoint with Custom Tool Part (Custom Properties).Before creating a custom web part with custom tool part,...
How does Ribbon in SharePoint 2010 works?
A file called CMDUI.XML stays at the web front end which contains the Out-of-Box site wide Ribbon implementation i.e. all the Ribbon UI for the entire site. In addition to this you have a CustomAction for each ribbon component.
These CustomActions have CommandUIExtentions block which has CommandUIDefinitions and CommandUIHandlers which make up the activity of the ribbon component.
So, when...
Dec 11, 2012
Consuming a web service using ASP .NET

To
know about basics of web service read this article.
To
know about creating a web service using ASP .NET read this article.
Background:
In the previous article we have learned about creating a web
service. Now in this article, we will learn how to consume a web service using
asp .NET.
Real Time...
Creating Web Service using ASP .NET

To know about basics of web service read this article.
1. Create an ASP .NET web service application using Microsoft Visual Studio.
2. Take a scenario that we have to convert Celsius to Fahrenheit and vice versa.
3. Below is the code for our scenario:
using System;
using...
Basics of Web Services

Introduction:
In this article, we aim at learning the basics of web services and understand how does web service works.
WebService:
1. Web services are the easy way to create communications between different applications of different platform.
2. Web Services extend these...
Captcha using Java Script
Background:
Now a days,
all the web sites requires inputs (contact us, feedback, etc.) from the end
users. But many sites face a problem of spam or unwanted or junk messages. To
avoid this we have a java script code which will generate the random codes
which should be entered by the users manually.
This...
Dec 8, 2012
Create Site Collection in Separate Content Database in SharePoint

Problem:
When a “Site Collection” is created in a web application, then the proceeding Site Collections created in the same “Web Application” will use the Same Content DB.
This creates problems in the following scenarios:
1. Size of the one Site Collection grows large then it will affect the...
Oct 27, 2012
This item could not be crawled because the repository did not respond within the specified timeout period - SharePoint Search Error
Problem:
Environment: WSS 3.0, Microsoft Search Server Express 2008
The Search server is
crawling the contents properly and the search is working as expected. Suddenly,
search crawling stopped and the error in the Search log is
"This item could not be
crawled because the repository did not respond within the specified timeout
period. Try to crawl the repository at a later time, or increase the...