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
https://forums.phpfreaks.com/topic/178313-hta-windows-registry-manipulation/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.