Ever wanted to check which modules are listed in your Magento 2 store? Simply run the below commands, and it will display Magento 2 module list!
Admin would want to uninstall annoying modules that are not useful anymore. The list of such modules can be sorted from the list of the installed extensions. We’ll also see how to enable or disable modules in Magento 2 further in the post. The method can also be used when two modules are conflicting, and one of them is to be disabled.
Steps to display Magento 2 module list:
- Log in to Magento 2 installation root folder: use SSH via Terminal or Putty.cd;
- Run the below command to get a full list of enabled or disabled Magento 2 extensions/modules:
php bin/magento module:status
You’ll get the Magento 2 module list as follows:

How to enable/disable or uninstall a Magento 2 module:
Magento 2 allows to enable or disable Magento-provided modules or any third-party module that is currently available. See the commands for the same here:
- Command to enable a Magento 2 module:
php bin/magento module:enable Meetanshi_Deleteaccount
- Command to disable a Magento 2 module:
php bin/magento module:disable Meetanshi_Deleteaccount
- Command to uninstall a Magento 2 module:
php bin/magento module:uninstall Meetanshi_Deleteaccount
Go on and check the Magento 2 module list. Get rid of the unwanted extensions now!
Thank You.