changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > infra / scripts/make-windows-iso.nu

changeset 322: 167a8ece2416
parent: b80e6a7c7db5
author: Richard Westhaver <ellis@rwest.io>
date: Sun, 07 Jul 2024 21:18:15 -0400
permissions: -rwxr-xr-x
description: ugh2
1 # make-windows-iso.nu
2 let iso_name = 'windows11.iso'
3 def main [iso_name:string="windows11.iso",device:string] {
4  wget "https://software.download.prss.microsoft.com/dbazure/Win11_23H2_English_x64v2.iso" -O $iso_name
5  dd if=$iso_name of=$device
6 }