Jump to content

HTA Windows Registry Manipulation


xenophobia

Recommended Posts

Hi guys, Im doing a HTML application which able to set and read certain registry in a remote machine.

 

Everything is fine, Im able to read, write, and even delete with javascript. But when I run this piece of code in windows vista platform, the stupid UAC just block my script access to the registry. Which Im not able to write but only read.

 

I don't mind if the OS prompt for user's decision, which blackout the screen and ask whether allow or deny the access. But this time, it just do nothing but just throw an exception.

 

the code is as follow:

var wsh = new ActiveXObject("WScript.Shell");

try {
    var key = wsh.RegRead("HKEY_CURRENT_USER\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\VisualEffects\\VisualFXSetting");

    alert("The value is : " + key);

    wsh.RegWrite("HKEY_CURRENT_USER\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\VisualEffects\\VisualFXSetting", 2, "REG_DWORD");
} catch(ex) {
    alert("Error: " + ex);
}

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.