WSP Installation and Feature Activation & DeActivation Steps in MOSS 2007

Reading Time: < 1 minute 1. Add the solution stsadm -o addsolution -filename <WSPFILENAME> 2. Deploy the solution stsadm -o deploysolution -name <WSPFILENAME> -url <SITEURL> 3. Install the feature stsadm -o installfeature -filename <FeatureFolder>feature.xml 4. Activate the feature stsadm -o activatefeature -id <FEATUREID> -url <SITEURL> -force 5. Deactive the feature Stsadm.exe -o deactivatefeature -filename “C:Program …

We are in MOSS 2007(SharePoint 12) Microsoft Planning to release SharePoint 2010 (formerly codenamed SharePoint 14) and WSS 4.0 mid of next year

Reading Time: 4 minutes Why I writing this blog here… We are in MOSS 2007, everyone need to plan to learn and implement Sharepoint 14 once released onwards… Here I added some new features and screen shots from microsoft Vedios. MOSS 2007 – 32 bit , SharePoint 14 – 64 bit Look and feel highly …

webpart to a XSLT dataview using SharepointDesigner – Error When move dev to Prod environment

Reading Time: 2 minutes I moved MOSS dev site to prod environment, its shows error where ever having XSLT dataview. Error Messages In your Web browser: Unable to display this Web Part. To troubleshoot the problem, open this Web page in a Windows SharePoint Services-compatible HTML editor such as Microsoft Office SharePoint Designer. If …

Delete MOSS 2007 List Item using C# – Microsoft Sample code doesn’t work

Reading Time: < 1 minute Below is the Code to Delete List Item used by Microsoft Sample spListCollection = spWeb.Lists[“ActualAmounttrack”].Items; int itemCount = spListCollection.Count; for (int k = 0; k < itemCount; k++) { SPListItem item = spListCollection[k]; if (IdeaId == item[“Title”].ToString()) { spListCollection.Delete(k); } } Its not Working. Why the above code is not working …

How to install WSS 3.0:Visual Studio 2005 Extensions in Windows XP

Reading Time: 2 minutes Visual Studio 2005 Extensions download from http://www.microsoft.com/downloads/details.aspx?FamilyID=3e1dcccd-1cca-433a-bb4d-97b96bf7ab63&displaylang=en System Requirements Supported Operating Systems: Windows Server 2003; Windows Server 2008 Windows SharePoint Services 3.0 (Basic installation only), or any product built on Windows SharePoint Services 3.0, such as Microsoft Office SharePoint Server 2007 Visual Studio 2005 (Standard Edition, Professional Edition, or Team …

Different Types of Backup and Restore Sites in MOSS 2007

Reading Time: < 1 minute Types of Backup and Restore 1. Site Collection Backup and Restore This is only for Site Collection, using Backup and Restore not possible to backup SubSites. Syntax: Open Command Prompt in Sharepoint installed Server cd C:Program FilesCommon FilesMicrosoft Sharedweb server extensions12BIN Backup stsadm.exe -o backup -url http://sitecollection -filename G:backupfilesbackupirec.dat -overwrite …