Это всё понятно, я имел ввиду, что созданный мною дистрибутив, не грузится в uefi (второе поколение hyper-v).
Делал так...
Скрытый текст
rem set PACK="C:\Program Files (x86)\Windows Kits\8.1\Assessment and Deployment Kit\Deployment Tools\amd64\Oscdimg"
@echo on
::Set Paths
:: Do NOT use trailing backslash in path (i.e. C:\mnt instead of C:\mnt\ )
:Path to mount folder
set mnt=C:\7work\mount
:Path to source .wim
set src=C:\7work\DVD\sources
:Path to update packages
set updates1=C:\7work\updates_x86
set pro=C:\7work\Pro
set core=C:\7work\Core
set util=C:\7work\Utilites
::Do NOT modify anything below this line unless you know what you are doing!
cls
xcopy %util%\lang.ini %src%\ /y
dism /Cleanup-Wim
dism /Mount-Wim /WimFile:%src%\boot.wim /index:2 /MountDir:%mnt%
xcopy %util%\lang.ini %mnt%\sources\ /y
dism /Unmount-Wim /MountDir:%mnt% /commit
dism /Cleanup-Wim
timeout /T 5 /NOBREAK
Dism /Split-Image /ImageFile:%src%\install.wim /SWMFile:%src%\install.swm /FileSize:4000
del /Q C:\7work\DVD\sources\install.wim
"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Deployment Tools\amd64\Oscdimg\oscdimg" -u1 -m -b"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Deployment Tools\amd64\Oscdimg\etfsboot.com" C:\7Work\DVD C:\7Work\ISO\10_Pro_x64.iso
pause