Skip to content

Latest commit

 

History

History
70 lines (45 loc) · 1.54 KB

File metadata and controls

70 lines (45 loc) · 1.54 KB

Windows 11 Running On A Lg V50S

Running Windows on LG V50S

Uninstalling Windows

Prerequisites

Restore boot backups

Go to EDL mode and use Qfil to restore your boot_a and boot_b backups

Boot TWRP on the device

Use the Magisk module linked above if you don't already have it installed

Unmount all partitions

Go to mount in TWRP and unmount all partitions

Run parted

Put parted in your platform tools folder, then run

adb push parted /cache && chmod 755 /cache/parted && /parted /dev/block/sda

Delete Windows Partition

Use print all to make sure that partition 32 is Windows

rm 32

Delete ESP Partition

Use print all to make sure that partition 31 is ESP

rm 31

Resize userdata Partition

Use print all to make sure that partition 30 is userdata

resizepart 30
126GB

Exit Parted

quit

Format data

Go to the Wipe menu in TWRP and press Format Data, then type yes

Check if Android boots

Reboot your device and check if Android boots

Finished!