Thomas Gassmann
Thomas Gassmann

Reputation: 781

Batch Job terminating despite answering not to terminate it

Why is the batch job closing, even if I enter 'N'?:

^CTerminate batch job (Y/N)? N
PS C:\path\to\folder>

Upvotes: 0

Views: 584

Answers (1)

mir16
mir16

Reputation: 61

check it

@ECHO OFF 
REM DO SOMETHING
ping -n 10 127.0.0.1 >nul
echo:continued

Upvotes: 1

Related Questions