powershell 获取SharePoint数据库信息并格式化输出。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 获取SharePoint数据库信息并格式化输出。相关的知识,希望对你有一定的参考价值。
# ----------------------------------------------
# Author: Romain Blanchard
# Date: 26.06.2012
# Description: Get SharePoint Database information and format the output.
# ----------------------------------------------
cls
write-host ""
write-host "---------- Sharepoint Database status ----------" -ForegroundColor Yellow
[System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SqlServer.SMO") | out-null
$SMOserver = New-Object ('Microsoft.SqlServer.Management.Smo.Server') -argumentlist rexpor-sql01-pprd
Get-SPContentDatabase | Select-Object Name, WebApplication, Status, @{Name="Size";Expression={"{0:N1}MB" -f($_.DiskSizeRequired/1mb)}}, @{Name="LogSize";Expression={"{0:N1}MB" -f(($SMOserver.Databases[$_.Name].logfiles | measure-object -property Size -sum).Sum/1024)}} |
Format-Table
以上是关于powershell 获取SharePoint数据库信息并格式化输出。的主要内容,如果未能解决你的问题,请参考以下文章
powershell PS Sharepoint获取Sharepoint对象模型的客户端设置
powershell Powershell脚本,用于获取SharePoint站点中特定列表的所有详细信息
powershell 获取sharepoint列表字段列表
powershell 此powershell脚本使用字段名称获取所有值是sharepoint列表中的字段
powershell 这将获取SharePoint网站中用于创建网站的模板
powershell SharePoint PowerShell,它获取作为字符串的列表项并将其转换为数字,然后更新列表项。