What is wbemtest and how does it relate to wmic commands?
wbemtest is a GUI tool installed by default on Windows that allows you to connect to WMI namespaces and interact with WMI objects. It can enumerate classes, execute queries using WQL, and invoke methods. The operations performed in wbemtest can be directly translated into wmic commands; for example, invoking the `Create` method of `Win32_Process` in wbemtest corresponds to `wmic process call create "calc"`. For more details, see the Penetration Basics - Usage of WMIC article.
wbemtestWMIwmicWQLWin32_Process