Created
April 30, 2021 23:03
-
-
Save bynanex/e8649aa0636d23562b1a0219d086c144 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 | |
TITLE HWID Checker | |
ECHO ********************************** | |
Color 0F | |
ECHO ********************************** | |
:start | |
cls | |
wmic diskdrive get model, serialnumber | |
ECHO CPU | |
wmic cpu get serialnumber | |
ECHO BIOS | |
wmic bios get serialnumber | |
ECHO Motherboard | |
wmic baseboard get serialnumber | |
ECHO smBIOS UUID | |
wmic path win32_computersystemproduct get uuid | |
getmac | |
echo Press any key to get your hardware serials again. | |
pause>nul | |
goto start |
b
w
thanks!!!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
w