v0.14.3
What's Changed
- Add support for executing WMI methods by @TechnoPorg in #104
Example:
let in_params = CreateParams {
CommandLine: "calc.exe".to_string(),
};
let out = wmi_con
.exec_class_method::<Win32_Process, CreateParams, CreateOutput>("Create", in_params)
.unwrap();
assert_eq!(out.ReturnValue, 0);
New Contributors
- @TechnoPorg made their first contribution in #104
Full Changelog: v0.14.2...v0.14.3