2024-10-01 15:11:03 +02:00
|
|
|
|
<#
|
2023-07-27 09:12:40 +02:00
|
|
|
|
.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
|
2023-09-12 22:07:26 +02:00
|
|
|
|
✅ Online with 30ms latency (16ms..56ms, 0/10 loss)
|
2023-07-27 09:12:40 +02:00
|
|
|
|
...
|
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
|
.NOTES
|
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
|
#>
|
|
|
|
|
|
2024-05-17 19:31:10 +02:00
|
|
|
|
Write-Host "`n N E T W O R K" -foregroundColor green
|
2024-06-18 20:22:51 +02:00
|
|
|
|
& "$PSScriptRoot/list-ip-addresses.ps1"
|
2024-10-01 15:11:03 +02:00
|
|
|
|
& "$PSScriptRoot/ping-local-hosts.ps1"
|
2024-09-14 15:12:53 +02:00
|
|
|
|
& "$PSScriptRoot/list-ssh-key.ps1"
|
2024-01-03 12:09:47 +01:00
|
|
|
|
& "$PSScriptRoot/ping-remote-hosts.ps1"
|
2023-09-12 22:07:26 +02:00
|
|
|
|
& "$PSScriptRoot/check-firewall"
|
2023-07-27 09:12:40 +02:00
|
|
|
|
& "$PSScriptRoot/check-dns.ps1"
|
|
|
|
|
& "$PSScriptRoot/check-vpn.ps1"
|
2024-09-14 15:12:53 +02:00
|
|
|
|
exit 0 # success
|