powershell 此脚本更改由修改日期和修改日期的SharePoint项目。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 此脚本更改由修改日期和修改日期的SharePoint项目。相关的知识,希望对你有一定的参考价值。

#Add the SharePoint snapin
Add-PSSnapin Microsoft.SharePoint.Powershell -ea SilentlyContinue
 
#set the web url and the list name to work upon
$url = "http://spsvde001/tools/cats"
$listName = "CATS Items"
$id = 16452
 
#Get the appropriate list from the web
$web = get-SPWeb $url
$list = $web.lists[$listName]
 
#Get the file using the filename
$item = $list.Items | ? {$_.ID -eq $id}

$author = $item["Author"].tostring()
$created = $item["Created"]
$modified = $item["Editor"].tostring()
$modifiedDate = $item["Modified"] -f "dd-MM-yyyy"

#Print out current Created by and Created date
write-host "item created by $author on $created"
 
#Print out current Modified by and Modified date
write-host "item last modified by $modified on $modifiedDate"
 
#Set the modified on values
$dateToStore = Get-Date "2/25/2015"
$item["Modified"] = $dateToStore

#Store changes without overwriting the existing Modified details.
$item.UpdateOverwriteVersion()

以上是关于powershell 此脚本更改由修改日期和修改日期的SharePoint项目。的主要内容,如果未能解决你的问题,请参考以下文章

PowerShell收集服务器日检报告,并发邮件给管理员脚本修改应用于生产环境实例

修改 PowerShell 脚本以更改 Outlook 的默认字体类型和大小

如何使用 HIVE 以其他格式更改或修改日期列值

无法复制元数据

更改由AngularJs从Chrome内容脚本动态创建的包装选择的值

PowerShell - 读取 SharePoint 文件属性(修改日期等)