如何从 24H2 开始强制安装 Pro、Enterprise 或其他版本的 Windows?

问题描述 投票:0回答:1

尝试在具有与计算机主板绑定的原始设备制造商许可证的系统中安装 Windows 时,无法自由选择要安装的 Windows 版本。

如果从最初安装的 Windows 版本(例如 Windows 11 家庭单语言)更改为任何不同版本(例如购买的 Windows 11 专业版),过去需要将一些文件添加到安装程序 Pen Drive 或安装程序介质中才能启用版本选择菜单在安装程序中。

从 24H2 版本的 Windows 11 开始,

ei.cfg
PID.txt
似乎被忽略,不再是在安装向导中选择不同 Windows 版本的有用解决方案。

windows formatting
1个回答
0
投票

我不敢相信 StackOverflow 丢失了我的详细答案。希望版主能够恢复一下。同时:

使用 Windows 安装自动化工具(例如 Ventoy)可以解决这个问题,并允许您使用通用许可证密钥来选择您想要的任何版本。

带有通用 Windows 11 Pro 密钥的 Ventoy 脚本示例,该脚本不会激活 Windows,但会强制您安装 Pro 版本:

<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
    <settings pass="windowsPE">
        <component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <UserData>
                <AcceptEula>true</AcceptEula>
                <ProductKey>
                    <Key>VK7JG-NPHTM-C97JM-9MPGT-3V66T</Key>
                </ProductKey>
            </UserData>
        </component>
    </settings>
</unattend>

© www.soinside.com 2019 - 2024. All rights reserved.