Description
This script is something I have users run and email me a simple text file output to gain information on their networking setup in windows.
It grabs their IP address information, their routing table, and their active DNS list.
Source Code
@echo off
del NETDIAGNOSTICS.log & ipconfig /all >> NETDIAGNOSTICS.log & route print >> NETDIAGNOSTICS.log & ipconfig /displaydns >> Desktop\NETDIAGNOSTICS.log
Screenshots