下载ISO的方式很多,可以从微软官网下,可以从uupdump下。用ISO安装Windows系统过程可能需要验证ProductKey,参考https://learn.microsoft.com/zh-cn/windows-server/get-started/kms-client-activation-keys
微软官网显示的ProductKey不全,我下面有补充,注意:ProductKey仅仅是区分系统版本用的,微软是公开的,或者能在微软ISO中找到product.ini,里面会显示明文,并不是激活码。以下是我耗费数十小时测试所得。
Microsoft Windows 11 企业版 64 位,支持新建ReFS,可以用kms.03k.org激活
enterprise=NPPR9-FWDCX-D2C8J-H872K-2YT43
Microsoft Windows 11 专业工作站版 64 位,支持新建ReFS,可以用kms.03k.org激活
professionalworkstation=NRG8B-VKK3Q-CXVCJ-9G2XF-6Q84J
Microsoft Windows 11 IoT 企业版 64 位,支持新建ReFS,需购买版权,普通kmsserver一般是无法激活的
IoTEnterprise=XQQYW-NFFMW-XJPBH-K8732-CKFFD
Microsoft Windows 11 IoT 企业版订阅 64 位,支持新建ReFS,需购买版权,普通kmsserver一般是无法激活的
iotenterprisek=P8Q7T-WNK7X-PMFXY-VXHBG-RRK69
Microsoft Windows 11 教育版 64 位,不支持新建ReFS,可以用kms.03k.org激活
education=NW6C2-QMPVW-D7KKK-3GKT6-VCFB2
Microsoft Windows 11 企业版多会话 64 位,不支持新建ReFS,可以用kms.03k.org激活
ServerRdsh=NJCF7-PW8QT-3324D-688JX-2YV66
ServerRdsh=VMKVQ-3MN6B-BVM9F-YWV97-R9FCX
“ServerRdsh”里的“Rdsh”是一个缩写,来源于 RDSH = Remote Desktop Session Host(远程桌面会话主机)。
powershell:以下均是powershell
#cmd.exe /c "cscript /nologo %windir%/system32/slmgr.vbs /ipk 替换这几个汉字为ProductKey",例如企业版
cmd.exe /c "cscript /nologo %windir%/system32/slmgr.vbs /ipk NPPR9-FWDCX-D2C8J-H872K-2YT43"
#切换外部kms.03k.org
cmd.exe /c "cscript /nologo %windir%/system32/slmgr.vbs -skms kms.03k.org:1688"
cmd.exe /c "cscript /nologo %windir%/system32/slmgr.vbs -ato"
cmd.exe /c "cscript /nologo %windir%/system32/slmgr.vbs -dlv"
#Get-WmiObject 这句命令需要重启机器后执行才准确
Get-WmiObject -Class Win32_OperatingSystem | Select-Object Caption, OSArchitecture
Win10/Win11版本(CN) | Win10/Win11版本(EN) | 是否支持新建ReFS卷 | 仅支持读写已有ReFS卷 |
---|---|---|---|
Windows 家庭版 | Windows Home | 不支持 | ✅ |
Windows 专业版 | Windows Pro | 不支持 | ✅ |
Windows 专业工作站版 | Windows Pro for Workstations | ✅ | ✅ |
Windows 专业教育版 | Windows Pro Education | 不支持 | ✅ |
Windows 教育版 | Windows Education | 不支持 | ✅ |
Windows 企业版 | Windows Enterprise | ✅ | ✅ |
Windows 企业版多会话 | Windows Enterprise multi-session | 不支持 | ✅ |
Windows IoT 企业版 | Windows IoT Enterprise | ✅ | ✅ |
Windows IoT 企业版订阅 | Windows IoT Enterprise Subscription | ✅ | ✅ |
winver命令显示的系统版本,跟HKLM\SYSTEM\CurrentControlSet\Control\ProductOptions下面的ProductPolicy有关,这个注册表键值是二进制的,有个工具(ProductPolicyEditor1.5版)可以读取其内容,ProductPolicy中记录了winver显示的系统版本
下载的原版ISO经过tiny11处理后生成的tiny11.iso,用原ISO中的install.wim替换回去并删除tiny11.iso根中的autounattend.xml,另存为新的ISO,我试过以下3种都可以安装成功,安装过程中格式化可以参考https://cloud.tencent.com/developer/article/2567441。
①系统盘BIOS+MBR+NTFS
②系统盘UEFI+GPT+NTFS
③系统盘UEFI+GPT+ReFS
从生产角度,ReFS优劣参半,我个人最不喜ReFS只能扩展卷却不能压缩卷。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。