diff --git a/core/Updates/2.10.0-b7.php b/core/Updates/2.10.0-b7.php
index a44117fc81121cb5ddc2be4a660b98ffefaabcf0..21a5e7b1af10ceb73d2f92ce4380dc1052086a03 100644
--- a/core/Updates/2.10.0-b7.php
+++ b/core/Updates/2.10.0-b7.php
@@ -38,6 +38,13 @@ class Updates_2_10_0_b7 extends Updates
     static function update()
     {
         Updater::updateDatabase(__FILE__, self::getSql());
+
+        $pluginManager = \Piwik\Plugin\Manager::getInstance();
+
+        try {
+            $pluginManager->activatePlugin('Resolution');
+        } catch(\Exception $e) {
+        }
     }
 
 }