检索 TCP 和 UDP 连接信息所用的.NET 方法如下:
[Net.NetworkInformation.IPGlobalProperties]::GetIPGlobalProperties().GetActiveTcpConnections()
[Net.NetworkInformation.IPGlobalProperties]::GetIPGlobalProperties().GetActiveUdpConnections()
我好奇是否有办法通过VBScript做同样的事情吗?我希望所有连接的输出,类似于一个“em>netstat - an
以下是一些用于引用.Net方法的链接: