w10install/wimscripts/copy-iso.cmd
Michael H.G. Schmidt 60b84fd916 .
2020-12-21 16:40:22 +01:00

11 lines
233 B
Batchfile

@echo off
set W10="c:\TEMP\Win10"
rd /S /Q %W10% 1>nul 2>nul
mkdir %W10% 1>nul 2>nul
powershell Mount-DiskImage -ImagePath %W10%.iso
robocopy \\.\CDROM0 %W10% /MIR /256
powershell Dismount-Diskimage -ImagePath %W10%.iso