This commit is contained in:
Michael H.G. Schmidt 2020-12-20 17:12:48 +01:00
parent 700b237a3c
commit df0eef9d60
4 changed files with 9 additions and 5 deletions

7
wimscripts/copy-iso.cmd Normal file
View File

@ -0,0 +1,7 @@
rd /S /Q c:\TEMP\Win10
mkdir c:\TEMP\Win10 1>nul 2>nul
powershell Mount-DiskImage -ImagePath "C:\TEMP\Win10.iso"
xcopy /CDI /HERBY D:\* c:\TEMP\Win10
powershell Dismount-Diskimage -ImagePath "C:\TEMP\Win10.iso"

View File

@ -1,2 +1,3 @@
dism /Export-Image /SourceImageFile:D:\sources\install.esd /SourceIndex:6 /DestinationImageFile:c:\TEMP\install.wim /Compress:Max /CheckIntegrity
del c:\TEMP\install.wim
dism /Export-Image /SourceImageFile:C:\TEMP\sources\install.esd /SourceIndex:6 /DestinationImageFile:c:\TEMP\install.wim /Compress:Max /CheckIntegrity

View File

@ -1,2 +0,0 @@
powershell Mount-DiskImage -ImagePath "C:\TEMP\Win10.iso"

View File

@ -1,2 +0,0 @@
powershell Dismount-Diskimage -ImagePath "C:\TEMP\Win10.iso"