X-Git-Url: https://glassweightruler.freedombox.rocks/gitweb/Ventoy.git/blobdiff_plain/194e948cb6669bce910e303461e54bd72e09d441..f7e6bbc70c65db9f6f5da5abc4ae57bd689da91c:/Plugson/www/plugson_control.html diff --git a/Plugson/www/plugson_control.html b/Plugson/www/plugson_control.html index 1e9a258..7aa433d 100644 --- a/Plugson/www/plugson_control.html +++ b/Plugson/www/plugson_control.html @@ -151,7 +151,6 @@ HKEY_LOCAL_MACHINE\SYSTEM\Setup\LabConfig\BypassTPMCheck
HKEY_LOCAL_MACHINE\SYSTEM\Setup\LabConfig\BypassSecureBootCheck
HKEY_LOCAL_MACHINE\SYSTEM\Setup\LabConfig\BypassCPUCheck
- HKEY_LOCAL_MACHINE\SYSTEM\Setup\LabConfig\BypassStorageCheck
@@ -172,6 +171,53 @@ + + +
+
+

VTOY_WIN11_BYPASS_NRO + —— 绕过Windows 11 在线账户需求

+
+ +
+
+
+ + + + + + + + + + + + + +
选项设置 +      + +
选项说明 + 0 不绕过Windows 11安装时的在线账户需求。
+ 1 绕过Windows 11安装时的在线账户需求。

+ 该选项只对标准Windows 11 ISO文件有效,对于其他镜像文件无效。 + 当设置为1时,Ventoy 会在安装时创建以下注册表项用来绕过 Windows 11 安装时对在线账户的需求。
+ HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\OOBE\BypassNRO
+
Option Description + 0 Do not bypass Windows 11 online account requirement.
+ 1 Bypass Windows 11 online account requirement.

+ This option only avaliable for standard Windows 11 ISO files. + When set to 1, Ventoy will create the following registry to bypass Windows 11 online account requirement when install.
+ HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\OOBE\BypassNRO +
+
+
+ @@ -1060,6 +1106,7 @@ var level; data.win11_bypass_check = parseInt($('input:radio[name=id_ctrl_bypass_win11_radio]:checked').val()); + data.win11_bypass_nro = parseInt($('input:radio[name=id_ctrl_bypass_nro_radio]:checked').val()); data.linux_remount = parseInt($('input:radio[name=id_ctrl_linux_remount_radio]:checked').val()); data.secondary_menu = parseInt($('input:radio[name=id_ctrl_secondary_radio]:checked').val()); data.password_asterisk = parseInt($('input:radio[name=id_ctrl_asterisk_radio]:checked').val()); @@ -1096,6 +1143,8 @@ function VtoyFillCurrentPageItem(data) { //VTOY_WIN11_BYPASS_CHECK $('input:radio[name=id_ctrl_bypass_win11_radio]')[data.win11_bypass_check].checked = true; + //VTOY_WIN11_BYPASS_NRO + $('input:radio[name=id_ctrl_bypass_nro_radio]')[data.win11_bypass_nro].checked = true; $('input:radio[name=id_ctrl_linux_remount_radio]')[data.linux_remount].checked = true; $('input:radio[name=id_ctrl_secondary_radio]')[data.secondary_menu].checked = true; $('input:radio[name=id_ctrl_asterisk_radio]')[data.password_asterisk].checked = true; @@ -1202,6 +1251,7 @@ method : 'save_control', index: current_tab_index, win11_bypass_check: data.win11_bypass_check, + win11_bypass_nro: data.win11_bypass_nro, linux_remount:data.linux_remount, secondary_menu:data.secondary_menu, password_asterisk:data.password_asterisk,