SharePoint 2010 Performance Dashboard – Server Performance Reporting(Post 1/2)
In this post, I will talk about my SharePoint Performance Dashboard Project. It has mainly two major types of reporting features, Part 1. CPU Monitor, Memory Monitor, Top Users of the farm, Top Site...
View ArticleSharePoint 2010 Performance Dashboard – Server Performance Reporting(Post 2/2)
Continuing from the Post 1, Request Workload / Agent Query : SELECT AgentName, SUM(RequestCount) AS RequestsCount FROM RequestWorkload WHERE (LogTime BETWEEN GETDATE() - 10 AND GETDATE()) AND...
View ArticleSharePoint 2010 Performance Dashboard – Farm Content Size Reporting(Post 1/2)
In this post we will look into how I did “Farm Content Size Reporting” part of the project, We have two types of reporting in this functionality. Content Databases per Web Applications Report Site...
View ArticleSharePoint 2010 Performance Dashboard – Farm Content Size Reporting(Post 2/2)
Here I have mentioned the code which can be useful to get the Content DB, Site Collection Usage details. SPFarm farm = SPFarm.Local; SPWebService service =...
View ArticleA Few Sneak Peeks of my SharePoint Site Archival Workflow Project
I had a requirement from customer to develop an archival workflow solution using which they can automate the Site Collection archival based on a set of business rules. The features should be, notify...
View ArticleCode to create a task in Windows Task Scheduler
1: TaskSchedulerClass scheduler = new TaskSchedulerClass(); 2: scheduler.Connect(null, null, null, null); 3: 4: ITaskDefinition task = scheduler.NewTask(0); 5: task.RegistrationInfo.Author = "MS...
View ArticleWhat’s new in SharePoint 2013 – Resources
This post is as per beta version, there could be some changes with RTM version. For IT Pro – Capabilities and features in SharePoint 2013 SharePoint 2013 training for IT pros How-to training and...
View ArticleSharePoint 2013 – General Reference
Capacity management and sizing overview for SharePoint Server 2013 This article provides an overview of how to effectively plan and manage the capacity of SharePoint Server 2013 environments. This...
View ArticleSharePoint 2013 Upgrade – Resources
This post is as per beta version, there could be some changes with RTM version. What’s new in SharePoint 2013 upgrade SharePoint 2013 includes new upgrade features, such as upgrade for service...
View ArticleSharePoint 2013 Security – Resources
This post is as per beta version, there could be some changes with RTM version. Authentication, authorization, and security in SharePoint 2013 What’s new in SharePoint 2013 for authentication,...
View Article