mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-22 16:03:22 +01:00
25 lines
638 B
PowerShell
Executable File
25 lines
638 B
PowerShell
Executable File
<#
|
|
.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
|
|
✅ Online with 30ms latency (16ms..56ms, 0/10 loss)
|
|
...
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
.NOTES
|
|
Author: Markus Fleschutz | License: CC0
|
|
#>
|
|
|
|
Write-Host "`n N E T W O R K" -foregroundColor green
|
|
& "$PSScriptRoot/ping-remote-hosts.ps1"
|
|
& "$PSScriptRoot/check-firewall"
|
|
& "$PSScriptRoot/check-dns.ps1"
|
|
& "$PSScriptRoot/check-vpn.ps1"
|
|
& "$PSScriptRoot/list-public-ip.ps1"
|
|
& "$PSScriptRoot/ping-local-hosts.ps1"
|
|
exit 0 # success |