Hi Jon,
I read the doc and try it in my htm page below, however, the key/value can't be create/read! Any suggestions?
I am going to add the function to HTM page. So, when user access it, I can list user information there!
Cheers
--------------code-------------------
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1250">
<SCRIPT LANGUAGE="VBScript">
<!--
Dim WshShell, bKey
Set WshShell = WScript.CreateObject("WScript.Shell"
WshShell.RegWrite "HKCU\Software\ACME\FortuneTeller\", 1, "REG_BINARY"
WshShell.RegWrite "HKCU\Software\ACME\FortuneTeller\MindReader", "Goocher!", "REG_SZ"
bKey = WshShell.RegRead("HKCU\Software\ACME\FortuneTeller\"

WScript.Echo WshShell.RegRead("HKCU\Software\ACME\FortuneTeller\MindReader"
-->
</SCRIPT>
</head>
<body bgcolor="#FFFFFF" text="#000000">
</body>
</html>