Windows specific command and file samples

wmi: wmi queries results
- *-CIM_LogicalDevice:
   wmic /Output:CIM_LogicalDevice.wmi Path CIM_LogicalDevice Get /Format:list
- all instances of class Win32_NetworkAdapter :
   wmic /Output:Win32_NetworkAdapter.wmi Path Win32_NetworkAdapter Get /Format:list
- all instances of class Win32_NetworkAdapterConfiguration :
   wmic /Output:Win32_NetworkAdapterConfiguration.wmi Path Win32_NetworkAdapterConfiguration Get /Format:list
- all instances of class WMIMonitorConnectionParams and Win32_DesktopMonitor used for monitors inventory:
   wmic /Output:WMIMonitorConnectionParams.wmi /namespace:\\root\wmi Path WMIMonitorConnectionParams Get /Format:list
   wmic /Output:Win32_DesktopMonitor.wmi Path Win32_DesktopMonitor Get /Format:list

registry: registry exports

powershell: powershell scripts output
- for UWP software inventory, run from GLPI Agent installation folder:
   chcp 65001
   perl\bin\glpi-agent.exe -Iperl\agent -MGLPI::Agent::Task::Inventory::Win32::Softwares -MGLPI::Agent::Tools::Win32 -e "binmode STDOUT, ':encoding(UTF-8)'; print map { \"$_\n\" } runPowerShell(script => &GLPI::Agent::Task::Inventory::Win32::Softwares::_appxscript())"
