Perl 或 Java 端口上运行的应用程序的名称
Xampp 附带了一个名为 xampp-portcheck.exe 的简洁可执行文件。如果所需的端口空闲,则会响应,如果不空闲,则响应哪些应用程序正在这些端口上运行。
我可以通过访问 netstat 详细信息来检查某个端口上是否正在运行某些内容,但是如何在 Windows 中找出该端口上运行的应用程序呢?
Xampp comes with a neat executable called xampp-portcheck.exe. This responds with if the ports required are free, and if not, which applications are running on those ports.
I can check if something is running on a port, by accessing the netstat details, but how do I find out the application running on the port within Windows?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
CPAN 模块 Win32::IPHelper 提供对
GetExtendedTcpTable
为每个连接提供ProcessID
。Win32::Process::Info 提供有关所有正在运行的进程的信息。
将两者结合起来,我们得到:
输出:
Phewwww连接所有这些点非常费力。
The CPAN module Win32::IPHelper provides access to
GetExtendedTcpTable
which provides theProcessID
for each connection.Win32::Process::Info gives information about all running processes.
Combining the two, we get:
Output:
Phewwww it was exhausting connecting all these dots.