You can use MagiskBoot from a root shell on your device or from a PC after extracting the binary from the Magisk APK.
Install via terminal using brew install android-platform-tools or download and extract. 2. Set Up the Device adb fastboot magisk module repack
(Conditional)
adb-fastboot-repack/ ├── META-INF/ │ └── com/ │ └── google/ │ └── android/ │ ├── update-binary │ └── updater-script ├── system/ │ └── bin/ │ ├── adb │ └── fastboot ├── module.prop └── service.sh Use code with caution. 1. Creating module.prop You can use MagiskBoot from a root shell
Open the module.prop file and add the following details to ensure Magisk recognizes it: It's by far the simplest and fastest way
#!/system/bin/sh # This runs in the background after boot sleep 30 resetprop -n net.dns1 8.8.8.8 log -t Magisk "Repacked module: DNS set to Google."
Microsoft's winget tool is the built-in package manager for Windows 10/11. It's by far the simplest and fastest way to get the official Android Platform Tools (which include both ADB and Fastboot) on your system.