Delete all log files from windows 7 using cmd
IN windows 7
-------------------------------------------------------
-------------------------------------------------------
1. open cmd
2. type: cd\
3. type: Del *.log /a /s /q /f
/a : singifies all.
/s : delete from all sub folders.
/q : bars from any prompts to ask for yes or no question.
/f : forcibly remove the files.
-------------------------------------------------------
-------------------------------------------------------
1 comments: