Posts

Showing posts from March, 2013

What is Sandbox Solutions in SharePoint 2010?

A good post on what is Sandbox Solution in SharePoint 2010. You must read it. http://geekswithblogs.net/venkatx5/archive/2010/11/23/what-is-sandbox-solutions-in-sharepoint-2010.aspx

Download ebook CSS Text

Download ebook CSS Text Book Description As a web designer, you probably spend more time working with text than any other element. With this concise guide, you'll learn  CSS3  properties for changing the appearance of text without altering the font face-including horizontal and vertical alignment, text transformation, word and letter spacing, text wrapping, and the direction of text flow. This book is an excerpt from the upcoming fourth edition of CSS: The Definitive Guide. When you purchase either the print or the ebook edition of  CSS  Text, you'll receive a discount on the entire Definitive Guide once it's released. Book Details Publisher: O'Reilly Media By: Eric A. Meyer ISBN: 978-1-4493-7374-0 Year: 2013 Pages: 56 Language: English File size: 12.4 MB File format: PDF Download ebook CSS Text

Download ebook Microsoft SharePoint 2013: Designing and Architecting Solutions

Download ebook Microsoft SharePoint 2013: Designing and Architecting Solutions Book Description Determine the best design for your  SharePoint  implementation by gaining a deeper understanding of how the platform works. Written by a team of SharePoint experts, this practical guide introduces the  Microsoft SharePoint 2013 architecture, and walks you through  design considerations for planning and building a custom SharePoint solution. It's ideal for IT professionals, whether or not you have experience with previous versions of SharePoint. Book Details Publisher: Microsoft Press By: Shannon Bray ,  Miguel Wood ,  Patrick Curran ISBN: 978-0-73567-168-3 Year: 2013 Pages: 488 Language: English File size: 54.5 MB File format: PDF Download ebook Microsoft SharePoint 2013: Designing and Architecting Solutions

PowerShell Command to create new site collection

Create a Content Database New-SPContentDatabase -Name  IC_Content_DB  -WebApplication http://sharepoint-demo Note : “IC_Content_DB” :- Name of new content database for new Site Collection “ http://sharepoint-demo ” :-  Name of Web Application where you want to create new site collection with the url http://sharepoint-demo/IC More information about “New-SPContentDatabase” Now create a site collection $template = Get-SPWebTemplate "STS#0" New-SPSite -Url " http://sharepoint-demo/IC " -OwnerAlias " sharepointdemo\gaurav " –ContentDatabase IC_Content_DB -Template $template More information about “New-SPSite”