how to Uninstall Magisk Module without TWRP Recovery

Ravi Yadav

November 7, 2025

5/5 - (1 vote)

Magisk is one of the best tools for rooting Android devices, but sometimes a bad module can turn your device into a nightmare.

If your phone gets stuck in a bootloop or can’t boot into the system, removing that module becomes necessary. But what if you don’t have TWRP? No worries—you’re still covered.

In this guide, you’ll learn several easy methods to uninstall any Magisk module without using TWRP.

Methods to Uninstall Magisk Module Without TWRP

Method 1: Using Magisk App (If Device Boots)

If your device boots normally, this is the easiest way.

Steps

  1. Open the Magisk App.
  2. Go to the Modules section.
  3. Find the module you want to uninstall.
  4. Tap Remove.
  5. Reboot your device.

Done!

Method 2: Using Magisk’s Built-in Safe Mode

If the device is stuck in a bootloop, Magisk has a built-in rescue mode.

Steps

  1. When the device starts booting, hold down the Volume Down button repeatedly.
  2. This will boot Magisk into Safe Mode.
  3. All modules will be temporarily disabled.
  4. Now open the Magisk app and uninstall the problematic module.

Method 3: Remove Module via ADB

If your device doesn’t boot completely but you have ADB access, this method works perfectly.

Requirements

  • A PC or a laptop
  • USB cable
  • ADB installed on PC
  • USB debugging was previously enabled

Steps

  1. Connect your device to the PC.
  2. Open Command Prompt or Terminal.
  3. Type: adb shell
  4. Navigate to the modules folder: cd /data/adb/modules
  5. List modules: ls
  6. Delete the module folder you want to uninstall: rm -rf modulename
  7. Reboot: reboot

Method 4: Using Custom Recovery File Manager (No TWRP)

If you don’t have TWRP but you do have another recovery (like OrangeFox or PitchBlack), you can remove modules using the file manager.

Steps

  1. Boot your device into the custom recovery.
  2. Open File Manager.
  3. Go to: /data/adb/modules/
  4. Delete the folder of the module you want to remove.
  5. Reboot your phone.

Method 5: Using Magisk Module Uninstaller Zip

This is the easiest fix if you’re stuck in a bootloop and have no ADB.

Steps

  1. Download the Magisk Module Uninstaller ZIP (safe version).
  2. Boot into any custom recovery (stock recovery won’t work).
  3. Flash the Uninstaller ZIP.
  4. It will remove all installed modules.
  5. Reboot your device.

Conclusion

Removing a buggy Magisk module without TWRP is easier than most people think. Whether your device boots or is stuck in a bootloop, you can fix it using ADB, Magisk Safe Mode, custom recovery, or an uninstaller ZIP. Always use trusted modules and keep Magisk updated to avoid future issues.

3 thoughts on “how to Uninstall Magisk Module without TWRP Recovery”

Leave a Comment