How to create a Ping monitoring tool with Microsoft Excel

แชร์
ฝัง
  • เผยแพร่เมื่อ 3 ต.ค. 2024

ความคิดเห็น • 372

  • @YourDailyHappyPill
    @YourDailyHappyPill 3 ปีที่แล้ว +75

    When they interview and ask how good are you in Ms Excel.
    This guy be like: bring me laptop. I will hacked your system using excel.

    • @abdainawi
      @abdainawi 3 ปีที่แล้ว +1

      1st he will respond text to speech

  • @electric9278
    @electric9278 3 ปีที่แล้ว +254

    Next video: How to built a OS using Ms Word 😉

  • @SyfulIslam-hh8dx
    @SyfulIslam-hh8dx 7 หลายเดือนก่อน

    Thank you for all free tutorials you give us. God bless you

  • @PLScience
    @PLScience 3 ปีที่แล้ว +1

    I was in need of this 10 years ago.

  • @martinmacapobre1262
    @martinmacapobre1262 3 ปีที่แล้ว +9

    This is what I am looking for. thanks a lot :)

  • @Shutyourjibbs
    @Shutyourjibbs 2 ปีที่แล้ว +1

    Amazing! This is exactly what I needed! Thank you!

  • @bone1411
    @bone1411 3 ปีที่แล้ว +2

    Thank you very much. Exactly what i needed and works perfect!

  • @raulherrera3233
    @raulherrera3233 2 ปีที่แล้ว

    Thank you so much! Exactly what I needed. Greetings from Panama!

    • @NETVN82
      @NETVN82  2 ปีที่แล้ว

      Glad it helped!

  • @eyhabsoft
    @eyhabsoft 3 ปีที่แล้ว +1

    Thank you for all free tutorials you give us. God bless you 👍

  • @arjunmurugan8084
    @arjunmurugan8084 2 ปีที่แล้ว +1

    Thanking you very much. It's working perfect !

    • @NETVN82
      @NETVN82  2 ปีที่แล้ว

      You're welcome!

  • @Æfsænti
    @Æfsænti 2 ปีที่แล้ว +1

    Thank you very much.

  • @abdullahalklbani7454
    @abdullahalklbani7454 3 ปีที่แล้ว

    😊 السَّلَامُ عَلَيْكُمْ وَرَحْمَةُ اللهِ وَبَرَكَاتُهُ 😊
    Thank you very much 😊
    That was amazing 👏

  • @kcraigo
    @kcraigo 2 ปีที่แล้ว +1

    Works perfect! Thank you!

    • @NETVN82
      @NETVN82  2 ปีที่แล้ว

      You're welcome!

    • @heisenbergwaffles
      @heisenbergwaffles 9 หลายเดือนก่อน

      Did you implement this in a corporate network?

  • @deshdeepakgoel1024
    @deshdeepakgoel1024 3 ปีที่แล้ว +8

    Nice, please also give some idea to get Mac address in saperate column near online offline status column

  • @gururajprabhu4187
    @gururajprabhu4187 3 ปีที่แล้ว +5

    Is it possible to put separate tab to capture date and time when the ping went offline and one more tab when it came online

  • @_-_ttt_-_
    @_-_ttt_-_ 3 ปีที่แล้ว +1

    Holy shit! Subbed.
    It will help me with literally whole corp network diagnosis♥️

    • @skynet1024
      @skynet1024 3 ปีที่แล้ว

      angry ip scanner

  • @LegendaryPhoenixReaction
    @LegendaryPhoenixReaction ปีที่แล้ว +1

    Wow you are the best and got a subscriber :cheers:

  • @chhelsopheak5725
    @chhelsopheak5725 3 ปีที่แล้ว

    Amazing videos, hope the next video is how to use remote desktop without lock screen.

  • @mteomteo747
    @mteomteo747 3 ปีที่แล้ว +2

    Great, this is what i need. Keep it up.

  • @zaheerraihan1249
    @zaheerraihan1249 3 ปีที่แล้ว +2

    You are genius.
    Thank you man 💕

  • @joaomarcelosantosdesousa430
    @joaomarcelosantosdesousa430 3 ปีที่แล้ว +3

    Deu certo aqui para mim tambem, show de bola. Brazil

  • @pixelhated348
    @pixelhated348 ปีที่แล้ว

    still usable. for some reason The command wasnt running coming from vba because it was thinking that the numbers in the string were still strings and wasnt accepting it as an actual value.
    but other than that runs great

  • @oguzsahinn
    @oguzsahinn 3 ปีที่แล้ว +1

    Thank you.
    We have more than 200 Client and now ı ll see on one page which is working

    • @nsbirdsformns4515
      @nsbirdsformns4515 3 ปีที่แล้ว

      Bro actually all time it will online status only showing every time I have to put offline but it showing online

    • @nickvalera1017
      @nickvalera1017 3 ปีที่แล้ว

      @@nsbirdsformns4515 probably theyre experiecing technical concern or intermitent network connection, i was just thinking is anyone can actually add more columns to show real time speed test

  • @dharvey24
    @dharvey24 3 ปีที่แล้ว +8

    Solved Error - "Method or data member not found" in the vba replace sheet1 with Sheets("Sheet1") in each instance it occurs. Don't replace the whole line just 'sheet1'. For example - Do Until sheet1.Range("F1").Value = "STOP" WILL NOW BE - Do Until Sheets("Sheet1").Range("F1").Value = "STOP"

    • @FinaLBeaTzGaming
      @FinaLBeaTzGaming 3 ปีที่แล้ว +1

      Thanks for the fix

    • @egelden
      @egelden 3 ปีที่แล้ว +1

      Another method would be to use ActiveSheet.Range("F1").Value = "STOP" instead of sheet1.Range("F1").Value = "STOP". In this case you can name the sheet whatever you want to.

    • @alejandrocoderch488
      @alejandrocoderch488 3 ปีที่แล้ว

      Sheet1 will not work if your Excel is not in English. Because of that, you can use the name of the Sheet or its caption, like you've said, Sheets("CaptionOfTheSheet")

  • @vishalmakwana2213
    @vishalmakwana2213 3 ปีที่แล้ว

    Thanks More Videos Excel learning 👍❤️👍

  • @sachinpoly9052
    @sachinpoly9052 3 ปีที่แล้ว +7

    you deserve more subscribers

  • @Krish9811
    @Krish9811 ปีที่แล้ว

    Is it possible to add Time in the next column, since when any line is down ? This is very much needed tool, I searched a lot for his. Thank You Very Much.

  • @andrewwickes1091
    @andrewwickes1091 3 ปีที่แล้ว

    I am definitely going to use this for footprinting for pentesting and ethical hacking.

  • @claudio1028
    @claudio1028 ปีที่แล้ว

    Muito obrigado! Funcionou aqui! Só tive que adaptar para PT-BR no código de Sheet1 para Planilha1!💡💡💡

  • @akashsharma2610
    @akashsharma2610 3 ปีที่แล้ว +2

    I have questions
    1. I want the destination ip should show in right side where start and stop have then what we have to change?
    2. Are they ping packet going simultaneously to every destination or one by one each as i shaw they were blinking one by one?
    3.if i add one more ip in those ip row so that will also work?

    • @NETVN82
      @NETVN82  3 ปีที่แล้ว

      you add one more ip in that ip row it still works normally

  • @PuraVidaAdventures
    @PuraVidaAdventures 3 ปีที่แล้ว

    Hi, great addon would be on adding that if Offline then it sends a email containing in Subject the IP Addres and Name of which is offline if offline for more then 10 checks or something similar!

  • @aung.thuaye
    @aung.thuaye 2 ปีที่แล้ว

    Thanks. Working correctly.

    • @NETVN82
      @NETVN82  2 ปีที่แล้ว

      Enjoy

  • @hornickt
    @hornickt 3 ปีที่แล้ว

    Thank you for the great new video and the download link. Great work.

  • @BillSummers-rv7kc
    @BillSummers-rv7kc ปีที่แล้ว

    This is great. Thank you!

    • @NETVN82
      @NETVN82  ปีที่แล้ว

      You're very welcome!

  • @mattri483
    @mattri483 2 ปีที่แล้ว

    Thank you very much. 👍

    • @NETVN82
      @NETVN82  2 ปีที่แล้ว

      You are welcome!

  • @manoushow6658
    @manoushow6658 3 ปีที่แล้ว +2

    Use the zom closest to the screen to compose poems. I access the Internet through my mobile phone. I don't have a notebook. I am Brazilian. I do not speak English. I use English translation.

  • @saleimQ8
    @saleimQ8 ปีที่แล้ว

    Thanks!

    • @NETVN82
      @NETVN82  ปีที่แล้ว

      Welcome!

  • @rameshpk8848
    @rameshpk8848 3 ปีที่แล้ว

    Thanks for the video. Good one for beginners like me..

  • @phucnbv
    @phucnbv ปีที่แล้ว

    thank you very much. I really admire you

    • @NETVN82
      @NETVN82  ปีที่แล้ว

      So nice of you

  • @ThangTran-hi3es
    @ThangTran-hi3es 3 ปีที่แล้ว +1

    Good job Visual Basic

  • @shoal2242
    @shoal2242 3 ปีที่แล้ว

    You bloody genius😂

  • @johnzavax
    @johnzavax 3 ปีที่แล้ว

    Much needed. Thanks a lot 😁

  • @hectorbolivar83
    @hectorbolivar83 3 ปีที่แล้ว

    Amazing as always happy 😊 thanks a lot

  • @rodolforodriguez70
    @rodolforodriguez70 ปีที่แล้ว

    I am going to be waiting for it

  • @eminence5223
    @eminence5223 3 ปีที่แล้ว

    This is very useful video thank you very much,
    i have a doubt in this if we have 50 ip address to test how it is working after finish 50 ip address test then only it will check first ip or the each ip will check each sec
    can you please help me to clear on this

  • @vlogmotofi4752
    @vlogmotofi4752 3 ปีที่แล้ว +5

    Would be cooler if you added the time for latency monitoring. 👍

    • @SeaWolfy
      @SeaWolfy 3 ปีที่แล้ว +1

      Did you found something about that? I'm trying to do the same but can't find anything..

    • @akhilskrishnan
      @akhilskrishnan 3 ปีที่แล้ว +2

      I am also looking for that

    • @SeaWolfy
      @SeaWolfy 3 ปีที่แล้ว

      He did it
      th-cam.com/video/KYl0oEw2edE/w-d-xo.html

    • @iHammouda
      @iHammouda ปีที่แล้ว

      @@SeaWolfy Are you still looking for this feature?

  • @SamehMustafa007
    @SamehMustafa007 3 ปีที่แล้ว +1

    Perfect perfect 👌👍👍

  • @lydhely7366
    @lydhely7366 3 ปีที่แล้ว

    Thanks a lot for this !

  • @rishi461990cool
    @rishi461990cool 3 ปีที่แล้ว

    Thank you

  • @sawomirgmur7497
    @sawomirgmur7497 ปีที่แล้ว

    thanks brother

    • @NETVN82
      @NETVN82  ปีที่แล้ว

      Welcome

  • @birincyray
    @birincyray 3 ปีที่แล้ว

    Thank you sir

  • @phuocduong663
    @phuocduong663 3 ปีที่แล้ว

    Wow thank you so much

  • @Freenotes4you
    @Freenotes4you 3 ปีที่แล้ว

    nice man can you make video if ip is offline then automatically send email or send telegram notification its really help us

  • @elfirizalsamsudin1979
    @elfirizalsamsudin1979 3 ปีที่แล้ว

    This is very cool...will the vb script allow you to ssh to a different host first then only run the ping?

  • @amitpatil6178
    @amitpatil6178 3 ปีที่แล้ว

    Nice and useful information. Thanks for sharing. Can you show us How to get a notification or mail alert if any IP address failed to ping.

  • @dadatata7228
    @dadatata7228 3 ปีที่แล้ว

    thanks you are the best

  • @sandol2225
    @sandol2225 3 ปีที่แล้ว

    thank you for the video. Is possible you can find city name instead on/off line?

  • @ecgarcia
    @ecgarcia 3 ปีที่แล้ว +2

    Any help to make it work with Libre Office?

  • @fabricioreyes2668
    @fabricioreyes2668 3 ปีที่แล้ว +2

    Me interesó, el video, por alguna casualidad no lo podría hacer en español para entenderle mas al tema

    • @paulinoramirez9529
      @paulinoramirez9529 3 ปีที่แล้ว +1

      Tampoco es que explique mucho el tema. Sólo te dice que hacer. Lo cuál lo logras sólo viendo el vídeo. Pero no da detalles del tema

  • @aldrinjeruinnavarro3461
    @aldrinjeruinnavarro3461 2 หลายเดือนก่อน

    Hi, did you use the 32bit Version of Excel? for macro features?

  • @leonardo_oliveira241
    @leonardo_oliveira241 3 ปีที่แล้ว

    That's why I always say that my Excel is basic!

  • @dimitrz2000
    @dimitrz2000 3 ปีที่แล้ว +1

    Great video, I advise you to use your real voice next time, trust me it would be more beautiful than robot voice .

  • @Ravel__
    @Ravel__ 3 ปีที่แล้ว +2

    Obrigado!!!

  • @jaysona7023
    @jaysona7023 ปีที่แล้ว

    thanks

    • @NETVN82
      @NETVN82  ปีที่แล้ว

      Welcome

  • @ProjeAdam.
    @ProjeAdam. 2 ปีที่แล้ว

    thank bro

    • @NETVN82
      @NETVN82  2 ปีที่แล้ว

      Thanks

  • @a.useronly2266
    @a.useronly2266 3 ปีที่แล้ว

    Thanks

  • @awannet
    @awannet 3 ปีที่แล้ว

    Thanks.. 👍👍👍👍

  • @PushpendraSharma-dj7zo
    @PushpendraSharma-dj7zo 3 ปีที่แล้ว

    Sir Nice vedio and very usefull. But can be solved if same ip address found then show ip conflict it can be possible please help

  • @janusviborgolesen9613
    @janusviborgolesen9613 3 ปีที่แล้ว +1

    Great video.
    Could it be possible to use the command "arp" to add MAC address to the IP addresses which were online?

    • @SanthoshBalajiRamesh
      @SanthoshBalajiRamesh ปีที่แล้ว +1

      this exact requirement i have made a video
      th-cam.com/video/0nDUNp19_OU/w-d-xo.html

  • @navedwaris2363
    @navedwaris2363 3 ปีที่แล้ว

    Thank You........

  • @susantaghosh1606
    @susantaghosh1606 3 ปีที่แล้ว +6

    Function Ping(strip)
    Dim objshell, boolcode
    Set objshell = CreateObject("Wscript.Shell")
    boolcode = objshell.Run("ping -n 1 -w 1000 " & strip, 0, True)
    If boolcode = 0 Then
    Ping = True
    Else
    Ping = False
    End If
    End Function
    Sub PingSystem()
    Dim strip As String
    Dim ws As Worksheet
    Set ws = Worksheets("Sheet1")
    Do Until ws.Range("F1").Value = "STOP"
    ws.Range("F1").Value = "TESTING"
    For introw = 2 To ActiveSheet.Cells(65536, 2).End(xlUp).Row
    strip = ActiveSheet.Cells(introw, 2).Value
    If Ping(strip) = True Then
    ActiveSheet.Cells(introw, 3).Value = "Online"
    ActiveSheet.Cells(introw, 3).Font.Color = RGB(0, 0, 0)
    Application.Wait (Now + TimeValue("0:00:01"))
    ActiveSheet.Cells(introw, 3).Font.Color = RGB(0, 200, 0)
    Else
    ActiveSheet.Cells(introw, 3).Value = "Offline"
    ActiveSheet.Cells(introw, 3).Interior.ColorIndex = 0
    ActiveSheet.Cells(introw, 3).Font.Color = RGB(200, 0, 0)
    Application.Wait (Now + TimeValue("0:00:01"))
    ActiveSheet.Cells(introw, 3).Interior.ColorIndex = 6
    End If
    If ws.Range("F1").Value = "STOP" Then
    Exit For
    End If
    Next
    Loop
    ws.Range("F1").Value = "IDLE"
    End Sub
    Sub stop_ping()
    Dim ws As Worksheet
    Set ws = Worksheets("Sheet1")
    ws.Range("F1").Value = "STOP"
    End Sub
    ****must use this code "Dim ws As Worksheet"

    • @blitzkrieg7069
      @blitzkrieg7069 2 ปีที่แล้ว

      Ty

    • @sohrabkhan3245
      @sohrabkhan3245 ปีที่แล้ว

      @danielnav5053 check debug if some issue with boolcode line then change it
      boolcode = objShell.Run("C:\Windows\System32\ping.exe -n 1 -w 1000 " & strip, 0, True)

  • @archer9250
    @archer9250 3 ปีที่แล้ว +4

    Привет, сможешь ли ты помочь? Хотелось бы пинговать цепочку коммутаторов и чтобы это отображалось в веб форме.

  • @bile-choolfamily6294
    @bile-choolfamily6294 3 ปีที่แล้ว

    thank u

  • @sameerneg
    @sameerneg ปีที่แล้ว

    Great, can we extract hosname of live IPs?

  • @phaandorpertwee6981
    @phaandorpertwee6981 3 ปีที่แล้ว

    Meanwhile on the Mystery History channel: Scientists believe that our reality is a simulation built on "something like Excel".

  • @brahmaviewer
    @brahmaviewer 3 ปีที่แล้ว

    thx!!!

  • @Paulosantana2k
    @Paulosantana2k 3 ปีที่แล้ว

    Net admin: I'm boring, but I have excel... Hmmm🙃🙂🙃🙂

  • @shikukunipashe3495
    @shikukunipashe3495 3 ปีที่แล้ว

    Good work..

  • @reaseykong7884
    @reaseykong7884 11 หลายเดือนก่อน

    thank you. can you share how to monitoring url website if it's up or down?

  • @danielmajewski8783
    @danielmajewski8783 3 ปีที่แล้ว

    good job :)

  • @lonevoyager6152
    @lonevoyager6152 3 ปีที่แล้ว +2

    Next video : How to hack NASA using MS Excel 😎 (I'm waiting)

  • @nims300
    @nims300 3 ปีที่แล้ว

    Superb

  • @engineerlocalhost
    @engineerlocalhost 3 ปีที่แล้ว

    NICE SIR

  • @sridharv2270
    @sridharv2270 3 ปีที่แล้ว

    Using this, shall we can check health status of all vm servers... if yes means we need to put this code in master server or our desktop itself?

  • @MrAimalsultani
    @MrAimalsultani 2 ปีที่แล้ว

    Well_done

  • @sundareshg2683
    @sundareshg2683 3 ปีที่แล้ว

    Great 👍

  • @idmmxx1871
    @idmmxx1871 ปีที่แล้ว

    integrating mac would be worth it?

  • @yeswanth56
    @yeswanth56 3 ปีที่แล้ว +1

    If possible to send whatsapp message in excel through different names

  • @avitripathi8967
    @avitripathi8967 ปีที่แล้ว

    Please tell me what to do online/offline status is showing in IP address column not in ping status bar.

  • @aserwispl5789
    @aserwispl5789 3 ปีที่แล้ว +1

    How to query an ip address with a port?

  • @enggaabow3801
    @enggaabow3801 3 ปีที่แล้ว

    His voice🌻❤😳

  • @Krish9811
    @Krish9811 ปีที่แล้ว

    is it possible in online google spreadsheet ?

  • @lorenzogaruglieri7046
    @lorenzogaruglieri7046 ปีที่แล้ว

    HI,
    awesome video,
    Question: is it possible, in a corporate network, knowing the machine name of a user's PC, to send pop-up messages with the Windows MSG command?
    Thanks in advance
    Lorenzo

    • @sohrabkhan3245
      @sohrabkhan3245 ปีที่แล้ว

      for further reped modification ask to chatGPT

  • @girishpant_yt
    @girishpant_yt ปีที่แล้ว

    How many ping packets does it send at once ?

  • @khanhtoantran6046
    @khanhtoantran6046 3 ปีที่แล้ว

    So usefull. Btw, i have an idea, can you write an excel file that can show an text file (or log file) in a remote server when input server fqdn or ip (require authenticate) and keyword, time to search in that server.

    • @robertthomas5906
      @robertthomas5906 3 ปีที่แล้ว

      Some people set up their systems so useful info is on a certain web page. Set the machines up via cron to populate it in the morning. Then they use excel to suck all that data down and work on it. How long it has been up, how many people used the machine, disk used, cpu used, memory used, OS type, last patch, name of system. Things like that.

  • @ahfei233
    @ahfei233 3 ปีที่แล้ว

    Hello, could you write monitoring the temp for every switch device?

  • @shobolos
    @shobolos 3 ปีที่แล้ว +1

    Is there a way to add the device name to the spreadsheet (Ping -a IPAddress)?

    • @MoaiydHobani
      @MoaiydHobani 3 ปีที่แล้ว

      This is what I am looking for

  • @juanpompe1683
    @juanpompe1683 ปีที่แล้ว

    Holam como estas, sabes que no resuelve a nivel lan local, a que se podria deber?

  • @aymanhout
    @aymanhout 3 ปีที่แล้ว

    Great 🎉

  • @surajrangkho8957
    @surajrangkho8957 2 ปีที่แล้ว

    Do we need internet in PC for this???