hurl/bin/environment.ps1
2022-12-28 10:20:27 +01:00

23 lines
500 B
PowerShell

Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
powershell write-host -foregroundcolor Cyan "----- context -----"
# get windows infos
Get-ComputerInfo -Property WindowsProductName,WindowsVersion,OsHardwareAbstractionLayer
# get powershell infos
(Get-Variable PSVersionTable -ValueOnly).PSVersion
# get vcpkg infos
vcpkg --version
if ($LASTEXITCODE) { Throw }
# get python infos
python -V
if ($LASTEXITCODE) { Throw }
# get cargo info
cargo --version
if ($LASTEXITCODE) { Throw }