A Practical Guide to SharePoint 2013

A Practical Guide to SharePoint 2013
A Practical Guide to SharePoint 2013 - Book by Saifullah Shafiq

Friday, February 19, 2010

Expanding VMware hard disk

Yes, you can increase hard disk size of your VM. It doesn't matter if you have software installed and working on it. Go to Virtual Machine Settings. Under Hardware, select Hard Disk (SCSI) (Device column). On right side, you will see Utilities drop down, open it and select Expand Disk Capacity. Enter size and click Expand button. Expansion process will take some time depending on the new size you entered. expvmsize

Saturday, February 6, 2010

SP2010 Tip: Content Query Web Part missing in SharePoint 2010

If you don't see content query web part listed in the web parts list, this is because you have not enabled "Search Server Web Parts" feature in site collection features. Enable this feature and content query web part will show in the list of web parts.
[caption id="attachment_433" align="alignnone" width="521" caption="content query web part"]content query web part[/caption]

Tuesday, January 26, 2010

Saturday, January 23, 2010

List of SharePoint Templates - Types

RT leonzandman #spsemea More here: http://bit.ly/6UD7ho Full URL: http://blogs.technet.com/araviraj/archive/2008/06/18/sharepoint-templates-types.aspx

SharePoint Template IDs for creating lists, etc using Powershell scripts

Template IDsTaken from Steve Smith's session @ SPSEMEA:
[caption id="attachment_424" align="alignnone" width="856" caption="Template IDs"][/caption]

Sandboxed Solutions Via @jthake

Create content db and web application with PS script

#spsemea #sp2010 @ssmith

$db=new-contentdatabase -name "sps_evolution" -webapplication http:///corp.trainsbydave.com; new-spsite-url http://bit.ly/6eeXcT  -name "e site" -description "description here" -owneralias "domain\user" -contentdatabase $db -template "STS#0"

Taken from Steve Smith's session @ SPSEMEA