Step 1: Connect to the root of your Magento 2 installation (the folder contains the extension folder) via SSH. Check the list of modules and their enable/disable statuses using the command:
php bin/magento module:status
Step 2: Once the needed module is found, apply the commands to disable it:
php bin/magento module:disable Magentomobileshop_Bannersliderapp –clear-static-content
php bin/magento module:disable Magentomobileshop_Connector –clear-static-content
php bin/magento module:disable Magentomobileshop_Deleteorder
–clear-static-content
php bin/magento module:disable Magentomobileshop_PayuApp –clear-static-content
php bin/magento module:disable Magentomobileshop_Premium –clear-static-content
php bin/magento module:disable Magentomobileshop_Pushnotification –clear-static-content
php bin/magento module:disable Magentomobileshop_Sociallogin –clear-static-content
php bin/magento setup:upgrade
Step 3: Remove the module files using the command:
cd app/code/Magentomobileshop/
rm -rf Bannersliderapp
rm -rf Connector
rm -rf Deleteorder
rm -rf PayuApp
rm -rf Premium
rm -rf Pushnotification
rm -rf Sociallogin
Please, note that if you use several extensions from the same provider, you are risking to remove the shared module (or dependency pack), which serves as a base for all the extensions from the provider. So, make sure the extension is not shared.
Step 4: Refresh the website home page. Now the Magento 2 uninstall module process is completed successfully!