1
0
Fork 0
mirror of https://github.com/Ylianst/MeshCentral.git synced 2025-02-12 11:01:52 +00:00

Updated wpfhwacceleration description

This commit is contained in:
Bryan Roe 2019-12-10 14:23:35 -08:00
parent 2a5738b7e9
commit 61c65d5e3e

View file

@ -1905,7 +1905,7 @@ function createMeshCore(agent) {
case 'ON': case 'ON':
try try
{ {
reg.WriteKey(reg.HKEY.Users, key + '\\SOFTWARE\\Microsoft\\Avalon.Graphics', 'DisableHWAcceleration', 1); reg.WriteKey(reg.HKEY.Users, key + '\\SOFTWARE\\Microsoft\\Avalon.Graphics', 'DisableHWAcceleration', 0);
response = 'OK'; response = 'OK';
} }
catch (ee) catch (ee)
@ -1916,7 +1916,7 @@ function createMeshCore(agent) {
case 'OFF': case 'OFF':
try try
{ {
reg.WriteKey(reg.HKEY.Users, key + '\\SOFTWARE\\Microsoft\\Avalon.Graphics', 'DisableHWAcceleration', 0); reg.WriteKey(reg.HKEY.Users, key + '\\SOFTWARE\\Microsoft\\Avalon.Graphics', 'DisableHWAcceleration', 1);
response = 'OK'; response = 'OK';
} }
catch (ee) catch (ee)
@ -1929,7 +1929,7 @@ function createMeshCore(agent) {
var s; var s;
try try
{ {
s = reg.QueryKey(reg.HKEY.Users, key + '\\SOFTWARE\\Microsoft\\Avalon.Graphics', 'DisableHWAcceleration')==1?'ENABLED':'DISABLED'; s = reg.QueryKey(reg.HKEY.Users, key + '\\SOFTWARE\\Microsoft\\Avalon.Graphics', 'DisableHWAcceleration')==1?'DISABLED':'ENABLED';
} }
catch (ee) catch (ee)
{ {