|
TechElixir > SharePoint Ninja > Posts > Unhiding the Visual Upgrade in SharePoint 2010
|
7/20/2010If you went ahead and clicked the "Hide Visual Upgrade" button it is kind of pain to get the visual upgrade option enabled. I had to jump into powershell and run the following comands to turn it on for a web site (press enter after each line and replace http://yoursite with the url of your sharepoint site).
$web.UIVersionConfigurationEnabled = 1
$web.Update()
You shoud now be able to see the Visual Upgrade options under Title, Description, and Icon under site settings.
|
|
|
|
|
|
|