Du SharePoint, du silverlight, pas mal de C#, un peu de powershell et surtout du Microsoft
vendredi 6 septembre 2013
Difference between SharePoint 2013 versions
Note: Purple YES equals a Enterprise only feature. |
Developer features | SharePoint Foundation 2013 | SharePoint Server 2013—Standard Edition | SharePoint Server 2013—Enterprise Edition |
---|---|---|---|
Access Services | No | No | Yes |
App Catalog (SharePoint) | No | Yes | Yes |
App Deployment: Autohosted Apps | No | No | No |
jeudi 11 juillet 2013
Découvrez SharePoint ! / Discover SharePoint !
Découvrez SharePoint et l'étendue des fonctionnalités disponible sur
http://www.discoversharepoint.com/
http://www.discoversharepoint.com/
Store, Sync, And Share Your Content
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;
}
/*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;
}
lundi 8 juillet 2013
Installation and configuration of SharePoint 2013 Workflow feature
This post explain with video how to install and configure SharePoint 2013 Workflow (new server)
http://technet.microsoft.com/en-us/library/dn201724(v=office.15).aspx
http://technet.microsoft.com/en-us/library/dn201724(v=office.15).aspx
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.
A couple of things have changed. The new markup that SharePoint itself uses for provisioning a page layout file looks like this:
XHTML
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:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<File Path="PageLayouts\My-Article-Page.aspx" Url="My-Article-Page.aspx" Type="GhostableInLibrary" Level="Draft">
<Property Name="ContentTypeId" Value="0x01010007FF3E05 7FA8AB4AA42FCB67B453FFC100 E214EEE741181F4E9F7ACC43278EE811003A22BFC19B81124C923710F952434E5E" />
<Property Name="FileLeafRef" Value="My-Article-Page.aspx" />
<Property Name="MasterPageDescription" Value="This is my custom Article page for SharePoint 2010" />
<Property Name="UIVersion" Value="15" />
<Property Name="Title" Value="My Custom Article Page" />
<Property Name="PublishingHidden" Value="FALSE" />
<Property Name="PublishingAssociatedContentType" Value=";#Article Page;#0x010100C568DB52D9D0A14D9B2FDCC96666E9F2007948130EC3DB064584E219954237AF3900242457EFB8B24247815D688C526CD44D;#" />
<Property Name="HtmlDesignAssociated" Value="FALSE" />
<Property Name="ContentType" Value="Page Layout" />
<Property Name="_ModerationStatus" Value="3" />
<Property Name="FileDirRef" Value="_catalogs/masterpage" />
<Property Name="FSObjType" Value="0" />
</File>
|
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
<File Path="PageLayouts\My-Article-Page.aspx" Url="My-Article-Page.aspx" Type="GhostableInLibrary" Level="Draft">
<File Path="PageLayouts\My-Article-Page.aspx" Url="My-Article-Page.aspx" Type="GhostableInLibrary" Level="Published">
|
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:
1
2
3
4
5
6
7
8
|
<File Url="your-master-page.master" Type="GhostableInLibrary" Level="Published" ReplaceContent="true">
<Property Name="ContentTypeId" Value="0x01010500BF544AFE46ACEF42B8DA22C9CE89526E" />
<Property Name="UIVersion" Value="15" />
<Property Name="Title" Value="Your Master Page Title" />
<Property Name="ContentType" Value="Master Page" />
<Property Name="_ModerationStatus" Value="0" />
<Property Name="FSObjType" Value="0" />
</File>
|
Inscription à :
Articles
(
Atom
)