18 lines
390 B
Bash
18 lines
390 B
Bash
#!/bin/sh
|
|
|
|
. ./settings.sh
|
|
|
|
# Download Debian Packages
|
|
apt update
|
|
apt install -y samba genisoimage wimtools cabextract
|
|
|
|
# setup temp-dirs:
|
|
mkdir -p ./temp/waik
|
|
|
|
# Download Windows Stuff:
|
|
WAIKURL="https://download.microsoft.com/download/8/E/9/8E9BBC64-E6F8-457C-9B8D-F6C9A16E6D6A/KB3AIK_EN.iso"
|
|
FILENAME="./temp/KB3AIK_EN.iso"
|
|
if ! [ -e $FILENAME ]; then
|
|
wget -nc -O $FILENAME $WAIKURL
|
|
fi
|