search
top

How To View Listening UDP Ports on Windows

Introduction From time to time we need to view “UDP” ports that are in a listening state on Windows. In this short post we will see how to do this with the netstat command. Process The process to view the UDP ports in listening state is simple. Open a command prompt and type, netstat -an | find “UDP” | more: C:\>netstat -an | find “UDP” | more UDP 0.0.0.0:982 *:* UDP... read more

top