changelog shortlog graph tags branches changeset files revisions annotate raw help

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

changeset 344: 3e1218fe5721
parent: b80e6a7c7db5
author: Richard Westhaver <ellis@rwest.io>
date: Sun, 21 Jul 2024 19:31:29 -0400
permissions: -rwxr-xr-x
description: packy git unbundle
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 }