PowerShell/docs/check-hardware.md

68 lines
1.6 KiB
Markdown
Raw Permalink Normal View History

2024-11-08 12:38:20 +01:00
The *check-hardware.ps1* Script
===========================
2023-07-29 09:45:37 +02:00
This PowerShell script queries the hardware details of the local computer and prints it.
2023-07-29 10:04:38 +02:00
Parameters
----------
2023-07-29 09:45:37 +02:00
```powershell
2024-11-08 12:35:11 +01:00
/home/markus/Repos/PowerShell/scripts/check-hardware.ps1 [<CommonParameters>]
2023-07-29 09:45:37 +02:00
[<CommonParameters>]
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
```
2023-07-29 10:04:38 +02:00
Example
-------
2023-07-29 09:45:37 +02:00
```powershell
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)
...
```
2023-07-29 10:04:38 +02:00
Notes
-----
2023-07-29 09:45:37 +02:00
Author: Markus Fleschutz | License: CC0
2023-07-29 10:04:38 +02:00
Related Links
-------------
2023-07-29 09:45:37 +02:00
https://github.com/fleschutz/PowerShell
2023-07-29 10:04:38 +02:00
Script Content
--------------
2023-07-29 09:45:37 +02:00
```powershell
<#
.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-19 10:25:56 +02:00
Write-Host "`n H A R D W A R E" -foregroundColor green
2023-07-29 09:45:37 +02:00
& "$PSScriptRoot/check-cpu.ps1"
& "$PSScriptRoot/check-ram.ps1"
& "$PSScriptRoot/check-gpu.ps1"
2024-11-08 12:35:11 +01:00
& "$PSScriptRoot/check-motherboard.ps1"
2024-03-27 17:36:59 +01:00
& "$PSScriptRoot/check-bios.ps1"
2023-07-29 09:45:37 +02:00
& "$PSScriptRoot/check-smart-devices.ps1"
2023-09-01 17:53:03 +02:00
& "$PSScriptRoot/check-power.ps1"
2024-03-27 17:36:59 +01:00
& "$PSScriptRoot/check-drives.ps1"
2023-07-29 09:45:37 +02:00
exit 0 # success
```
2024-11-20 11:52:20 +01:00
*(generated by convert-ps2md.ps1 as of 11/20/2024 11:51:51)*