1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
# Listar procesos wmic process # Listar procesos en formato tabla wmic process list full /format:table # Listar procesos en formato lista wmic process list full /format:list # Almacenar procesos en formato CSV wmic /output:test.csv process list full /format:csv Get-Content .\test.csv # Almacenar procesos en formato HTML wmic /output:test.html process list brief /format:htable start chrome .\test.html # Almacenar procesos en formato XML wmic /output:test.xml process list full /format:xml Get-Content .\test.xml |