Add check-hardware.ps1, check-software.ps1, and check-network.ps1

This commit is contained in:
Markus Fleschutz
2023-07-27 09:12:40 +02:00
parent 7361fbe8d6
commit c2837f1a71
4 changed files with 84 additions and 26 deletions

24
Scripts/check-network.ps1 Normal file
View File

@ -0,0 +1,24 @@
<#
.SYNOPSIS
Checks the network details
.DESCRIPTION
This PowerShell script queries the network details of the local computer and prints it.
.EXAMPLE
PS> ./check-network.ps1
N E T W O R K
✅ Firewall enabled
...
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
" "
& "$PSScriptRoot/write-green.ps1" " N E T W O R K"
& "$PSScriptRoot/check-firewall"
& "$PSScriptRoot/check-ping.ps1"
& "$PSScriptRoot/check-dns.ps1"
& "$PSScriptRoot/check-vpn.ps1"
exit 0 # success