※ Build 14965 からこの手法が使えなくなっています。
【重要】わかっている方向けのメモです。詳細説明は一切ありませんので、なんのこっちゃな方は手を出さないでください。
Insider Preview の最新 Build ISO は通常配布されていませんが、Insider Preview に参加し、最新Buildにアップデートしていれば ISO イメージを作る事が出来ます。
いくつかのビルドは ISO 配布されているので、少し前でよければこちらからダウンロードできます。(Insider Preview アカウントでログオン必須)
https://www.microsoft.com/en-us/software-download/windowsinsiderpreviewadvanced?wa=wsignin1.0
ISO の元になるのは「C:\$Windows.~BT\Sources\Install.esd」です。
このファイルは、クリーンナップをすると消えてしまうので(ある程度時間経過すると消えるとの話もあり)、ISO
ファイルを作成する場合は早めに採取しておくのが良いです。
if(Test-Path C:\Temp ){ rd
C:\Temp -Recurse -Force }
md C:\Temp\w10esd
copy
C:\`$WINDOWS.~BT\Sources\Install.esd C:\Temp\w10esd
# イメージ確認
# Windows Setup Media / Index:1
# Microsoft Windows PE /
Index:2
# Microsoft Windows Setup / Index:3
# Windows 10 Enterprise
Technical Preview / Index:4
cmd /c dism /Get-WimInfo /WimFile:C:\Temp\w10esd\Install.esd
md C:\Temp\WTP\ESD
cmd /c dism /Apply-Image /ImageFile:C:\Temp\w10esd\Install.esd
/Index=1 /ApplyDir:C:\Temp\WTP\ESD
md
C:\Temp\WTP\tmp
cmd /c dism /Capture-Image /ImageFile:C:\Temp\WTP\ESD\sources\boot.wim
/CaptureDir:C:\Temp\WTP\tmp /Name:tmp /Compress:max
cmd
/c dism /Export-Image /SourceImageFile:C:\Temp\w10esd\Install.esd
/SourceIndex:2 /DestinationImageFile:C:\Temp\WTP\ESD\sources\boot.wim
/Compress:Recovery /Bootable
# イメージ確認
# tmp / Index:1
# Microsoft
Windows PE / Index:2
cmd /c dism /Get-WimInfo /WimFile:C:\Temp\WTP\ESD\sources\boot.wim
cmd /c dism /Delete-Image /ImageFile:C:\Temp\WTP\ESD\sources\boot.wim
/Index:1
cmd /c dism /Export-Image /SourceImageFile:C:\Temp\w10esd\Install.esd
/SourceIndex:3 /DestinationImageFile:C:\Temp\WTP\ESD\sources\boot.wim
/Compress:Recovery /Bootable
cmd /c dism /Capture-Image /ImageFile:C:\Temp\WTP\ESD\sources\Install.wim
/CaptureDir:C:\Temp\WTP\tmp /Name:tmp /Compress:Maximum
cmd /c dism /Export-Image /SourceImageFile:C:\Temp\w10esd\Install.esd
/SourceIndex:4 /DestinationImageFile:C:\Temp\WTP\ESD\sources\install.wim
/Compress:recovery
cmd /c dism /Delete-Image /ImageFile:C:\Temp\WTP\ESD\sources\install.wim
/Index:1
## Windows 10 Update 用 WADK install
##
https://msdn.microsoft.com/ja-jp/windows/hardware/dn913721.aspx
#
「展開およびイメージング ツール環境」起動
copype amd64 C:\Temp\PE_x64
oscdimg -m -o -u2 -udfver102 -bootdata:2#p0,e,bC:\Temp\PE_x64\fwfiles\etfsboot.com#pEF,e,bC:\Temp\PE_x64\fwfiles\efisys.bin
C:\Temp\WTP\ESD
C:\Temp\w10_IP_xxxx.iso
元ネタは、MS MVP 仲間が書いている「悩み多き文教市場のインフラ屋さん」の「Windows Technical Previewの新しいビルドのインストールメディアを作成する」です
Copyright © MURA All rights reserved.