powershell 这将使用PowerShell从库中删除SharePoint中特定文件夹和子文件夹中的文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 这将使用PowerShell从库中删除SharePoint中特定文件夹和子文件夹中的文件相关的知识,希望对你有一定的参考价值。
if(-not(Get-PSSnapin | where { $_.Name -eq "Microsoft.SharePoint.PowerShell"}))
{
Add-PSSnapin Microsoft.SharePoint.PowerShell;
}
$site = Get-SPweb "http://portal.opwftg.com/sites/OPWSS/Teams/OCM/Testing9-10/Testing9-10"
$mList=$site.Lists["PublicFolderExport"]
foreach($f in $mlist.Folders)
{
if($f.Url.IndexOf("/2014/") -gt -1)
{
##Write-Host $f.Name
##write-Host $f.Url
for($i = $f.Folder.Files.Count-1;$i -gt -1;$i--)
{
$u = $f.Folder.Files[$i].Url
$f.Folder.Files.Delete($u)
##$u
}
}
}
$site.dispose()
以上是关于powershell 这将使用PowerShell从库中删除SharePoint中特定文件夹和子文件夹中的文件的主要内容,如果未能解决你的问题,请参考以下文章
powershell 这将删除Web应用程序并离开内容数据库。这也是用于记录powershell a的PowerShell Transcripts的示例
powershell 这将获取SharePoint中使用InfoPath的所有实例。图书馆和名单
powershell 这将获得特定的列表字段属性。使用问号的好例子?作为一个快捷方式。
powershell 这将使用模板在SharePoint中创建子站点。请注意,在创建网站后应用模板
powershell 这将设置给定参数的托管属性
powershell 这将获取用户所属的SharePoint组,以用于给定站点。这使用用户的登录名进行比较。