2022-11-17 20:02:26 +01:00
|
|
|
## The check-gpu.ps1 PowerShell Script
|
|
|
|
|
|
|
|
check-gpu.ps1
|
2022-11-17 19:46:02 +01:00
|
|
|
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
```powershell
|
|
|
|
|
|
|
|
|
|
|
|
[<CommonParameters>]
|
|
|
|
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
|
|
|
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
|
|
|
```
|
|
|
|
|
2022-11-17 20:02:26 +01:00
|
|
|
## Source Code
|
|
|
|
<#
|
|
|
|
.SYNOPSIS
|
|
|
|
Checks the GPU
|
|
|
|
.DESCRIPTION
|
|
|
|
This PowerShell script queries GPU details and prints it.
|
|
|
|
.EXAMPLE
|
|
|
|
PS> ./check-gpu
|
|
|
|
.LINK
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
.NOTES
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
#>
|
|
|
|
|
|
|
|
function Bytes2String { param([int64]$Bytes)
|
|
|
|
if ($Bytes -lt 1000) { return "$Bytes bytes" }
|
|
|
|
$Bytes /= 1000
|
|
|
|
if ($Bytes -lt 1000) { return "$($Bytes)KB" }
|
|
|
|
$Bytes /= 1000
|
|
|
|
if ($Bytes -lt 1000) { return "$($Bytes)MB" }
|
|
|
|
$Bytes /= 1000
|
|
|
|
if ($Bytes -lt 1000) { return "$($Bytes)GB" }
|
|
|
|
$Bytes /= 1000
|
|
|
|
return "$($Bytes)TB"
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
if ($IsLinux) {
|
|
|
|
# TODO
|
|
|
|
} else {
|
|
|
|
$Details = Get-WmiObject Win32_VideoController
|
|
|
|
$Model = $Details.Caption
|
|
|
|
$RAMSize = $Details.AdapterRAM
|
|
|
|
$ResWidth = $Details.CurrentHorizontalResolution
|
|
|
|
$ResHeight = $Details.CurrentVerticalResolution
|
|
|
|
$BitsPerPixel = $Details.CurrentBitsPerPixel
|
|
|
|
$RefreshRate = $Details.CurrentRefreshRate
|
|
|
|
$DriverVersion = $Details.DriverVersion
|
|
|
|
$Status = $Details.Status
|
|
|
|
"✅ $($Model): $(Bytes2String $RAMSize) RAM, $($ResWidth)x$($ResHeight) pixels, $BitsPerPixel bit, $RefreshRate Hz, driver $DriverVersion, status $Status"
|
|
|
|
}
|
|
|
|
} catch {
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
2022-11-17 19:46:02 +01:00
|
|
|
*Generated by convert-ps2md.ps1 using the comment-based help of check-gpu.ps1*
|