How to Change the Background Color of WebPart Title

Hey Guys, I got a requirement from the business to change the Background color of the webpart title for Out of Box webparts. Then i started looking on CSS I found the following CSS class which overrides the style of WebPart Title.

.ms-WPHeader TD { border-bottom:0px solid #4e7cb7; border-collapse:collapse; }

Change this class as per […]

ADFS Error : The AD FS auditing subsystem could not register itself with the system. The auditing privilege is not held.

The issue will araise the account doesnt have audit permission to log audit events.

To Resolve To grant a domain principal the Generate Security Audits privilege:

After you identify this account, click Start, point to Administrative Tools, click Local Security Policy, and then click Local Policies. Click User Rights Assignment. In the details pane, right-click […]

How to Deploy Solution Package in MOSS 2007

To deploy the solution package like *.wsp or *.cab in SharePoint FARM. first we need to add the solution package file to the solution store, then it can be deployed at web application level or in FARM level(Global Deployment). Use the following stsadm command to add the solution to the deployment store. stsadm -0 addsolution […]

How to Send an EMail From WebPart in MOSS 2007

Hi Devs, The following is the piece of code to send Email from webpart.

using System; using System.Collections.Generic; using System.ComponentModel; using System.Text; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Collections.ObjectModel; using Microsoft.SharePoint.Utilities; using Microsoft.SharePoint; using System.Data; using System.Collections; namespace SendMail { public class SendMail : Microsoft.SharePoint.WebPartPages.WebPart { private TextBox txtTo; private Button btnSendMail; protected override […]

MOSS 2007 Pricing & Costing Info

I have consolidated few links from Microsoft for MOSS 2007 Product Costing.

Microsoft Office SharePoint Server 2007 and Related Technologies pricing

Microsoft Office SharePoint Server 2007 products comparison download

2007 Microsoft Office system pricing and upgrade information

How to Hide Quick Launch in MOSS 2007

Do you want to hide your quick launch Bar in MOSS 2007 There are two ways to hide the quick launch bar 1. You can edit directly in CSS 2. Adding Hidden content editor webpart

Add new content editor webpart Click Source Editor in ToolPane paste the below code in content editor webpart [style] .ms-quicklaunch […]

How to Force MOSS 2007 Timer Jobs to Execute

Use the Following stadm command to force the timer jobs jobs to execute. no need to wait for the interval to execute the timerjobs. stsadm.exe -o execadmsvcjobs

MOSS 2007 Rename the Web Application Name

I want to share how to rename the web application name in command line administration of MOSS 2007 using STSADM Command.

Syntax: stsadm -o renameweb -url -newname

Example: Stsadm -o renameweb -url http://localhost/oldname -newname newname

The above command will rename the web application from oldname to the newname.

Commerce Server 2007 Integration with MOSS 2007

MOSS has many inbuilt features. The scope of this POC is to integrate Commerce Server 2007 with MOSS 2007 to provide Portal Integrated e-Commerce Application

Configuring MOSS 2007 to Use the Commerce Server Membership Provider As The Basis For User Authentication

The primary tasks are to make the Central Administration and Portal sites hand-shake […]

Content Approval Workflow in MOSS 2007

In MOSS 2007 Approval workflow is available in out of the box itself. Just we need to configure only few steps then we are ready with the approval process.

If the approval workflow is configured the document will be visible only to the contributor and to the approver.

Steps to Configure Content approval workflow

Open […]