mercredi 10 juillet 2013

SharePoint 2013 , change branding text content

Purpose

You can easily change the SharePoint branding text that appear in the left corner of you site thanks to this powershell code

PowerShell Snippet

Add-PSSnapin Microsoft.SharePoint.PowerShell -erroraction SilentlyContinue
$webApp = Get-SPWebApplication http://serveurSP
$webApp.SuiteBarBrandingElementHtml = "Larry's Microsoft Technologies Blog"
$webApp.Update()


 Following this example you can also change the background color using CSS :
/* Modification couleur de la barre d'application */
/*Modification de la couleur du texte de la barre d'application */
#suiteBarLeft
{
background-color: rgb(229,226,221);
color: rgb(0,0,0);
font-weight:bold;
padding-left:5px;
}
This is the final result with suite bar color modification and brand text changing.


 

lundi 17 juin 2013

See all MSDN articles with Silverlight Pivot Viewer control

Affichage des articles MSDN sous forme d'un contrôle Pivot Viewer


Voici une petite page bien sympathique pour retrouver les articles MSDN, j'attire plus particulièrement votre attention sur la recherche (textbox en haut à gauche) qui est très pratique surtout pour rechercher les commandes powershell.

http://www.microsoft.com/resources/Technet/en-us/Office/media/ITProPivotViewer/

 

Package and deploy page layout and master page for SharePoint 2013

There is a lot of new parameters available in the new SharePoint 2013 about page layouts and master page packaging and deployment.

Provision a page layout in sharepoint 2013


A couple of things have changed. The new markup that SharePoint itself uses for provisioning a page layout file looks like this:
Note: you can check this by creating a design package via the new Design Manager, and check the content that has been generated.

Provision a published version 

How to Provision Your Master Pages

For provision master pages, the same approach as discussed above can be used. The only difference will be the properties you're going to provide. The properties that I use in my elements file the following: