diff --git a/core/modules/system/src/Form/ModulesListForm.php b/core/modules/system/src/Form/ModulesListForm.php
index 28ff7ef4cc..dad1569a87 100644
--- a/core/modules/system/src/Form/ModulesListForm.php
+++ b/core/modules/system/src/Form/ModulesListForm.php
@@ -256,6 +256,10 @@ protected function buildRow(array $modules, Extension $module, $distribution) {
       '#disabled' => (bool) $module->status,
     ];
 
+    if ($module->status) {
+      $row['enable']['#attributes']['title'] = t('Disable this module by visiting the Uninstall page.');
+    }
+
     // Disable the checkbox for required modules.
     if (!empty($module->info['required'])) {
       // Used when displaying modules that are required by the installation profile
