2024-10-01 15:11:03 +02:00
|
|
|
|
<#
|
2023-07-27 09:12:40 +02:00
|
|
|
|
.SYNOPSIS
|
|
|
|
|
Checks the hardware
|
|
|
|
|
.DESCRIPTION
|
|
|
|
|
This PowerShell script queries the hardware details of the local computer and prints it.
|
|
|
|
|
.EXAMPLE
|
|
|
|
|
PS> ./check-hardware.ps1
|
|
|
|
|
|
|
|
|
|
H A R D W A R E
|
|
|
|
|
✅ Intel(R) Core(TM) i5-6400 CPU @ 2.70GHz (CPU0, 2701MHz, socket U3E1, 30.1°C)
|
|
|
|
|
...
|
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
|
.NOTES
|
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
|
#>
|
|
|
|
|
|
2024-05-17 19:31:10 +02:00
|
|
|
|
Write-Host "`n H A R D W A R E" -foregroundColor green
|
2023-07-27 09:12:40 +02:00
|
|
|
|
& "$PSScriptRoot/check-cpu.ps1"
|
|
|
|
|
& "$PSScriptRoot/check-ram.ps1"
|
|
|
|
|
& "$PSScriptRoot/check-gpu.ps1"
|
2024-10-01 15:33:53 +02:00
|
|
|
|
& "$PSScriptRoot/check-motherboard.ps1"
|
2024-02-07 13:38:38 +01:00
|
|
|
|
& "$PSScriptRoot/check-bios.ps1"
|
2023-07-27 09:12:40 +02:00
|
|
|
|
& "$PSScriptRoot/check-smart-devices.ps1"
|
2023-08-23 17:14:06 +02:00
|
|
|
|
& "$PSScriptRoot/check-power.ps1"
|
2024-01-27 09:55:14 +01:00
|
|
|
|
& "$PSScriptRoot/check-drives.ps1"
|
2023-08-06 21:35:36 +02:00
|
|
|
|
exit 0 # success
|