Friday, February 3, 2012

Visual Upgrade in 2010 , On all sites in a web application

Upgrade all the sites in a web application in SharePoint 2010 . You can Use this SharePoint PowerShell code to accomplish

$SPwebApp = Get-SPWebApplication "http://SP2010.com"
 
    foreach ($SPsite in $SPwebApp.Sites)
    {
       foreach($SPweb in $SPsite.AllWebs)
        {
         
           $SPweb.UIVersion = 4
       $SPweb.Update()
    write-host $spweb.url
        }
    }
read-host  #just to pause

Users cannot see the checked out files in the folder/ library

I Came across a Issue today wherein the user opened a ticket for the below issue Issue : Users cannot see the checked out files in the fo...