在 powershell >= 5.1 下
我得到:
PS C:\> get-service -Status Running
Get-Service: A parameter cannot be found that matches parameter name 'Status'
但该财产确实存在吗?
PS C:\> get-service | Get-Member
在 powershell >= 5.1 下
我得到:
PS C:\> get-service -Status Running
Get-Service: A parameter cannot be found that matches parameter name 'Status'
但该财产确实存在吗?
PS C:\> get-service | Get-Member
在 Windows Server 2022 下,我已经阻止了端口 21 UDP/TCP(反正我也不使用它!!)但是:
nmap -SV <my_server>
仍然继续给我:
PORT STATE SERVICE
21/tcp filtered ftp
为什么?我一直以为没有任何规则的端口默认是关闭的。
是因为防火墙使用了“隐身模式”吗?