Advertisement
Guest User

mi 11t pro flash fix

a guest
Dec 13th, 2021
817
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.26 KB | None | 0 0
  1. @echo off
  2. cd %~dp0
  3. set DEVICE=unknown
  4. for /f "tokens=2" %%D in ('platform-tools-windows\fastboot %* getvar product 2^>^&1 ^| findstr /l /b /c:"product:"') do set DEVICE=%%D
  5. if "%DEVICE%" neq "vili" echo This package is for "vili" devices; this is a "%DEVICE%". & exit /B 1
  6.  
  7. set /p CHOICE=You are going to wipe your data and internal storage. It will delete all your files and photos stored on internal storage. Do you agree? (Y/N)
  8. if /i "%CHOICE%" neq "y" exit /B 0
  9.  
  10. platform-tools-windows\fastboot %* set_active a
  11. platform-tools-windows\fastboot %* flash dsp images\dsp.img
  12. platform-tools-windows\fastboot %* flash xbl_config images\xbl_config.img
  13. platform-tools-windows\fastboot %* flash boot images\boot.img
  14. platform-tools-windows\fastboot %* flash modem images\modem.img
  15. platform-tools-windows\fastboot %* flash vbmeta_system images\vbmeta_system.img
  16. platform-tools-windows\fastboot %* flash tz images\tz.img
  17. platform-tools-windows\fastboot %* flash vbmeta images\vbmeta.img
  18. platform-tools-windows\fastboot %* flash bluetooth images\bluetooth.img
  19. platform-tools-windows\fastboot %* flash abl images\abl.img
  20. platform-tools-windows\fastboot %* flash cpucp images\cpucp.img
  21. platform-tools-windows\fastboot %* flash dtbo images\dtbo.img
  22. platform-tools-windows\fastboot %* flash featenabler images\featenabler.img
  23. platform-tools-windows\fastboot %* flash vendor_boot images\vendor_boot.img
  24. platform-tools-windows\fastboot %* flash keymaster images\keymaster.img
  25. platform-tools-windows\fastboot %* flash uefisecapp images\uefisecapp.img
  26. platform-tools-windows\fastboot %* flash qupfw images\qupfw.img
  27. platform-tools-windows\fastboot %* flash xbl images\xbl.img
  28. platform-tools-windows\fastboot %* flash devcfg images\devcfg.img
  29. platform-tools-windows\fastboot %* flash hyp images\hyp.img
  30. platform-tools-windows\fastboot %* flash imagefv images\imagefv.img
  31. platform-tools-windows\fastboot %* flash shrm images\shrm.img
  32. platform-tools-windows\fastboot %* flash aop images\aop.img
  33. platform-tools-windows\fastboot %* flash cust images\cust.img
  34. platform-tools-windows\fastboot %* flash super images\super.img
  35. platform-tools-windows\fastboot %* erase metadata
  36. platform-tools-windows\fastboot -w
  37. platform-tools-windows\fastboot %* set_active a
  38. platform-tools-windows\fastboot %* reboot
  39.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement