安装intel xtu 遇到"Attempted to install on an unsupported platform"

想在x1c 2018上安装intel xtu 忽然发现无论怎么样,即使是旧版也安装不上了。

因为只支持K系列超频CPU了。而我的CPU是8550U。

总是报错

Attempted to install on an unsupported platform

参考https://kallelilja.com/2018/12/workaround-xtu-attempted-to-install-on-an-unsupported-platform/

cd C:UsersUsernameDownloads
## Run .exe installer
XTUSetup.exe
## Proceed until error message on screen - Don't exit
# Copy the .msi version of the installer package from %Programdata%Package Cache location
copy C:ProgramDataPackage Cache{275588D7-6C9D-4FB0-BBAE-2FA3F7C2DADB}v6.4.1.25XTUInstaller.msi C:UsersUsernameDownloadsXTUInstaller.msi
## Exit the .exe installer
# Run the .msi version of the installer setting the DISABLEPLATFORMCHECK property to '1'
msiexec /i XTUInstaller.msi DISABLEPLATFORMCHECK=1

简单说,下载好的exe点安装,然后停在这个画面

 去文件夹 C:ProgramDataPackage Cache  下按修改时间排序,找出包含Intel_XtuInstaller.msi,的把这个msi保存出来

然后用命令行的方式安装

msiexec /i Intel_XtuInstaller.msi DISABLEPLATFORMCHECK=1

原理:xtuexe每次都先在temp里解压缩出1个msi来,但是如果安装失败或者成功,都会删除这个msi。

所以,在报错时,复制出来。用命令行参数导致安装成功

原文地址:https://www.cnblogs.com/xuanmanstein/p/12491800.html