changelog shortlog graph tags branches changeset files file revisions raw help

Mercurial > infra / annotate 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
190
b80e6a7c7db5 add cargo-bloat to cargo-tools and add win11 install script
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
1
 # make-windows-iso.nu
b80e6a7c7db5 add cargo-bloat to cargo-tools and add win11 install script
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
2
 let iso_name = 'windows11.iso'
b80e6a7c7db5 add cargo-bloat to cargo-tools and add win11 install script
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
3
 def main [iso_name:string="windows11.iso",device:string] {
b80e6a7c7db5 add cargo-bloat to cargo-tools and add win11 install script
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
4
   wget "https://software.download.prss.microsoft.com/dbazure/Win11_23H2_English_x64v2.iso" -O $iso_name
b80e6a7c7db5 add cargo-bloat to cargo-tools and add win11 install script
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
5
   dd if=$iso_name of=$device
b80e6a7c7db5 add cargo-bloat to cargo-tools and add win11 install script
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
6
 }