12 lines
389 B
Plaintext
12 lines
389 B
Plaintext
REM VBScript Test Custom Action
|
|
|
|
Const hkClassesRoot = 0
|
|
Const hkCurrentUser = 1
|
|
Const hkLocalMachine = 2
|
|
|
|
MsgBox "ProductCode = " & Session.Property("ProductCode") & " Language = " & Session.Language
|
|
|
|
Function Action1
|
|
MsgBox "Processor Speed = " & Session.Installer.RegistryValue(hkLocalMachine, "HARDWARE\DESCRIPTION\System\CentralProcessor\0", "~MHz")
|
|
Action1 = 1
|
|
End Function |