• Enumerate SiteCollections

    by  • December 13, 2011 • 0 Comments

    SharePoint is the platform where we can store the set of values as items, files as documents in folder or Library. But how we manage all the data’s, there comes Web sites. The above collection of web sites are managed by Site Collection, which is a placeholder or container for all the web sites. Here [...]

    Read more →

    MySite Url via UserProfile

    by  • November 29, 2011 • 0 Comments

    UserProfile has the two property members for retrieving the Url for the User. Those propertis returns the MySite Url and Personal Site url for the User. UserProfile.PersonalUrl Here, i am adding some code snippets, which gets these Url values from MySite. Using(SPSite _site = new SPSite(“http://localhost”)) { SPServiceContext context = SPServiceContext.GetContext(_site); UserProfileManager profileManager = new [...]

    Read more →

    SiteCollection Storage Information

    by  • November 28, 2011 • 0 Comments

    SharePoint has the Usage Analysis Time job, which updates the following information for the sites, Storage, Discussion Storage, Bandwidth, Hits, Visits The SPSite.Usage property gives us the information of site usage, bandwidth, visits. Here I am adding the snippet for getting the Free Space available against Storage Quota and Space used by Site Collection, using [...]

    Read more →

    Clear SharePoint Lists

    by  • November 27, 2011 • 0 Comments

    My colleague asked me about, is there any tool available for removing the entire list items from multiple list with single Click. I have taken that idea and created a tool for removing the entire items. URL: http://clearspitems.codeplex.com/ The project is in alpha stage, i have planned for adding more functionality to this tool. And [...]

    Read more →

    Why Workflow not started on Item Creation?

    by  • November 20, 2011 • 0 Comments

    There are some cases, why the workflow was not started during item creation, 1. If you create an item using System Account, the workflow will not funtion properly or that couldn’t start. 2. The workflow start option was not enabled to “Start workflow automatically when an item was created”. Ensure this option was checked. 3. [...]

    Read more →

    SharePoint Managed Account–Part 1

    by  • August 19, 2011 • 0 Comments

    This is the first of my series about SharePoint Managed Account, this feature is newly introduced in SharePoint 2010. SharePoint Managed Account feature now enable us to easily manage the User accounts by means of  password changing and notification for password change and automatic password reset. And also used for Configuring and mapping different accounts [...]

    Read more →

    Hide Fields in List Forms

    by  • August 13, 2011 • 0 Comments

    We have three types of List Forms in SharePoint., New Form, Edit Form and Display Form. For some times or in some requirements, we need to hide some of the fields in List Forms. By OOB there is no page or option for hiding fields on separate form, but we can hide the fields in [...]

    Read more →

    Inherit / Stop Web Site Top-Level Navigation

    by  • August 11, 2011 • 0 Comments

    We have two option on Top Link bar navigation, either we can inherit the Top-Link bar from the parent site or use the own Top-Level navigation. Sharing the Top-link bar can be achieved through browser interface by navigating, 1) Site Actions –> Site Settings 2) On Site Settings page, under Look and Feel section, click [...]

    Read more →

    Resolve issue – Workflow Email Notification

    by  • August 8, 2011 • 0 Comments

    Today my colleague asked me to solve the issue on Approval Email notification link issue. The issues is, Approval notification mails has the links that pointed to Default zone url instead of Intranet url if they are browsing through Intranet URL. Actually we created the Web application with 80 port and to access externally we [...]

    Read more →

    Enable Customization for Refinement Panel Web part

    by  • July 6, 2011 • 1 Comment

    “ The Refinement Panel web part in SharePoint 2010 provides a summary of search results and enables user to filter the search results. ” I have Search Center Site, there i have Refinement panel web part in results page. To enable the modifications for Refinement Panel web part,   1)  Navigate to the Search results [...]

    Read more →