
Sebenarnya Cara Melihat Product Key Windows dari computer memang bisa. Caranya yaitu dengan membuat VBscript yang berfungsi untuk membaca isi Registry yang kemudian akan d tampilkan di layar computer anda.
Langkahnya sangat mudah, anda cukup Copy dan paste script dibawah ini pada Notepad:
Option Explicit
Dim objshell,path,DigitalID, Result
Set objshell = CreateObject(“WScript.Shell”)
‘Set registry key path
Path = “HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\”
‘Registry key value
DigitalID = objshell.RegRead(Path & “DigitalProductId”)
Dim ProductName,ProductID,ProductKey,ProductData
‘Get ProductName, ProductID, ProductKey
ProductName = “Product Name: ” & objshell.RegRead(Path & “ProductName”)
ProductID = “Product ID: ” & objshell.RegRead(Path & “ProductID”)
ProductKey = “Installed Key: ” & ConvertToKey(DigitalID)
ProductData = ProductName & vbNewLine & ProductID & vbNewLine & ProductKey ‘Show messbox if save to a file
If vbYes = MsgBox(ProductData & vblf & vblf & “Save to a file?”, vbYesNo + vbQuestion, “BackUp Windows Key Information”) then
Save ProductData
Ketika hal tersebut sudah anda simpan, langkah selanjutnya adalah meg-klik notepad tersebut sehingga akan muncul pop-up yang menampilkan product key. Dengan melakukan beberapa langkah di atas, anda telah menyelesaikan prosedur dalam menemukan Product Key.

Labels:
Tips dan Trik
Thanks for reading Trik untuk Mencari Product Key Windows atau Office yang Hilang. Please share...!
0 Comment for "Trik untuk Mencari Product Key Windows atau Office yang Hilang"