mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-12-16 11:40:53 +01:00
Update check-gpu.ps1
This commit is contained in:
parent
a2d2aaa932
commit
2de3ecc59c
@ -5,7 +5,6 @@
|
|||||||
This PowerShell script queries GPU details and prints it.
|
This PowerShell script queries GPU details and prints it.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./check-gpu
|
PS> ./check-gpu
|
||||||
CPU is 30.3°C warm.
|
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
.NOTES
|
.NOTES
|
||||||
@ -25,6 +24,9 @@ function Bytes2String { param([int64]$Bytes)
|
|||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
if ($IsLinux) {
|
||||||
|
# TODO
|
||||||
|
} else {
|
||||||
$Details = Get-WmiObject Win32_VideoController
|
$Details = Get-WmiObject Win32_VideoController
|
||||||
$Model = $Details.Caption
|
$Model = $Details.Caption
|
||||||
$RAMSize = $Details.AdapterRAM
|
$RAMSize = $Details.AdapterRAM
|
||||||
@ -35,6 +37,7 @@ try {
|
|||||||
$DriverVersion = $Details.DriverVersion
|
$DriverVersion = $Details.DriverVersion
|
||||||
$Status = $Details.Status
|
$Status = $Details.Status
|
||||||
"✅ $Model ($(Bytes2String $RAMSize), $ResWidth x $ResHeight pixels, $BitsPerPixel bit, $RefreshRate Hz, driver $DriverVersion, status $Status)."
|
"✅ $Model ($(Bytes2String $RAMSize), $ResWidth x $ResHeight pixels, $BitsPerPixel bit, $RefreshRate Hz, driver $DriverVersion, status $Status)."
|
||||||
|
}
|
||||||
} catch {
|
} catch {
|
||||||
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||||
exit 1
|
exit 1
|
||||||
|
Loading…
Reference in New Issue
Block a user