Posts

Project Server 2013 How To Videos

Project Server 2013 How to Videos .

SharePoint 2013 How To

Build apps for SharePoint   Install SharePoint 2010   Maintain SharePoint 2010   Train SharePoint end users   SharePoint SDKs   SharePoint developer training SharePoint developer videos   SharePoint IT pro training   SharePoint IT pro videos   Open specifications   SharePoint protocols   Open Specifications Interactive Pivot  

Install and configure Project Server 2013

Image
Video Demonstration of Installation & Configuration of Project Server 2013 , Deployment of Project Web App , Deploy Project Web App in an existing site collection TechNet articles about installing and configuring Project Server 2013 The following articles about installing and configuring Project Server 2013 are available to view online. Writers update articles on a continuing basis as new information becomes available and as users provide feedback. Content Description Deploy Project Server 2013 to a server farm environment A list of articles about how to install Project Server 2013 in a server farm environment. Upgrade to Project Server 2013 A list of articles about how to upgrade to Project Server 2013. Install Project Server 2013 to a stand-alone computer Set up a simple Project Server 2013 installation for demonstration purposes. TechNet articles about deploying Project Server 2013 to a server farm environment The following articles about deploying Project Server 2013 to a serve

Hardware and software requirements for SharePoint 2013

SharePoint Foundation 2013 Deployment type and scale RAM Processor Hard disk space Single server with a built-in database or single server that uses SQL Server Development or evaluation installation of SharePoint Foundation 2013 8 GB 64-bit, 4 cores 80 GB for system drive Web and application server in a two-tier farm Pilot, user acceptance test, or production deployment of SharePoint Foundation 2013 8 GB 64-bit, 4 cores 80 GB for system drive database servers in a two-tier farm Pilot, user acceptance test, or production deployment of SharePoint Foundation 2013 8 GB 64-bit, 4 cores 80 GB for system drive SharePoint Server 2013 Deployment type and scale RAM Processor Hard disk space Single server with a built-in database or single server that uses SQL Server Development or evaluation installation of SharePoint Server 2013 24 GB 64-bit, 4 cores 80 GB for system drive Web server or a

How to change value of Created By field or Modified By field?

You can change Created By column value or Modified By column value. To do this use below given code :             using (SPSite site = new SPSite(SPContext.Current.Web.Url))             {                 using (SPWeb web = site.OpenWeb())                 {                     SPList list = web.Lists.TryGetList("MyList");                     SPListItem item = list.GetItemById(1);                     web.AllowUnsafeUpdates = true;                     //You can use user id (integer)                      //item[SPBuiltInFieldId.Author] = SPContext.Current.Web.CurrentUser.ID;                     //You can use SPUser object also.                     item[SPBuiltInFieldId.Author] = SPContext.Current.Web.CurrentUser;                     item.Update();                     web.AllowUnsafeUpdates = false;                 }             }

How to find missing web part?

To find missing web parts in SharePoint we have many ways. Here I am going to show you 2 ways. With use of STSADM command :                stsadm.exe -o enumallwebs -includewebparts > c:\bkup\aa.txt                  This command will send the output in “C:\bkup\aa.txt:” file & where you can find “Status="Missing Type”. Basically this file will contain data in xml format & you will get information about the all sites you have with url & id. With use of SQL statement : a.        Use [WSS_Content] b.       SELECT SiteId , AllDocs . DirName as SiteUrl , AllDocs . LeafName as PageUrl , AllDocs . DirName + '/' + AllDocs . LeafName as Url , WebParts . tp_DisplayName as DisplayName FROM [dbo] . [AllDocs] INNER JOIN [dbo] . [WebParts] ON [AllDocs] . Id = [WebParts] . [tp_PageUrlID] WHERE [WebParts] . [tp_WebPartTypeId] = '8d6034c4-a416-e535-281a-6b714894e1aa' ORDER BY Url '8d6034c4-a416-e535-281a-6b714894e1aa

SharePoint Developer Interview Questions – Answers

Note: A LOT of these questions are specific to SharePoint 2007, and won't have applicability for SharePoint 2003! 1) What are the two base classes a WebPart you are going to use within SharePoint 2007 can inherit from? There are two base classes that a WebPart which is going to be consumed by SharePoint can inherit from, either the SharePoint WebPart Base class or the ASP.NET 2.0 WebPart base class. When inheriting from the SharePoint WebPart Base class your derived WebPart class will inherit from Microsoft.SharePoint.WebPartPages.WebPart. When inheriting from the ASP.NET 2.0 WebPart base class your derived WebPart class will inherit from System.Web.UI.WebControls.WebParts.WebPart. It is considered good practice to use the ASP.NET WebPart base class since the old base class is meant for backwards compatibility with previous version of SharePoint, however there are four exception when it is better to leverage functionality from the SharePoint WebPart base class: Cross page