Write-Host "Dismounting ISO..." Dismount-DiskImage -ImagePath (Resolve-Path $IsoName)

if ($UsbDiskNumber -ne "") Write-Host "Writing ISO to USB disk number $UsbDiskNumber (will erase disk). Confirm? (Y/N)" $c = Read-Host if ($c -eq "Y") # Example using diskpart + imagex/other tools is complex; recommend using Rufus or Win32DiskImager for reliable writing. Write-Host "Please use a tool like Rufus or Win32 Disk Imager to write the ISO to the USB device." else Write-Host "Skipped USB write."

Write-Host "Mounting ISO..." $mount = Mount-DiskImage -ImagePath (Resolve-Path $IsoName) -PassThru $vol = ($mount | Get-Volume)[0].DriveLetter + ":" New-Item -ItemType Directory -Force -Path $TargetDir | Out-Null

echo "Mounting ISO..." MNT=$(mktemp -d) sudo mount -o loop "$ISO_NAME" "$MNT"

#!/usr/bin/env bash set -euo pipefail

mkdir -p "$TARGET_DIR" echo "Downloading $ISO_URL..." curl -L -o "$ISO_NAME" "$ISO_URL"

Write-Host "Copying files..." robocopy "$vol\" "$TargetDir\" /MIR