Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
dadigang
Ventoy
Commits
911d5dca
Commit
911d5dca
authored
Dec 23, 2022
by
longpanda
Browse files
Remove useless BypassStorageCheck registry when VTOY_WIN11_BYPASS_CHECK is set to 1. (#1873)
parent
f597497d
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
3 additions
and
5 deletions
+3
-5
INSTALL/ventoy/vtoyjump32.exe
INSTALL/ventoy/vtoyjump32.exe
+0
-0
INSTALL/ventoy/vtoyjump64.exe
INSTALL/ventoy/vtoyjump64.exe
+0
-0
Plugson/www/index.html
Plugson/www/index.html
+3
-3
Plugson/www/plugson_control.html
Plugson/www/plugson_control.html
+0
-1
vtoyjump/vtoyjump/vtoyjump.c
vtoyjump/vtoyjump/vtoyjump.c
+0
-1
No files found.
INSTALL/ventoy/vtoyjump32.exe
View file @
911d5dca
No preview for this file type
INSTALL/ventoy/vtoyjump64.exe
View file @
911d5dca
No preview for this file type
Plugson/www/index.html
View file @
911d5dca
...
...
@@ -777,10 +777,10 @@
<script
src=
"/static/js/jQuery-2.1.4.min.js"
></script>
<!-- jquery validate -->
<script
src=
"/static/js/jquery.validate.min.js"
></script>
<script
src=
"/static/js/jquery.validate.vtoymethods.js?v=10
8
"
></script>
<script
src=
"/static/js/jquery.validate.vtoymethods.js?v=10
9
"
></script>
<script
src=
"/static/js/jquery.vtoy.alert.js?v=10
8
"
></script>
<script
src=
"/static/js/vtoy.js?v=10
8
"
></script>
<script
src=
"/static/js/jquery.vtoy.alert.js?v=10
9
"
></script>
<script
src=
"/static/js/vtoy.js?v=10
9
"
></script>
<script
src=
"/static/js/md5.min.js"
></script>
<!-- Bootstrap 3.3.5 -->
...
...
Plugson/www/plugson_control.html
View file @
911d5dca
...
...
@@ -151,7 +151,6 @@
<code>
HKEY_LOCAL_MACHINE\SYSTEM\Setup\LabConfig\BypassTPMCheck
</code><br/>
<code>
HKEY_LOCAL_MACHINE\SYSTEM\Setup\LabConfig\BypassSecureBootCheck
</code><br/>
<code>
HKEY_LOCAL_MACHINE\SYSTEM\Setup\LabConfig\BypassCPUCheck
</code><br/>
<code>
HKEY_LOCAL_MACHINE\SYSTEM\Setup\LabConfig\BypassStorageCheck
</code><br/>
</td>
</tr>
<tr
id=
"tr_title_desc_en"
>
...
...
vtoyjump/vtoyjump/vtoyjump.c
View file @
911d5dca
...
...
@@ -2119,7 +2119,6 @@ static int Windows11Bypass(const char *isofile, const char MntLetter, UINT8 Chec
Status
+=
RegSetValueExA
(
hSubKey
,
"BypassRAMCheck"
,
0
,
REG_DWORD
,
(
LPBYTE
)
&
dwValue
,
sizeof
(
DWORD
));
Status
+=
RegSetValueExA
(
hSubKey
,
"BypassTPMCheck"
,
0
,
REG_DWORD
,
(
LPBYTE
)
&
dwValue
,
sizeof
(
DWORD
));
Status
+=
RegSetValueExA
(
hSubKey
,
"BypassSecureBootCheck"
,
0
,
REG_DWORD
,
(
LPBYTE
)
&
dwValue
,
sizeof
(
DWORD
));
Status
+=
RegSetValueExA
(
hSubKey
,
"BypassStorageCheck"
,
0
,
REG_DWORD
,
(
LPBYTE
)
&
dwValue
,
sizeof
(
DWORD
));
Status
+=
RegSetValueExA
(
hSubKey
,
"BypassCPUCheck"
,
0
,
REG_DWORD
,
(
LPBYTE
)
&
dwValue
,
sizeof
(
DWORD
));
Log
(
"Create bypass check registry %s %u"
,
(
Status
==
ERROR_SUCCESS
)
?
"SUCCESS"
:
"FAILED"
,
Status
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment