batsta13
batsta13

Reputation: 539

turn on echo temporarily

I am creating a batch file and have turned echo off with @ECHO OFF however I need to demonstrate one of the commands in the batch onscreen how would I temporarily turn on ECHO

Upvotes: 2

Views: 2134

Answers (1)

Linus Kleen
Linus Kleen

Reputation: 34632

Syntax:

ECHO [ON | OFF]
ECHO [Message]

A simple ECHO ON should solve this mystery.

Upvotes: 3

Related Questions