Skip to content

Commit c01d664

Browse files
committed
fix: incorrect path for registry key to disable core isolation
1 parent 8c166d4 commit c01d664

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/src/assets/js/scripts.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -939,7 +939,7 @@ document.addEventListener("DOMContentLoaded", function () {
939939
],
940940
coreisolation: [
941941
"echo -- Disabling Core Isolation",
942-
'reg add "HKLM\\SOFTWARE\\CurrentControlSet\\CurrentControlSet\\Control\\DeviceGuard\\Scenarios\\HypervisorEnforcedCodeIntegrity" /v "Enabled" /t REG_DWORD /d 0 /f',
942+
'reg add "HKLM\\System\\CurrentControlSet\\Control\\DeviceGuard\\Scenarios\\HypervisorEnforcedCodeIntegrity" /v "Enabled" /t REG_DWORD /d 0 /f',
943943
],
944944
disableprefetch: [
945945
"echo -- Disabling Prefetch",

website/src/assets/js/scripts.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -939,7 +939,7 @@ document.addEventListener("DOMContentLoaded", function () {
939939
],
940940
coreisolation: [
941941
"echo -- Disabling Core Isolation",
942-
'reg add "HKLM\\SOFTWARE\\CurrentControlSet\\CurrentControlSet\\Control\\DeviceGuard\\Scenarios\\HypervisorEnforcedCodeIntegrity" /v "Enabled" /t REG_DWORD /d 0 /f',
942+
'reg add "HKLM\\System\\CurrentControlSet\\Control\\DeviceGuard\\Scenarios\\HypervisorEnforcedCodeIntegrity" /v "Enabled" /t REG_DWORD /d 0 /f',
943943
],
944944
disableprefetch: [
945945
"echo -- Disabling Prefetch",

0 commit comments

Comments
 (0)