mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 00:54:04 +01:00
61 lines
1.4 KiB
Markdown
61 lines
1.4 KiB
Markdown
## Script: *check-hardware.ps1*
|
|
|
|
This PowerShell script queries the hardware details of the local computer and prints it.
|
|
|
|
## Parameters
|
|
```powershell
|
|
check-hardware.ps1 [<CommonParameters>]
|
|
|
|
[<CommonParameters>]
|
|
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
|
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
|
```
|
|
|
|
## Example
|
|
```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)
|
|
...
|
|
|
|
```
|
|
|
|
## Notes
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
## Related Links
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
## Script Content
|
|
```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
|
|
#>
|
|
|
|
" "
|
|
& "$PSScriptRoot/write-green.ps1" " H A R D W A R E"
|
|
& "$PSScriptRoot/check-cpu.ps1"
|
|
& "$PSScriptRoot/check-ram.ps1"
|
|
& "$PSScriptRoot/check-gpu.ps1"
|
|
& "$PSScriptRoot/check-smart-devices.ps1"
|
|
& "$PSScriptRoot/check-drives.ps1"
|
|
& "$PSScriptRoot/check-battery.ps1"
|
|
exit 0 # success
|
|
```
|
|
|
|
*(generated by convert-ps2md.ps1 using the comment-based help of check-hardware.ps1 as of 07/29/2023 09:55:09)*
|