mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-26 11:43:08 +03:00
17 lines
349 B
PowerShell
17 lines
349 B
PowerShell
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
|
|
|
|
# get python infos
|
|
python -V
|
|
|
|
# get cargo info
|
|
cargo --version
|