Тёмный
No video :(

How to create a Ping monitoring tool with Microsoft Excel 

NETVN82
Подписаться 618 тыс.
Просмотров 774 тыс.
50% 1

How to ping multiple IP address using Microsoft Excel
Download code docdro.id/JfZv0wy
NETGEAR WiFi 6 Router amzn.to/3Ov8X3S
TP-Link WiFi 6 Router amzn.to/3QjafAt
You subscribe now because it's free / netvn82
#netvn #microsoftexcel #pingpong

Опубликовано:

 

27 авг 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 374   
@YourDailyHappyPill
@YourDailyHappyPill 3 года назад
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 года назад
1st he will respond text to speech
@electric9278
@electric9278 3 года назад
Next video: How to built a OS using Ms Word 😉
@balajin3234
@balajin3234 3 года назад
😂😂😂
@adityashankarsha
@adityashankarsha 3 года назад
Naye desh ka naya swag
@bijudas5
@bijudas5 3 года назад
😂😂😂😂😂😂
@hafizhshafwanrafa3058
@hafizhshafwanrafa3058 3 года назад
You are crazy man wkwkw
@spicykitchen-1
@spicykitchen-1 3 года назад
Hahahhaha
@SyfulIslam-hh8dx
@SyfulIslam-hh8dx 6 месяцев назад
Thank you for all free tutorials you give us. God bless you
@dharvey24
@dharvey24 3 года назад
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 года назад
Thanks for the fix
@egelden
@egelden 3 года назад
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")
@PLScience
@PLScience 3 года назад
I was in need of this 10 years ago.
@manoushow6658
@manoushow6658 3 года назад
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.
@eyhabsoft
@eyhabsoft 3 года назад
Thank you for all free tutorials you give us. God bless you 👍
@deshdeepakgoel1024
@deshdeepakgoel1024 3 года назад
Nice, please also give some idea to get Mac address in saperate column near online offline status column
@gururajprabhu4187
@gururajprabhu4187 3 года назад
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
@bone1411
@bone1411 3 года назад
Thank you very much. Exactly what i needed and works perfect!
@martinmacapobre1262
@martinmacapobre1262 3 года назад
This is what I am looking for. thanks a lot :)
@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
@abdullahalklbani7454
@abdullahalklbani7454 2 года назад
😊 السَّلَامُ عَلَيْكُمْ وَرَحْمَةُ اللهِ وَبَرَكَاتُهُ 😊 Thank you very much 😊 That was amazing 👏
@Shutyourjibbs
@Shutyourjibbs 2 года назад
Amazing! This is exactly what I needed! Thank you!
@sachinpoly9052
@sachinpoly9052 3 года назад
you deserve more subscribers
@arvindersingh4564
@arvindersingh4564 3 года назад
you are right.
@raulherrera3233
@raulherrera3233 2 года назад
Thank you so much! Exactly what I needed. Greetings from Panama!
@NETVN82
@NETVN82 2 года назад
Glad it helped!
@vlogmotofi4752
@vlogmotofi4752 3 года назад
Would be cooler if you added the time for latency monitoring. 👍
@SeaWolfy
@SeaWolfy 3 года назад
Did you found something about that? I'm trying to do the same but can't find anything..
@akhilskrishnan
@akhilskrishnan 3 года назад
I am also looking for that
@SeaWolfy
@SeaWolfy 3 года назад
He did it ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-KYl0oEw2edE.html
@iHammouda
@iHammouda Год назад
@@SeaWolfy Are you still looking for this feature?
@akashsharma2610
@akashsharma2610 3 года назад
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
@chhelsopheak5725
@chhelsopheak5725 3 года назад
Amazing videos, hope the next video is how to use remote desktop without lock screen.
@susantaghosh1606
@susantaghosh1606 3 года назад
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
@danielnav5053
@danielnav5053 Год назад
no work for me
@sohrabkhan3245
@sohrabkhan3245 11 месяцев назад
@@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)
@AByteAtTech
@AByteAtTech 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!
@zaheerraihan1249
@zaheerraihan1249 3 года назад
You are genius. Thank you man 💕
@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.
@arjunmurugan8084
@arjunmurugan8084 2 года назад
Thanking you very much. It's working perfect !
@NETVN82
@NETVN82 2 года назад
You're welcome!
@oguzsahinn
@oguzsahinn 3 года назад
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
@kcraigo
@kcraigo 2 года назад
Works perfect! Thank you!
@NETVN82
@NETVN82 2 года назад
You're welcome!
@heisenbergwaffles
@heisenbergwaffles 8 месяцев назад
Did you implement this in a corporate network?
@_-_ttt_-_
@_-_ttt_-_ 3 года назад
Holy shit! Subbed. It will help me with literally whole corp network diagnosis♥️
@skynet1024
@skynet1024 3 года назад
angry ip scanner
@andrewwickes1091
@andrewwickes1091 3 года назад
I am definitely going to use this for footprinting for pentesting and ethical hacking.
@vishalmakwana2213
@vishalmakwana2213 3 года назад
Thanks More Videos Excel learning 👍❤️👍
@mteomteo747
@mteomteo747 3 года назад
Great, this is what i need. Keep it up.
@Æfsænti
@Æfsænti Год назад
Thank you very much.
@LegendaryPhoenixReaction
@LegendaryPhoenixReaction Год назад
Wow you are the best and got a subscriber :cheers:
@joaomarcelosantosdesousa430
@joaomarcelosantosdesousa430 3 года назад
Deu certo aqui para mim tambem, show de bola. Brazil
@hornickt
@hornickt 3 года назад
Thank you for the great new video and the download link. Great work.
@claudio1028
@claudio1028 Год назад
Muito obrigado! Funcionou aqui! Só tive que adaptar para PT-BR no código de Sheet1 para Planilha1!💡💡💡
@ecgarcia
@ecgarcia 3 года назад
Any help to make it work with Libre Office?
@dimitrz2000
@dimitrz2000 3 года назад
Great video, I advise you to use your real voice next time, trust me it would be more beautiful than robot voice .
@rameshpk8848
@rameshpk8848 3 года назад
Thanks for the video. Good one for beginners like me..
@ThangTran-hi3es
@ThangTran-hi3es 3 года назад
Good job Visual Basic
@aldrinjeruinnavarro3461
@aldrinjeruinnavarro3461 Месяц назад
Hi, did you use the 32bit Version of Excel? for macro features?
@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
@avitripathi8967
@avitripathi8967 Год назад
Please tell me what to do online/offline status is showing in IP address column not in ping status bar.
@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.
@sellomaila6660
@sellomaila6660 Год назад
No reply?
@johnzavax
@johnzavax 3 года назад
Much needed. Thanks a lot 😁
@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
@fabricioreyes2668
@fabricioreyes2668 3 года назад
Me interesó, el video, por alguna casualidad no lo podría hacer en español para entenderle mas al tema
@paulinoramirez9529
@paulinoramirez9529 3 года назад
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
@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?
@hectorbolivar83
@hectorbolivar83 3 года назад
Amazing as always happy 😊 thanks a lot
@janusviborgolesen9613
@janusviborgolesen9613 3 года назад
Great video. Could it be possible to use the command "arp" to add MAC address to the IP addresses which were online?
@SanthoshBalajiRamesh
@SanthoshBalajiRamesh Год назад
this exact requirement i have made a video ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-0nDUNp19_OU.html
@shoal2242
@shoal2242 3 года назад
You bloody genius😂
@sandol2225
@sandol2225 2 года назад
thank you for the video. Is possible you can find city name instead on/off line?
@lydhely7366
@lydhely7366 3 года назад
Thanks a lot for this !
@aserwispl5789
@aserwispl5789 3 года назад
How to query an ip address with a port?
@archer9250
@archer9250 3 года назад
Привет, сможешь ли ты помочь? Хотелось бы пинговать цепочку коммутаторов и чтобы это отображалось в веб форме.
@BillSummers-rv7kc
@BillSummers-rv7kc Год назад
This is great. Thank you!
@NETVN82
@NETVN82 Год назад
You're very welcome!
@aung.thuaye
@aung.thuaye 2 года назад
Thanks. Working correctly.
@NETVN82
@NETVN82 2 года назад
Enjoy
@josephhoover8272
@josephhoover8272 Год назад
This is what I need m, but it doesn't seem to work for me. boolcode returns a value of one.
@sopheak1548
@sopheak1548 3 года назад
I can't use Range syntax in VBA so what should I do? it not working
@ciberaserviciosdecibersegu1855
@ciberaserviciosdecibersegu1855 3 года назад
Use "ActiveSheet" in place of "Sheet1"
@sopheak1548
@sopheak1548 3 года назад
@@ciberaserviciosdecibersegu1855 ok thanks and let me try
@sameerneg
@sameerneg Год назад
Great, can we extract hosname of live IPs?
@saleimQ8
@saleimQ8 Год назад
Thanks!
@NETVN82
@NETVN82 Год назад
Welcome!
@SamehMustafa007
@SamehMustafa007 3 года назад
Perfect perfect 👌👍👍
@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
@mordekaiser_1312
@mordekaiser_1312 3 года назад
why would you use hungarian notation (kinda) for variable names instead of properly giving types with the As keyword? just asking
@mattri483
@mattri483 2 года назад
Thank you very much. 👍
@NETVN82
@NETVN82 2 года назад
You are welcome!
@jzappia8
@jzappia8 2 года назад
This errors also Set objShell = CreateObject("Wscript.Shell")
@sivanits-hk6jn
@sivanits-hk6jn 3 года назад
i'm getting error like. .......Error message........ Compile Error: Method or data member not found .................. Error highlight point on PingSystem() What i missed..?
@ManojKumar-nw7bc
@ManojKumar-nw7bc 3 года назад
Same error I'm getting
@Hari-ne6vv
@Hari-ne6vv 3 года назад
same here
@Hari-ne6vv
@Hari-ne6vv 3 года назад
follow the tutorial, insert module --> paste/type the VB code. then compile, it resolved mine
@sivanits-hk6jn
@sivanits-hk6jn 3 года назад
@@Hari-ne6vv Thank you hari. Hope it works well...i'll try
@anupammits
@anupammits 3 года назад
@@sivanits-hk6jn yes , it worked 4 me too. Thanks.
@sqlserver2021
@sqlserver2021 3 года назад
compier error Method or data member not found sheet.range pleas help me
@sopheak1548
@sopheak1548 3 года назад
me too
@sqlserver2021
@sqlserver2021 3 года назад
What is the solution?
@seancarnell1503
@seancarnell1503 3 года назад
I know next to nothing about VBA, but when I changed all incidences of Sheet1.Range("F1") to ActiveSheet.Range("F1") it worked for me.
@okaen
@okaen 3 года назад
@@seancarnell1503 your advice helps me, thank you!
@alejandrocoderch488
@alejandrocoderch488 3 года назад
That's because your Excel is probably not in English, therefore Sheet1 does not exist. For instance, in Spanish it'll be Hoja1. You can as well replace it with its caption: Sheets("CaptionOfTheSheet")
@yeswanth56
@yeswanth56 3 года назад
If possible to send whatsapp message in excel through different names
@danielnav5053
@danielnav5053 Год назад
If while you are scanning you change the sheet, it starts writing on the table of the other sheet, how can this be solved? changing activesheet?
@phucnbv
@phucnbv Год назад
thank you very much. I really admire you
@NETVN82
@NETVN82 Год назад
So nice of you
@juanpompe1683
@juanpompe1683 Год назад
Holam como estas, sabes que no resuelve a nivel lan local, a que se podria deber?
@leonardo_oliveira241
@leonardo_oliveira241 3 года назад
That's why I always say that my Excel is basic!
@rodolforodriguez70
@rodolforodriguez70 11 месяцев назад
I am going to be waiting for it
@phuocduong663
@phuocduong663 3 года назад
Wow thank you so much
@rishi461990cool
@rishi461990cool 3 года назад
Thank you
@idmmxx1871
@idmmxx1871 Год назад
integrating mac would be worth it?
@fernandoschnaidt210
@fernandoschnaidt210 Год назад
Hi is possible have a data of the ip a d time out? To reports?
@ahfei233
@ahfei233 3 года назад
Hello, could you write monitoring the temp for every switch device?
@vthuy154
@vthuy154 3 года назад
I have an question, in the "IDLE" how to set Sheet1 from video to multi sheet with different name?
@phaandorpertwee6981
@phaandorpertwee6981 3 года назад
Meanwhile on the Mystery History channel: Scientists believe that our reality is a simulation built on "something like Excel".
@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.
@mikhaylakeenandiarychannel562
@mikhaylakeenandiarychannel562 3 года назад
hi sir, this will be easier and simpler if you use a script on Mikrotik
@girishpant_yt
@girishpant_yt Год назад
How many ping packets does it send at once ?
@Paulosantana2k
@Paulosantana2k 3 года назад
Net admin: I'm boring, but I have excel... Hmmm🙃🙂🙃🙂
@birincyray
@birincyray 3 года назад
Thank you sir
@sawomirgmur7497
@sawomirgmur7497 Год назад
thanks brother
@NETVN82
@NETVN82 Год назад
Welcome
@blueccltchois6135
@blueccltchois6135 3 года назад
엑셀을 어느정도 한다 생각하는데... 이건 뭐죠? 배우싶습니다 ㅜㅜ
@dadatata7228
@dadatata7228 3 года назад
thanks you are the best
@shobolos
@shobolos 3 года назад
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
@reaseykong7884
@reaseykong7884 10 месяцев назад
thank you. can you share how to monitoring url website if it's up or down?
@Hagen_Music_Sounds
@Hagen_Music_Sounds 22 дня назад
Would be awesome if ping offline to send an email
@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 11 месяцев назад
for further reped modification ask to chatGPT
@rrff9895
@rrff9895 3 года назад
Do Until Sheet1.Range("F1").Value = "STOP" debug
@CarloLabati
@CarloLabati 2 года назад
same here
@borowski2006
@borowski2006 3 года назад
Recommend - Axence Nettools
@bukkasaivinith9390
@bukkasaivinith9390 3 года назад
I am vinith can you show me how to create an database software with Microsoft Access plz show it in next video
@prabhakararao8908
@prabhakararao8908 3 года назад
How to chek our windows ,who is monitoring,viewing background
@otrociber4506
@otrociber4506 3 года назад
Y para hacer ping, pero una red GPON, y que se muestre de esta misma manera. Cómo puedo hacer ?
@Krish9811
@Krish9811 Год назад
is it possible in online google spreadsheet ?
@vallentinald1782
@vallentinald1782 3 года назад
Now how about a tutorial on how to program in Visual Basic.
@othmaneAlmaghribi9867
@othmaneAlmaghribi9867 3 года назад
Visual studio Code...,C++, Desktop