gpt4 book ai didi

sharepoint - 获取网站集列表 - Powershell

转载 作者:行者123 更新时间:2023-12-04 01:07:05 26 4
gpt4 key购买 nike

我正在使用以下 PowerShell 脚本获取 Web 应用程序的网站集列表。它有效,但 url 列在 25 或 30 个字母后被削减。有什么解决办法吗?

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

我输出到文件或屏幕的结果相同,其中 url 在 25 或 30 个字符后被截断。

结果是这样的:

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

最佳答案

试试这个:

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

关于sharepoint - 获取网站集列表 - Powershell,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20081304/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com