PowerShell/scripts/check-network.ps1

28 lines
677 B
PowerShell
Raw Normal View History

2024-10-01 15:11:03 +02:00
<#
.SYNOPSIS
2024-10-02 10:14:17 +02:00
Checks the network
.DESCRIPTION
This PowerShell script queries the network details of the local computer and prints it.
.EXAMPLE
PS> ./check-network.ps1
2024-10-02 10:14:17 +02:00
N E T W O R K
Firewall enabled
...
.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-10-01 15:37:20 +02:00
& "$PSScriptRoot/check-firewall"
2024-10-02 10:14:17 +02:00
& "$PSScriptRoot/list-local-ip.ps1"
2024-10-01 17:18:36 +02:00
& "$PSScriptRoot/ping-local-devices.ps1"
2024-10-02 10:14:17 +02:00
& "$PSScriptRoot/check-vpn.ps1"
& "$PSScriptRoot/list-internet-ip.ps1"
& "$PSScriptRoot/ping-remote-hosts.ps1"
& "$PSScriptRoot/check-dns.ps1"
2024-10-02 10:14:17 +02:00
& "$PSScriptRoot/list-ssh-key.ps1"
2024-09-14 15:12:53 +02:00
exit 0 # success