We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d61b099 commit 2852fefCopy full SHA for 2852fef
virttest/utils_v2v.py
@@ -1200,6 +1200,16 @@ def get_driver_info(self, signed=True):
1200
LOG.debug("Command output:\n%s", output)
1201
return output
1202
1203
+ def get_cpu_status(self):
1204
+ """
1205
+ Get windows cpu status.
1206
1207
+ cmd = "wmic cpu get status"
1208
+ output = self.session.cmd_output(cmd)
1209
+ if not output:
1210
+ LOG.error('Fail to get cpu status')
1211
+ return output
1212
+
1213
def get_windows_event_info(self):
1214
"""
1215
Get windows event log info about WSH.
0 commit comments