Hi
 
	I am looking for a way to silent run (without pop up of shell window) this command (to clean all windows event logs) from cmd if it is possible :
 
for /f %x in ('wevtutil el') do wevtutil cl "%x"
	or from a bat file using this one that works but invisible again:
 
for /f %%x in ('wevtutil el') do wevtutil cl "%%x"
	Thanks