QUESTION:
How can I request a WMI (Windows Management Instrumentation) based signature for a Windows device?
SOLUTION:
To request a signature for such a device, follow the below steps.
Run the following two commands in PowerShell:
- Command 1:
$FormatEnumerationLimit=-1
Get-Counter -ListSet * -ComputerName n.n.n.n | Sort-Object CounterSetName > updated-get-counter.txt
(where XYZ is the computer name/IP of the remote host)
- Command 2:
Get-WmiObject -List -ComputerName n.n.n.n | format-list * > get-wmiobject.txt
(where XYZ is the computer name/IP of the remote host)
Please attach the output from both commands to your support ticket.
Related Articles