Curl Global Community

Full Version: Registryの値を取得したい
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
すみませんが、

私はウェッブブラウザ一覧の値を取得したいですが、
ブラウザ一覧のRegistryの場所は見つかりました。
これは【HKEY_LOCAL_MACHINE\SOFTWARE\Clients\StartMenuInternet】です。

デフォルトブラウザのRegistryの場所は【HKEY_CLASSES_ROOT\http\shell\open\command】です。

Registryのデータの取得方を教えていただけませんか?
まことにありがとうございます。
This is a sample source for handling Windows Registry.
We can do many thins by using Windows Script Host.

let wsh:ActiveXObject = {ActiveXObject ProgId = "WScript.Shell"}

||書く
{wsh.RegWrite |"HKCU\MyRegKey\"|, "Top level key"}


|| 読む
def val = {wsh.RegRead |"HKCU\MyRegKey\"|}

|| 消す
{wsh.RegDelete |"HKCU\MyRegKey\"|}