旧型PCへWin11 25H2をクリーンインストールする方法
How to Clean Install Windows 11 25H2 on an Older PC
まっさらな旧型PCにWin11 25H2をクリーンインストールする場合、従来使えていたバイパス方法であるappraiserres.dll消去も、setup /product serverも使えない。しかし、レジストリ変更方法は未だ有効。以下その手順。When performing a clean installation of Windows 11 25H2 on a completely blank, older PC, the previously available bypass methods—such as deleting appraiserres.dll or using the setup /product server command—no longer work. However, the registry modification method still remains effective. The steps are as follows:
Step1)マイクロソフトのHP上の、「x64 デバイス用 Windows 11 ディスク イメージ (ISO) をダウンロードする」、でUSB作成。From Microsoft’s official website, go to “Download Windows 11 Disk Image (ISO) for x64 devices” and create a bootable USB drive.
Step2)次の内容のBATファイルを作り、もう一つのUSBにCOPY。Create a BAT file with the following contents and copy it to another USB drive:
@echo off
reg add "HKEY_LOCAL_MACHINE\SYSTEM\Setup\LabConfig" /v BypassTPMCheck /t REG_DWORD /d 1 /f reg add "HKEY_LOCAL_MACHINE\SYSTEM\Setup\LabConfig" /v BypassSecureBootCheck /t REG_DWORD /d 1 /f reg add "HKEY_LOCAL_MACHINE\SYSTEM\Setup\LabConfig" /v BypassCPUCheck /t REG_DWORD /d 1 /f reg add "HKEY_LOCAL_MACHINE\SYSTEM\Setup\LabConfig" /v BypassRAMCheck /t REG_DWORD /d 1 /f reg add "HKEY_LOCAL_MACHINE\SYSTEM\Setup\LabConfig" /v BypassStorageCheck /t REG_DWORD /d 1 /f echo バイパス設定完了! 閉じて「次へ」を押してください。 pause
Step3)Step1で作ったインストールUSBでクリーンインストール開始するが、最初の画面で、F10でDOSへ。そこで、Step2で作ったUSBに差し替えて、バッチファイルを実行、DOSからEXIT。Boot the PC using the installation USB created in Step 1 and start the clean installation. On the first screen, press F10 to open the DOS prompt. Then replace the USB drive with the one created in Step 2 and run the batch file. After execution, type EXIT to return.
Step4) インストールをそのまま継続する。Continue the installation process as normal.
