1

I want to make a nice and clean batch file for an end user. I put @echo off but it still displays "operation completed successfully" when adding reg keys

Is there a way to hide the successful echo's also?

Drekko
  • 69
  • 2
  • 9

1 Answers1

2

Redirect to nul

command > nul 2>&1
napuzba
  • 6,033
  • 3
  • 21
  • 32