ProgrammingNeed help with url status check program
Posted:
ProgrammingNeed help with url status check programPosted:
Status: Offline
Joined: Apr 09, 201113Year Member
Posts: 4,994
Reputation Power: 14230
Motto: Wow crazy USA hamburger yes
Motto: Wow crazy USA hamburger yes
Status: Offline
Joined: Apr 09, 201113Year Member
Posts: 4,994
Reputation Power: 14230
Motto: Wow crazy USA hamburger yes
Not sure how many of you know about this stuff or if you can help but I figured why not post here.
So I have this script, super simple. Powershell script that pings a URL to see if its alive or not. Everything works great, but the issue is I have 1000s of URLs and it takes quite a while to ping all them and receive a response. Talking 15-20 mins to do about 10,000 of them. I'm sure there's a way to do this a little quicker. I've thought of running a few instances of this program at a time and "chunking" a url file of, lets say 10k and splitting it between 3 instances so each instance only has to fetch 3k~ URLs but they would be simultanious. I honestly don't know much about programming and this is a very rudimentary setup I have currently. Any help is appreciated |
#2. Posted:
Status: Offline
Joined: Jul 15, 201212Year Member
Posts: 3,556
Reputation Power: 15227
Status: Offline
Joined: Jul 15, 201212Year Member
Posts: 3,556
Reputation Power: 15227
From past experience creating a loop and using a subset, let's say 100 at a time.
You will probably see faster results |
- 0useful
- 0not useful
#3. Posted:
Status: Offline
Joined: Dec 02, 20203Year Member
Posts: 387
Reputation Power: 3040
Status: Offline
Joined: Dec 02, 20203Year Member
Posts: 387
Reputation Power: 3040
Will definitely be checking back for an answer. Ran into a similar problem when trying to compile a list of pc's to ping. Ended up just waiting the 1.5 hrs since I could not figure it out lmao |
- 0useful
- 0not useful
#4. Posted:
Status: Offline
Joined: May 18, 201113Year Member
Posts: 16,414
Reputation Power: 24459
Status: Offline
Joined: May 18, 201113Year Member
Posts: 16,414
Reputation Power: 24459
Use Invoke-WebRequest and the UseBasicParsing switch. If you just need to see if the page errors, Invoke-RestMethod will be faster. Add $ProgressPreference = "SilentlyContinue".
PowerShell parallelism isn't great. Your options are using jobs, runspaces, and running multiple instances of the script. devblogs.microsoft.com/scripting/...owershell/ devblogs.microsoft.com/scripting/...es-part-1/ |
- 4useful
- 0not useful
#5. Posted:
Status: Offline
Joined: Nov 05, 201311Year Member
Posts: 2,749
Reputation Power: 452
Status: Offline
Joined: Nov 05, 201311Year Member
Posts: 2,749
Reputation Power: 452
I have to ask, Why Powershell? Surely you can run something like Node, Python, PHP, or Ruby which has built-in support for making web requests? |
- 0useful
- 0not useful
Users browsing this topic: None