PowerShell 技能连载 - 谁在监听?(第二部分)
如果您的系统是 Windows 8 或 Windows Server 2012 或以上版本,您可以使用 Get-NetTcpConnection
来找出哪个网络端口正在使用中,以及谁在监听这些端口。
以下脚本不仅列出正在使用的端口而且列出了正在监听该端口的进程。如果进程是 “svchost”,该脚本还会找出是哪个服务启动了这个进程:
1 | #requires -Version 3 -Modules NetTCPIP |
结果类似如下:
LocalPort OwningProcess Name
--------- ------------- ----
135 916 RpcEptMapper,RpcSs
139 4 System
445 4 System
5354 2480 mDNSResponder
5985 4 System
7680 544 Appinfo,BITS,Browser,CertPropSvc,DoSvc,iphlpsvc,Lanm...
7779 4 System
15292 7364 Adobe Desktop Service
27015 2456 AppleMobileDeviceService
(...)
PowerShell 技能连载 - 谁在监听?(第二部分)