diff --git a/core/Updates/2.16.2-b2.php b/core/Updates/2.16.2-b2.php
new file mode 100644
index 0000000000000000000000000000000000000000..becda51b8ad3553d81ccc0bc5de108d355c09d6c
--- /dev/null
+++ b/core/Updates/2.16.2-b2.php
@@ -0,0 +1,33 @@
+<?php
+/**
+ * Piwik - free/libre analytics platform
+ *
+ * @link http://piwik.org
+ * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
+ *
+ */
+
+namespace Piwik\Updates;
+
+use Piwik\Updater;
+use Piwik\Updates as PiwikUpdates;
+
+/**
+ * Update for version 2.16.2-b2.
+ */
+class Updates_2_16_2_b2 extends PiwikUpdates
+{
+
+    public function doUpdate(Updater $updater)
+    {
+        $pluginManager = \Piwik\Plugin\Manager::getInstance();
+        $pluginName = 'UserId';
+
+        try {
+            if (!$pluginManager->isPluginActivated($pluginName)) {
+                $pluginManager->activatePlugin($pluginName);
+            }
+        } catch (\Exception $e) {
+        }
+    }
+}
diff --git a/plugins/UserId/lang/en.json b/plugins/UserId/lang/en.json
index ec320c40793f1f91a756329c9f36f378b5c928d0..40d9f3660dd1a904ba0805b5a85cbba8426cdce7 100644
--- a/plugins/UserId/lang/en.json
+++ b/plugins/UserId/lang/en.json
@@ -1,6 +1,7 @@
 {
     "UserId": {
         "UserId": "UserId",
-        "UserReportTitle": "Users"
+        "UserReportTitle": "Users",
+        "PluginDescription": "Shows user reports"
     }
 }
\ No newline at end of file