Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 707 Bytes

readme.md

File metadata and controls

21 lines (17 loc) · 707 Bytes

configs

Pre-Bootstrap

  • Windows Update
  • Update drivers
  • winget upgrade Microsoft.WindowsTerminal --accept-source-agreements

Bootstrap

$bootstrapDuration = [Diagnostics.Stopwatch]::StartNew()
Set-ExecutionPolicy RemoteSigned -Force
winget install --id Git.Git
winget install --id Microsoft.PowerShell
$env:Path = [Environment]::GetEnvironmentVariable("Path", "Machine") + ";" + [Environment]::GetEnvironmentVariable("Path", "User")
git clone https://github.com/benallred/configs.git C:\BenLocal\git\configs
pwsh -NoProfile -c "Install-Module PSReadLine -Force"
Write-Output "Bootstrap duration: $($bootstrapDuration.Elapsed)"
pwsh -NoExit C:\BenLocal\git\configs\config.ps1