想在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:\Users\Username\Downloads ## 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:\ProgramData\Package Cache\{275588D7-6C9D-4FB0-BBAE-2FA3F7C2DADB}v6.4.1.25\XTUInstaller.msi C:\Users\Username\Downloads\XTUInstaller.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:\ProgramData\Package Cache 下按修改時間排序,找出包含Intel_XtuInstaller.msi,的把這個msi保存出來
然后用命令行的方式安裝
msiexec /i Intel_XtuInstaller.msi DISABLEPLATFORMCHECK=1
原理:xtuexe每次都先在temp里解壓縮出1個msi來,但是如果安裝失敗或者成功,都會刪除這個msi。
所以,在報錯時,復制出來。用命令行參數導致安裝成功