Loading |
VBScript |
JavaScript |
Powershell |
Search Options: List Information About the Binary Files Used by an ApplicationContent of List Information About the Binary Files Used by an Application.ps1MD5 Hash: 20C47E6C228B55D38F0989D70090C020 |
||
$strComputer = "."
$colItems = get-wmiobject -class "Win32_Binary" -namespace "root\CIMV2" ` -computername $strComputer foreach ($objItem in $colItems) { write-host "Caption: " $objItem.Caption write-host "Data: " $objItem.Data write-host "Description: " $objItem.Description write-host "Name: " $objItem.Name write-host "ProductCode: " $objItem.ProductCode write-host "SettingID: " $objItem.SettingID write-host } | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |