Using the nslookup command, we can get a list of all IP Addresses and their computer names in the network.
[CMD - Get IP Addresses and Computer Names]
CFFCS | CarrzSynEdit: | CMD (Windows Command Prompt) | L (Linux)
for /f "tokens=1" %i in ('arp -a ^| findstr /i dynamic') do @for /f "tokens=2 delims= " %n in ('nslookup %i 2^>nul ^| findstr /i "Name:"') do @echo %i ^| %n

Output will look similar to this.
192.168.2.13computer1.domain.local
192.168.4.5ServerOne.domain.local
192.168.6.4MailServer.domain.local
192.168.50.75DBServer.domain.local
This will help when you need to know what systems are using the network at any given time. (These are Static IPs assigned to the devices, and it will not show the IP Address of the computer running the command.)