Skip to content

Instantly share code, notes, and snippets.

@Colby-PDQ
Colby-PDQ / Network Adapter IP Addresses.sql
Created August 1, 2019 22:10
A PDQ Inventory SQL Report that shows the contents of the NetworkAdapterIPAddresses table
SELECT
Computers.Name AS "Computer Name"
, NetworkAdapterIPAddresses.Address AS "IP Address"
, NetworkAdapterIPAddresses.Subnet AS "Subnet Mask"
, NetworkAdapters.Name AS "Adapter Name"
, NetworkAdapters.NetConnectionId AS "Connection Name"
, NetworkAdapters.AdapterType AS "Adapter Type"
, NetworkAdapters.MacAddress AS "MAC Address"
, NetworkAdapters.NetConnectionStatus AS "Connection Status"
, NetworkAdapters.ConnectionSpeed AS "Connection Speed"