powershell 此脚本提供已启用限制的Web应用程序中的所有列表。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 此脚本提供已启用限制的Web应用程序中的所有列表。相关的知识,希望对你有一定的参考价值。

$webapp = 'http://spsvde001'

$count = 0

# Catch already activated error and supress it. Let all other errors through
Get-SPWebApplication $webapp | Get-SPSite -Limit All | ForEach-Object {
    foreach($web in $_.AllWebs) 
    {
        $listCounter = $web.Lists.Count
        for($i=0;$i -le $listCounter;$i++)
        {
            $list = $web.Lists[$i]
            if($list.EnableThrottling -eq $false -and $list.Title -ne "User Information List")
            {
                $count++
                Write-Host $web.URL "||" $list.Title
            }
        }
   $web.Dispose()
   }
}

Write-Host
Write-Host "Total:" $count

以上是关于powershell 此脚本提供已启用限制的Web应用程序中的所有列表。的主要内容,如果未能解决你的问题,请参考以下文章

通过 powershell 脚本避免微软登录弹出窗口

PowerShell脚本授权最佳实践

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

EventHub 通过 powershell 启用防火墙

Powershell调用webrequest不起作用

powershell Powershell脚本,用于在Windows中启用自然滚动