Я пытаюсь выполнить простой командный файл со следующим содержимым ..
ECHO OFF
::CMD will no longer show us what command it’s executing(cleaner)
ECHO As a network admin, I’m getting tired of having to type these commands in!
:: Print some text
IPCONFIG /ALL
:: Outputs tons of network information into the command prompt
PAUSE
:: Lets the user read the important network information
PING www.google.com
:: Ping google to figure out if we’ve got internet!
ECHO All done pinging Google.
::Print some text
PAUSE
Но ничего не происходит, кроме вспышки командной строки. Пауза, кажется, не имеет никакого эффекта. Пожалуйста, помогите.