This file contains 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
; Exposes two hotkeys: | |
; - Win+G generates & pastes a new lowercase guid | |
; - Win+Shift+G generates & pastes a new UPPERCASE guid | |
; In both cases, the guid is left on the clipboard so you can easily paste it more than once. | |
; | |
GUID() | |
{ | |
format = %A_FormatInteger% ; save original integer format | |
SetFormat Integer, Hex ; for converting bytes to hex | |
VarSetCapacity(A,16) |