FireFox Posted September 23, 2013 Share Posted September 23, 2013 Maybe a function? Link to comment Share on other sites More sharing options...
Gawish Posted September 23, 2013 Author Share Posted September 23, 2013 (edited) i found this code to show windows id Instead of motherboard but it show in msgbox i want it show in textbox expandcollapse popup#RequireAdmin Local $b_BinaryKey = RegRead("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion","DigitalProductID") Local $s_ProductKey = _DecodeProductKey($b_BinaryKey) $i_ButtonCliecked = MsgBox(36, "Change Windows Product Key", "Your current" & @OSVERSION & " product key is: " & @CRLF & @CRLF & $s_ProductKey & @CRLF & @CRLF & "Do you really want to change it?") If $i_ButtonCliecked = 6 Then Dim $s_VOL_PROD_KEY = InputBox("New Volume License Key", "Please enter the new key for this installation: ") If @error Then Exit $s_VOL_PROD_KEY = StringReplace($s_VOL_PROD_KEY, "-", "") $o_WMIservice = ObjGet("winmgmts:{impersonationLevel=impersonate}") $o_WPAinstances = $o_WMIservice.InstancesOf("win32_WindowsProductActivation") for $o_Item in $o_WPAinstances $s_result = $o_Item.SetProductKey($s_VOL_PROD_KEY) If $s_result = 0 Then MsgBox(64, "SUCCESS", "The product key was changed.") Else MsgBox(16, "ERROR", "An error has happened, check if product key was changed.") EndIf Next EndIf Func _DecodeProductKey($BinaryDPID) Local $bKey[15] Local $sKey[29] Local $Digits[24] Local $Value = 0 Local $hi = 0 local $n = 0 Local $i = 0 Local $dlen = 29 Local $slen = 15 Local $Result $Digits = StringSplit("BCDFGHJKMPQRTVWXY2346789","") $binaryDPID = stringmid($binaryDPID,105,30) For $i = 1 to 29 step 2 $bKey[int($i / 2)] = dec(stringmid($binaryDPID,$i,2)) next For $i = $dlen -1 To 0 Step -1 If Mod(($i + 1), 6) = 0 Then $sKey[$i] = "-" Else $hi = 0 For $n = $slen -1 To 0 Step -1 $Value = Bitor(bitshift($hi ,- 8) , $bKey[$n]) $bKey[$n] = int($Value / 24) $hi = mod($Value , 24) Next $sKey[$i] = $Digits[$hi +1] EndIf Next For $i = 0 To 28 $Result = $Result & $sKey[$i] Next Return $Result EndFunc Edited September 23, 2013 by Gawish Link to comment Share on other sites More sharing options...
FireFox Posted September 23, 2013 Share Posted September 23, 2013 A little tour on the helpfile is highly recommended "bro". GUICtrlCreateInput(_DecodeProductKey($b_BinaryKey), ... Br, FireFox. Link to comment Share on other sites More sharing options...
Moderators JLogan3o13 Posted September 23, 2013 Moderators Share Posted September 23, 2013 As I said before - the worst kind of coder is the lazy one who refuses to show any effort. I'm out. kylomas 1 "Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball How to get your question answered on this forum! Link to comment Share on other sites More sharing options...
Blue_Drache Posted September 24, 2013 Share Posted September 24, 2013 Lofting the cyberwinds on teknoleather wings, I am...The Blue Drache Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now