如何使用powershell更改文件的摘要属性信息集

时间:2011-05-18 23:44:35

标签: powershell

如果我有任何文件并且我想要查找该文件的摘要属性信息集我该如何做,我主要关注这个属性“标题,主题,类别,关键字,评论,来源,作者,修订否“。

“”enter image description here

3 个答案:

答案 0 :(得分:3)

这个怎么样:

 # Load SharePoint library
 [system.reflection.assembly]::LoadWithPartialName("Microsoft.Sharepoint")

 # Connect to the site collection http://SP2010 and store the object in the $site variable
 $site = New-Object Microsoft.SharePoint.SPSite("http://SP2010")

 # Connect to the root site in the site collection and store the object in $root
 $root = $site.rootweb

 # Store the Shared Documents document library in a variable $Docs
 $docs = $root.lists["Shared Documents"]

 # Display all the documents, their titles, names and IDs
 $docs.items | format-table -property title,name,id

 # Updates the title for each item in the list with Name
 $docs.items | ForEach { $_["Title"] = $_["Name"]; $_.Update() }

 # Display all the documents, their titles, names and IDs
 $docs.items | format-table -property title,name,id

这适合我。

答案 1 :(得分:1)

答案 2 :(得分:1)

@ Janki

试着看看这个 - File Property Edit Pro