This commit is contained in:
Michael H.G. Schmidt 2020-12-20 13:37:23 +01:00
parent a3c8e2c60a
commit 093dee4b6a
9 changed files with 50 additions and 0 deletions

16
autounattend.cmd Normal file
View File

@ -0,0 +1,16 @@
echo off
echo ####### autounattend.cmd #######
echo getting 7zip and TOOLS archive from webserver ...
ftp -s:autounattend.ftp
echo extracting TOOLS archive ...
7z x -aoa -oc:\ c:\tools.zip
echo deleting c:\tools.zip ..
del c:\tools.zip
echo ####### autounattend.cmd #######
timeout /t 3

11
autounattend.ftp Normal file
View File

@ -0,0 +1,11 @@
open exabyte-systems.com
w10install
9054c6cf-c54c
binary
lcd c:\
get tools.zip
lcd c:\windows
get 7z.exe
get 7z.dll
bye

View File

@ -0,0 +1,4 @@
del c:\TEMP\Win10*.iso
ftp -i -s:download-iso.ftp
move c:\TEMP\Win10*.iso c:\TEMP\Win10.iso

View File

@ -0,0 +1,8 @@
open exabyte-systems.com
w10install
9054c6cf-c54c
binary
lcd c:\TEMP
mget Win10*.iso
bye

View File

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

View File

@ -0,0 +1,2 @@
dism /Get-WimInfo /WimFile:D:\sources\install.esd

2
wimscripts/mount-iso.cmd Normal file
View File

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

3
wimscripts/mount-wim.cmd Normal file
View File

@ -0,0 +1,3 @@
mkdir C:\WIM
dism /Mount-Wim /WimFile:install.wim /Name:"Windows 10 Pro N" /MountDir:C:\wim

View File

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