powershell 此SharePoint PowerShell为SharePoint中的每个内容数据库获取内容数据库大小(以GB为单位)。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 此SharePoint PowerShell为SharePoint中的每个内容数据库获取内容数据库大小(以GB为单位)。相关的知识,希望对你有一定的参考价值。

$size = 0
foreach ($db in Get-SPContentDatabase)
{
    $size = $size + $db.DiskSizeRequired
}
$cdbs = "{0:N2}" -f($size/1gb)
$cdbs

以上是关于powershell 此SharePoint PowerShell为SharePoint中的每个内容数据库获取内容数据库大小(以GB为单位)。的主要内容,如果未能解决你的问题,请参考以下文章

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

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

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

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

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

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