SoFunction
Updated on 2025-03-09

list information about the binary files used by An application


$strComputer = "."

$colItems = get-wmiobject -class "Win32_Binary" -namespace "root\CIMV2" `
-computername $strComputer

foreach ($objItem in $colItems) {
      write-host "Caption: " $
      write-host "Data: " $
      write-host "Description: " $
      write-host "Name: " $
      write-host "ProductCode: " $
      write-host "SettingID: " $
      write-host
}