我是SharePoint 2010的新手,我正试图获得一个类似于此的报告。
组名|使用子网站或站点组组创建日期|集团所有者
过去三天我尝试使用谷歌。到目前为止,我没有取得任何成就。
请告知。
答案 0 :(得分:0)
如果您有权访问运行SharePoint的其中一个Web服务器,则可以通过PowerShell生成该类型的报告,例如通过SharePoint 2010 Management Shell。
$web = get-spweb "http://examplesite/exampleweb"
$arr = @()
$web.SiteGroups | %{ $obj = new-object psobject -property @{Name=$_.Name; ParentWeb=$_.ParentWeb; Owner=$_.Owner }; $arr += $obj; }
$arr | Export-Csv -path "C:\Users\username\Desktop\SiteGroups.csv" -NoTypeInformation
请注意,这并不包括组创建日期。