The wmic command on Windows is extremely useful, but is also deprecated (because of its usefulness to attackers!). It can be used on Windows 10 21H1 and earlier. For later systems, PowerShell command-lets will need to be used instead (which increases the risk that activity will be logged).
wmic product get name,version,vendor
— list all installed software (but misses 32-bit applications installed on a 64-bit OS)wmic service get name,displayname,pathname,startmode
— list all serviceswmic qfe get caption,description,hotfixid,installedon
— list installed updateswimc service list brief
— another way of listing serviceswmic service where "name like '$SERVICE_NAME'" get name,pathname
— get information about a particular servicewmic /namespace:\root\securitycenter2 path antivirusproduct
— enumerate antiviruswmic useraccount get name,sid
— Display SIDs for all (local) users
Remote process creation
How to run a remote command with wmic
Link to original
Install an MSI package
How to remotely install a Windows package with wmic
Link to original