;UID Generator by Mixture63
MsgBox(0, "Random UID", GenerateUID())
func GenerateUID()
$Section1 = Hex(Random(0, 256^2, 1), 4) & Hex(Random(0, 256^2, 1), 4)
$Section2 = Hex(Random(0, 256^2, 1), 4)
$Section3 = Hex(Random(0, 256^2, 1), 4)
$Section4 = Hex(Random(0, 256^2, 1), 4)
$Section5 = Hex(Random(0, 256^2, 1), 4) & Hex(Random(0, 256^2, 1), 4) & Hex(Random(0, 256^2, 1), 4)
return "{" & $Section1 & "-" & $Section2 & "-" & $Section3 & "-" & $Section4 &