diff --git a/wimscripts/copy-iso.cmd b/wimscripts/copy-iso.cmd new file mode 100644 index 0000000..2b6e9ea --- /dev/null +++ b/wimscripts/copy-iso.cmd @@ -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" + diff --git a/wimscripts/export-image.cmd b/wimscripts/export-image.cmd index 97bad41..3c9b89c 100644 --- a/wimscripts/export-image.cmd +++ b/wimscripts/export-image.cmd @@ -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 diff --git a/wimscripts/mount-iso.cmd b/wimscripts/mount-iso.cmd deleted file mode 100644 index 3da8cb8..0000000 --- a/wimscripts/mount-iso.cmd +++ /dev/null @@ -1,2 +0,0 @@ -powershell Mount-DiskImage -ImagePath "C:\TEMP\Win10.iso" - diff --git a/wimscripts/umount-iso.cmd b/wimscripts/umount-iso.cmd deleted file mode 100644 index b20991f..0000000 --- a/wimscripts/umount-iso.cmd +++ /dev/null @@ -1,2 +0,0 @@ -powershell Dismount-Diskimage -ImagePath "C:\TEMP\Win10.iso" -