powershell 此SharePoint Powershell脚本会检查网站集和Web应用程序中的所有网站,以查找特定的Web模板

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 此SharePoint Powershell脚本会检查网站集和Web应用程序中的所有网站,以查找特定的Web模板相关的知识,希望对你有一定的参考价值。

$webApplicationName = "https://xxxx"
$cnt = 0
$path = "f:\temp\webTemplates.txt"

$wa = Get-SPWebApplication $webApplicationName

foreach($site in $wa.Sites)
{
    $site.Url
    foreach ($web in $site.AllWebs) 
    {
	$web.Url
	if($web.WebTemplate -like "HOMEPORTNWPROJ"){
		$web.Url | out-file $path -append
	}
    }#end foreach web
}#end for each site

以上是关于powershell 此SharePoint Powershell脚本会检查网站集和Web应用程序中的所有网站,以查找特定的Web模板的主要内容,如果未能解决你的问题,请参考以下文章

powershell 此PowerShell脚本列出了SharePoint列表中的所有字段内部名称。

powershell 此powershell脚本使用字段名称获取所有值是sharepoint列表中的字段

powershell 此脚本将下载所有SharePoint 2013必备文件。

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

powershell 此递归PowerShell脚本从SharePoint中删除网站及其所有子网站。这消除了无法进行del的问题

powershell 此SharePoint PowerShell从Web应用程序中的所有站点获取使用特定内容类型的列表的URL。