获取网站集列表 - Powershell

时间:2013-11-19 20:23:59

标签: sharepoint powershell

我使用以下PowerShell脚本获取Web应用程序的网站集列表。它可以工作但是在25或30个字母之后的网址列。对此有何解决方法?

Get-SPSite -WebApplication http://myCompany.bofa.com:9966 -Limit All | `
  Select -ExpandProperty AllWebs | select url, Title, Created > c:\mysite.txt

我输出到文件或屏幕的地方相同的结果,其中网址在25或30个字符后切断。

结果如下所示:

http://mycompany.bofa.co.... Site Title   8/12/2012 3:49:20 PM

1 个答案:

答案 0 :(得分:3)

试试这个:

Get-SPSite -WebApplication http://myCompany.bofa.com:9966 -Limit All | 
  Select -ExpandProperty AllWebs | 
ft url, Title, Created -auto > c:\mysite.txt

如果还不够,你可以试试这个:

Get-SPSite -WebApplication http://myCompany.bofa.com:9966 -Limit All | 
  Select -ExpandProperty AllWebs | 
ft url, Title, Created -auto | 
out-string -width 1024 > c:\mysite.txt # 1024 can me more or less depends the length you need