# File lib/specinfra/command/windows/base/port.rb, line 10
    def check_is_listening_with_protocol(port, protocol)
      Backend::PowerShell::Command.new do
        using 'is_port_listening.ps1'
        exec "IsPortListening -portNumber #{port} -protocol '#{protocol}'"
      end
    end