VBScript to check the genuineness of Windows
I am looking for a VBScript which checks if the installed OS is genuine or not. Is there anyway to check programmatically?
0 Comments
[ - ] Hide Comments

so that the conversation will remain readable.
Answer this question
or Comment on this question for clarity
Answers
Thanks. I used the "LegitCheckControl.DLL" to check the genuiness.
Dim objGen As New LegitCheckControlLib.LegitCheck
If objGen.IsAlreadyGenuine = True then
msgbox "This is a Genuinen windows version."
Else
msgbox "This is NOT a Genuinen windows version."
End If
Dim objGen As New LegitCheckControlLib.LegitCheck
If objGen.IsAlreadyGenuine = True then
msgbox "This is a Genuinen windows version."
Else
msgbox "This is NOT a Genuinen windows version."
End If
Please log in to comment
Comments