2024-11-08 12:38:20 +01:00
|
|
|
The *check-software.ps1* Script
|
|
|
|
===========================
|
2023-07-29 09:45:37 +02:00
|
|
|
|
2023-10-19 08:12:00 +02:00
|
|
|
This PowerShell script queries the software status of the local computer and prints it.
|
2023-07-29 09:45:37 +02:00
|
|
|
|
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-software.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-software.ps1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
S O F T W A R E
|
2023-09-01 17:53:03 +02:00
|
|
|
✅ Windows 10 Pro 64-Bit (v10.0.19045, since 5/2/2021)
|
2023-07-29 09:45:37 +02:00
|
|
|
...
|
|
|
|
|
|
|
|
```
|
|
|
|
|
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 software
|
|
|
|
.DESCRIPTION
|
2023-10-19 08:12:00 +02:00
|
|
|
This PowerShell script queries the software status of the local computer and prints it.
|
2023-07-29 09:45:37 +02:00
|
|
|
.EXAMPLE
|
|
|
|
PS> ./check-software.ps1
|
|
|
|
|
|
|
|
S O F T W A R E
|
2023-09-01 17:53:03 +02:00
|
|
|
✅ Windows 10 Pro 64-Bit (v10.0.19045, since 5/2/2021)
|
2023-07-29 09:45:37 +02:00
|
|
|
...
|
|
|
|
.LINK
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
.NOTES
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
#>
|
|
|
|
|
2024-05-19 10:25:56 +02:00
|
|
|
Write-Host "`n S O F T W A R E" -foregroundColor green
|
2023-07-29 09:45:37 +02:00
|
|
|
& "$PSScriptRoot/check-os.ps1"
|
2023-10-19 08:12:00 +02:00
|
|
|
& "$PSScriptRoot/check-uptime.ps1"
|
2023-07-29 09:45:37 +02:00
|
|
|
& "$PSScriptRoot/check-apps.ps1"
|
2023-09-01 17:53:03 +02:00
|
|
|
& "$PSScriptRoot/check-powershell.ps1"
|
2023-07-29 09:45:37 +02:00
|
|
|
& "$PSScriptRoot/check-time-zone.ps1"
|
|
|
|
& "$PSScriptRoot/check-swap-space.ps1"
|
|
|
|
exit 0 # success
|
|
|
|
```
|
|
|
|
|
2024-11-20 11:52:20 +01:00
|
|
|
*(generated by convert-ps2md.ps1 as of 11/20/2024 11:51:52)*
|