Various utility scripts for my personal use
PowerShell script to bootstrap a new system with Python and other development tools.
Run script with no parameters, skipping the optional installs:
Invoke-WebRequest -UseBasicParsing -Uri "https://raw.githubusercontent.com/henrikwilhelmsen/scripts/main/bootstrap.ps1" -OutFile "./bootstrap.ps1"; &"./bootstrap.ps1"; & Remove-Item "./bootstrap.ps1"
Run script directly and install a specific version of Python (3.11) and install Git:
Invoke-WebRequest -UseBasicParsing -Uri "https://raw.githubusercontent.com/henrikwilhelmsen/scripts/main/bootstrap.ps1" -OutFile "./bootstrap.ps1"; &"./bootstrap.ps1" -Python -PythonVersion 311 -Git; & Remove-Item "./bootstrap.ps1"