SharePoint 2010: Création et Modification d'une Document Library et ajout des documents (fr-FR)

SharePoint 2010: Création et Modification d'une Document Library et ajout des documents (fr-FR)

Creation d’une document library

Ouvrez Power Shell avec les droits Administrateur et tapez les commandes suivantes:

$spWeb = Get-SPWeb -Identity http://Monserveur
$listTemplate = [Microsoft.SharePoint.SPListTemplateType]::DocumentLibrary
$spWeb.Lists.Add("GokanDocuments","Information by Gokan",$listTemplate)

Grace à ces 3 lignes de commande

  • On sélectionne le site http://MonServeur
  • On choisit le type de « Document Library »
  • Et la Document Library s’appelle MyDocumentsName

 



Upload fichier vers Document Library

On sélectionne le fichier que l’on souhaite ajouter vers la document Library

$file = Get-ChildItem C:\Documents\MyDoc.docx
 
$spFileCollection.Add("MyDocumentsName/MyDoc.docx",$file.OpenRead(),$false)

Cet exemple vous montre comment uploadé un seul fichier dans une Document Library en SharePoint 2010. Pour plusieurs fichier utiliser ce code-là.

Get-ChildItem C:\Documents -filter “*.docx” | ForEach { $spFileCollection.Add(“MyDocumentsName/$($_.Name)”,$_.OpenRead(),$true)}

Pour prendre tous les fichiers remplacer le *docx par *.*


Modifier une Document Library

On sélectionne notre Document Library

$spDocumentLibrary = $spWeb.GetList("MyDocumentsName")
On peut changer la description
$spDocumentLibrary.Description = “Lots of Documents”

Si l’on veut voir la document Library dans le quickLaunch

$spDocumentLibrary.OnQuickLaunch = "True"

Apres tout ça, on n’oublie pas de update la Document Library

$spDocumentLibrary.Update()

Leave a Comment
  • Please add 1 and 7 and type the answer here:
  • Post
Wiki - Revision Comment List(Revision Comment)
Sort by: Published Date | Most Recent | Most Useful
Comments
  • Gokan Ozcifci edited Revision 3. Comment: Formatting  

  • Gokhan Ozcifci edited Revision 2. Comment: New Account

  • Craig Lussier edited Revision 1. Comment: added fr-FR to tags and title

Page 1 of 1 (3 items)
Wikis - Comment List
Sort by: Published Date | Most Recent | Most Useful
Posting comments is temporarily disabled until 10:00am PST on Saturday, December 14th. Thank you for your patience.
Comments
  • Craig Lussier edited Revision 1. Comment: added fr-FR to tags and title

  • Gokhan Ozcifci edited Revision 2. Comment: New Account

  • Gokan Ozcifci edited Revision 3. Comment: Formatting  

Page 1 of 1 (3 items)