powershell Powershell SharePoint下载库中的所有文件。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell Powershell SharePoint下载库中的所有文件。相关的知识,希望对你有一定的参考价值。
$web=Get-SPWeb http://thesound/Dept/marketing
$DownloadPath = "C:\Temp"
$list = $web.Lists['Department Photos']
#$web.Lists.Title
$items = $list.items
foreach ($item in $items)
{
$item.URL
$spFile = $web.GetFile($item.URL)
$spContent = $spFile.OpenBinary()
$spTempFile = $DownloadPath + "\" + $item.Name
[System.IO.File]::WriteAllBytes($spTempFile,$spContent)#>
}
$web = $Web=Get-SPWeb http://portal.opwftg.com/sites/OPWSS
$DownloadPath = "E:\Temp"
$list = $web.Lists['List Template Gallery']
#$web.Lists.Title
$items = $list.items
foreach ($item in $items)
{
$item.URL
$spFile = $web.GetFile($item.URL)
$spContent = $spFile.OpenBinary()
$spTempFile = $DownloadPath + "\" + $item.Title + ".stp"
[System.IO.File]::WriteAllBytes($spTempFile,$spContent)
}
以上是关于powershell Powershell SharePoint下载库中的所有文件。的主要内容,如果未能解决你的问题,请参考以下文章
Powershell 和 Ruby 中不同的 SHA1 哈希结果
text 用于检查sha-256下载的PowerShell脚本
用PowerShell的命令行检查文件的校验MD5 SHA1 SHA256
Windows下计算文件MD5和SHA256等摘要的方法(利用PowerShell)
如何将 powershell 中文件的 SHA256 哈希值与已知值进行比较?附加问题
win10 powershell 验证下载的包的MD5/sha1的签名值