2024-10-01 15:11:03 +02:00
|
|
|
|
<#
|
2022-10-04 15:25:06 +02:00
|
|
|
|
.SYNOPSIS
|
|
|
|
|
Lists NIC details
|
|
|
|
|
.DESCRIPTION
|
|
|
|
|
This PowerShell script lists the details of the installed network interfaces.
|
|
|
|
|
.EXAMPLE
|
2023-08-06 21:35:36 +02:00
|
|
|
|
PS> ./list-nic.ps1
|
2022-10-04 15:25:06 +02:00
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
|
.NOTES
|
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
|
#>
|
|
|
|
|
|
|
|
|
|
try {
|
2022-10-17 19:55:53 +02:00
|
|
|
|
Get-WmiObject -Class Win32_NetworkAdapterConfiguration | Format-Table -property ServiceName,Description,IPAddress,DHCPEnabled -AutoSize
|
2022-10-04 15:25:06 +02:00
|
|
|
|
exit 0 # success
|
|
|
|
|
} catch {
|
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
|
|
|
exit 1
|
2023-08-06 21:35:36 +02:00
|
|
|
|
}
|