All Things Technical
Lead consultant at Bae llc. http://www.Baellc.net
Thursday, October 31, 2013
Powershell to list all webs with UI version 3 for sharepoint 2013 upgrade purpose
Add-Pssnapin Microsoft.SharePoint.Powershell
$s | Get-SPSite -limit all | ForEach-Object {$site =$_;
$site | Get-SPWeb -limit all | ForEach-Object {
if($_.UIVersion -eq 3)
{
write-host "UI version : " $_.UIVersion $_.Url
}
}}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment