Advertisement
AudazGMR

Wkey (Licence Viewer)

Feb 21st, 2024
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 1.04 KB | Help | 0 0
  1. @echo off
  2.  
  3. rem Run this script in an up-to-date windows environment for it to work properly.
  4. rem Windows (Batch script), (.bat, .cmd ...)
  5.  
  6. Title Wkey
  7. Echo.>> key.txt
  8. Echo -------------------------------[Licence]-------------------------------->> key.txt
  9. Echo.>> key.txt
  10. Echo Windows version:>> key.txt
  11. wmic os get Caption | findstr /v Caption>> key.txt
  12. Echo Activation key: >> Key.txt
  13. wmic path softwarelicensingservice get OA3xOriginalProductKey | findstr /v OA3xOriginalProductKey >> key.txt
  14. Echo License Type: >> key.txt
  15. wmic path SoftwareLicensingService get OA3xOriginalProductKeyDescription | findstr /v OA3xOriginalProductKeyDescription >> key.txt
  16. Echo ----------------------------------[o]----------------------------------->> key.txt
  17. Echo.>> key.txt
  18.  
  19. rem (optional)
  20. rem start key.txt
  21.  
  22. rem -------------------------------[Credits]--------------------------------
  23. rem [By]: AudazGamer
  24. rem [YouTube]: https://www.youtube.com/channel/UCra9Qag0MSp6ts3TKCLtIKg
  25. rem ----------------------------------[o]-------------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement