amateur
amateur

Reputation: 44605

stop user feedback to copy command in batch file

I use the following batch command to copy a file

@COPY /Y app_offline_template.htm app_offline.htm

However it always gives feedback in the batch file to the user eg. 1 file copied etc.

Is there a switch to prevent this?

Upvotes: 1

Views: 270

Answers (1)

rene
rene

Reputation: 42414

@COPY /Y app_offline_template.htm app_offline.htm > NUL

Upvotes: 1

Related Questions