Do you need help unbricking the Nexus 7 Tablet? Excluding the bricked device, here are a few items that you will need before, during and after the unbricking procedures.
* A Windows PC or Laptop with USB Ports
* A Nexus 7 Rooting Kit
* A Nexus 7 USB Sync/Charge Cable
Preparation
Charge the unit that needs repair for at least thirty (30) minutes using the wall outlet to prevent the device from automatically shutting down itself during the procedure due to a low power state or sixty (60) minutes using your Windows PC or Laptop with USB Ports.
Getting Started
Once the unit that needs repair is charged, connect it to your Windows PC or Laptop using the USB Sync/Charge Cable then power it on into the Bootloader mode by holding both Up and Down Volume buttons and the power button. If Bootloader is no longer an option on your device, Asus or Google will have to replace your Nexus 7.
Restore
Using the Asus Nexus 7 Rooting Kit, push all the factory images needed once more to reboot the Android device correctly.
setup.bat
TITLE Asus Nexus 7 Rooting Kit v4.4.0@ECHO OFF
cls
color 1f
echo —————————————-
echo Asus Nexus 7 Rooting Kit v4.4.0
echo —————————————-
echo (A) Checks for a Nexus 7
echo (B) Wipes All Partitions
echo (C) Unlocks Bootloader
echo (D) Updates Bootloader
echo (E) Restarts Bootloader
echo (F) Update Android OS
echo (G) Restarts Bootloader
pause
cls
echo —————————————-
echo Checking for Nexus 7 Devices
echo —————————————-
C:\sipylus\android\rootkit\sdk\fastboot.exe devices
pause
cls
echo —————————————-
echo Erasing Nexus 7 Partitions
echo —————————————-
C:\sipylus\android\rootkit\sdk\fastboot.exe erase boot
C:\sipylus\android\rootkit\sdk\fastboot.exe erase cache
C:\sipylus\android\rootkit\sdk\fastboot.exe erase recovery
C:\sipylus\android\rootkit\sdk\fastboot.exe erase system
C:\sipylus\android\rootkit\sdk\fastboot.exe erase userdata
pause
cls
echo —————————————-
echo Unlocking Nexus 7 Bootloader
echo —————————————-
C:\sipylus\android\rootkit\sdk\fastboot.exe oem unlock
pause
cls
echo —————————————-
echo Updating Nexus 7 Bootloader
echo —————————————-
C:\sipylus\android\rootkit\sdk\fastboot.exe flash bootloader C:\sipylus\android\rootkit\img\bootloader.img
pause
cls
echo —————————————-
echo Restarting Nexus 7 Bootloader
echo —————————————-
C:\sipylus\android\rootkit\sdk\fastboot.exe reboot-bootloader
pause
cls
echo —————————————-
echo Updating Nexus 7 Partitions
echo —————————————-
C:\sipylus\android\rootkit\sdk\fastboot.exe flash boot C:\sipylus\android\rootkit\img\boot.img
C:\sipylus\android\rootkit\sdk\fastboot.exe flash recovery C:\sipylus\android\rootkit\img\recovery.img
C:\sipylus\android\rootkit\sdk\fastboot.exe flash system C:\sipylus\android\rootkit\img\system.img
C:\sipylus\android\rootkit\sdk\fastboot.exe flash userdata C:\sipylus\android\rootkit\img\userdata.img
pause
cls
echo —————————————-
echo Restarting Nexus 7 Bootloader
echo —————————————-
C:\sipylus\android\rootkit\sdk\fastboot.exe reboot-bootloader
pause