gpt4 book ai didi

PowerShell v5.1 测试网口

转载 作者:行者123 更新时间:2023-12-02 15:18:58 26 4
gpt4 key购买 nike

我想在 Windows 7 上使用 PowerShell v5.1 检查端口是否打开。

在装有 PowerShell v5.1 的 Windows 10 笔记本电脑上,我可以使用

Test-NetConnection -ComputerName <IP> -Port <Port>

但是,在我的 Windows 7 笔记本电脑上 Test-NetConnection未找到 cmdlet。我有Test-Connection可用,但该 cmdlet 不允许我指定端口。

有没有办法在 Windows 7 上使用 PowerShell 5.1 测试网络端口是否打开?如何恢复 Test-NetConnection cmdlet?

最佳答案

由于 System.Net.Sockets.TcpClient 在端口未打开时似乎会抛出错误,因此我宁愿在此处使用 try/catch :

$ip = "127.0.0.1"
$port = "80"

try {
$socket = New-Object System.Net.Sockets.TcpClient($ip, $port)

if($socket.Connected) {
"success"
$socket.Close()
}
} catch {
"error"
}

关于PowerShell v5.1 测试网口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41645763/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com