Link to home
Start Free TrialLog in
Avatar of MisUszatek
MisUszatekFlag for United States of America

asked on

Missing Visual Upgrade

After a database attach migration from SP2007 to SP2010 I don't have a Visual Upgrade option under 'Site Actions' menu (top-level site). It was a publishing site under SP2007 and had some customizations done by someone else using Visual Studio. When I go to "Modify All Site Settings" I have the 'Visual Upgrade' link under 'Site Collection Administration' section with two options: Hide Visual Upgrade Options and Apply the New User Interface to All Sites.

I also found a Powershell code to unhide visual upgrade if it was hidden but that didn't work either.

My question: is it still possible to show that option on all sites in that site collection as I want to migrate to the new interface site by site?

I migrate another site collection with a separate database from the old site and it has Visual Upgrade available.
ASKER CERTIFIED SOLUTION
Avatar of KoenVosters
KoenVosters
Flag of Belgium image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of MisUszatek

ASKER

@KoenVosters
I have UI version 3 on all sites. And UI configuration enabled on a root only. At this point I don't want to upgrade - just preview first.
Your UIVersionConfigurationEnabled is probably set to false

use
$db = Get-SPContentDatabase WSS_Whatever

$db.Sites | Get-SPWeb -limit all | ForEach-Object {$_.UIVersionConfigurationEnabled = $true; $_.update()}
In my case it didn't work but thanks for the effort.