SharePoint don't give you groups for SPUser if the right is given by an active directory group.
You have to merge groups specificied directly using user login in sharepoint groups and active directory groups.
private static List<SPGroup> GetAllUserGroups(SPUser user)
{
List<SPGroup> groups = new List<SPGroup>();
//Get groups from SharePoint
foreach (SPGroup spGroup in user.Groups)
{
groups.Add(spGroup);
}
string userLogin = user.LoginName;
Du SharePoint, du silverlight, pas mal de C#, un peu de powershell et surtout du Microsoft
vendredi 13 décembre 2013
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/
Inscription à :
Articles
(
Atom
)