# Given I plan to use this repo to setup brand new fresh installs of windows. # and the repo will be using typescript and dsc, I need to install the following packages # to 'bootstrap' the system. # Install DSC # https://learn.microsoft.com/en-us/powershell/dsc/overview?view=dsc-3.0&preserveView=true#install-dsc-on-windows-with-winget # winget search DesiredStateConfiguration --source msstore # Name Id Version Source # --------------------------------------------------------------- # DesiredStateConfiguration 9NVTPZWRC6KQ Unknown msstore # DesiredStateConfiguration-Preview 9PCX3HX4HZ0Z Unknown msstore winget install --id 9NVTPZWRC6KQ --source msstore # Install Bun # TODO: Do we want the scripted install or the winget install? winget install -e --id Oven-sh.Bun # powershell -c "irm bun.sh/install.ps1|iex"