README-usage-release.ps1 348 B

1234567891011
  1. ## PowerShell5.1 on win10/win11
  2. # --- 确认版本
  3. $PSVersionTable.PSVersion
  4. # --- 安装 choco | run as administrator
  5. Set-ExecutionPolicy Bypass -Scope Process -Force
  6. Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
  7. # --- 安装 msvc | run as administrator
  8. choco install vcredist-all -y