Thursday, 15 January 2015

Batch file not in silence mode del /s /q /f file -



Batch file not in silence mode del /s /q /f file -

when run command in cmd or batch file not run in quiet mode /q should do, instead displays "deleted file - file"

del /s /q /f file delteded file - file

i hope help others well

in fact, quite mode means not inquire confirmation while deleting.

in order not show output, have redirect nul.

http://www.computerhope.com/delhlp.htm:

quiet mode, not inquire if ok delete on global wildcard

http://www.robvanderwoude.com/battech_redirection.php:

del /s /q /f file > nul

batch-file

No comments:

Post a Comment