wmic /OUTPUT:C:\result.txt product where( name like '%Nero%' or name like '%micro%' ) get name,version
# List all the installed application name
wmic product get name
# Find application named "Nero 2018" and unstalling it without prompt
wmic product where name="Nero 2018" call uninstall /nointerative