Forked from ruzfi/AMD Ryzen USB Controller Fastboot Fix.bat
Created
August 9, 2025 13:54
-
-
Save gambe/8b63fa14542a0e18e0d47dfa97fc298e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| REM // This batch will help frustrated AMD Ryzen user for being unable to normally use adb fastboot from Windows OS | |
| REM // I found this script on forum, I don't know who is the original creator of this registry hack, thank you very much | |
| REM // Credit belongs to the original creator | |
| REM // Just simply Run as Administrator | |
| reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\usbflags\18D1D00D0100" /v "osvc" /t REG_BINARY /d "0000" /f | |
| reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\usbflags\18D1D00D0100" /v "SkipContainerIdQuery" /t REG_BINARY /d "01000000" /f | |
| reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\usbflags\18D1D00D0100" /v "SkipBOSDescriptorQuery" /t REG_BINARY /d "01000000" /f | |
| pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment