Wmic Help New !!link!! -

Process Management:Old: wmic process get name,executablepath New: Get-CimInstance Win32_Process | Select-Object Name, Path

Software Inventory:Old: wmic product get name,version New: Get-CimInstance Win32_Product | Select-Object Name, Version wmic help new

Context Switching: Typing wmic by itself enters an interactive "shell" mode, which is helpful if you need to run several commands in a row without re-typing the prefix. Conclusion Process Management:Old: wmic process get name