PowerShell/scripts/list-cpu.ps1

25 lines
471 B
PowerShell
Raw Normal View History

2023-10-31 12:33:36 +01:00
<#
.SYNOPSIS
Lists CPU details
.DESCRIPTION
This PowerShell script lists the CPU details.
.EXAMPLE
2023-08-06 21:35:36 +02:00
PS> ./list-cpu.ps1
Caption : Intel64 Family 6 Model 94 Stepping 3
DeviceID : CPU0
...
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
try {
Get-WmiObject -Class Win32_Processor
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
2023-08-06 21:35:36 +02:00
}