Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8773831
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T18:24:18+00:00 2026-06-13T18:24:18+00:00

I currently have a script that listens on a specified port. I would like

  • 0

I currently have a script that listens on a specified port. I would like this script to stop running after 5 seconds, regardless of getting connected to or not. Is there a way that I am able to do that? Some sort of delay

function listen-port ($port) {
    $endpoint = new-object System.Net.IPEndPoint ([ipaddress]::any,$port)
    $listener = new-object System.Net.Sockets.TcpListener $endpoint
    $listener.start()
    $listener.AcceptTcpClient() # will block here until connection
    $listener.stop()
    }
listen-port 25
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T18:24:19+00:00Added an answer on June 13, 2026 at 6:24 pm

    If you are not going to do anything with the client, then you don’t have to accept them and can just stop listening:

    function listen-port ($port) {
    $endpoint = new-object System.Net.IPEndPoint ([ipaddress]::any,$port)
    $listener = new-object System.Net.Sockets.TcpListener $endpoint
    $listener.start()
    Start-Sleep -s 5
    $listener.stop()
    }
    

    You can utilize the asynchronous AcceptTcpClient methods (BeginAcceptTcpClient,EndAcceptTcpClient) if you need to do something with the client:

    function listen-port ($port) {
    $endpoint = new-object System.Net.IPEndPoint ([ipaddress]::any,$port)
    $listener = new-object System.Net.Sockets.TcpListener $endpoint
    $listener.start()
    $ar = $listener.BeginAcceptTcpClient($null,$null) # will not block here until connection
    
    if ($ar.AsyncWaitHandle.WaitOne([timespan]'0:0:5') -eq $false) 
    { 
     Write-Host "no connection within 5 seconds" 
    }
    else
    { 
     Write-Host "connection within 5 seconds"
     $client = $listener.EndAcceptTcpClient($ar)
    }
    
    $listener.stop()
    }
    

    Another option would be to use the Pending method on the listener:

    function listen-port ($port) {
    $endpoint = new-object System.Net.IPEndPoint ([ipaddress]::any,$port)
    $listener = new-object System.Net.Sockets.TcpListener $endpoint
    $listener.start()
    Start-Sleep -s 5
    
    if ($listener.Pending() -eq $false)
    {
     Write-Host "nobody connected"
    } 
    else
    { 
     Write-Host "somebody connected"
     $client = $listener.AcceptTcpClient()
    }
    
    $listener.stop()
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I currently have a script that looks something like this, $doc = new DOMDocument();
Not sure how to word this. I currently have a script that I would
I currently have a script that listens for geolocated tweets that include given keywords
I currently have a script that does something like ./a | ./b | ./c
I currently have a shell script that process many images one after the other,
I currently have a script that deletes old log files and then takes any
I currently have a script that scrapes proxies off websites, but I'm just wondering
Currently we have a script that does maven build + tomcat deploy. Deploying to
I currently have a ajax script that dynamically builds two select boxes enabled with
I currently have a python script that runs every few minutes and picks up

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.