Created
September 24, 2021 03:24
-
-
Save adinata-id/fd98a9367dc0ceceb98b7b36ffbacfd6 to your computer and use it in GitHub Desktop.
Create Multiple Ping DI Windows
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//untuk satu window gunakan script dibawah : | |
@echo off | |
ping 8.8.8.8 | |
Echo ................................... | |
ping www.detik.com | |
Echo ................................... | |
ping www.yahoo.com | |
//untuk multiple window gunakan script dibawah | |
start "DNS" ping 8.8.8.8 -t | |
start "YAHOO" ping www.yahoo.com -t | |
start "DETIK" ping www.detik.com -t | |
//simpan file dengan ekstensi .bat |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment