相思资源网 Design By www.200059.com
Returns the name and product code of binary information
(such as bitmaps, icons, executable files, and so on) used
by a Windows Installer application. This script requires both
Windows PowerShell and the corresponding version of
the .NET Framework. For more information on downloading
these items see the Windows PowerShell download page (right).
复制代码 代码如下:
$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
}
(such as bitmaps, icons, executable files, and so on) used
by a Windows Installer application. This script requires both
Windows PowerShell and the corresponding version of
the .NET Framework. For more information on downloading
these items see the Windows PowerShell download page (right).
复制代码 代码如下:
$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
}
相思资源网 Design By www.200059.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
相思资源网 Design By www.200059.com
暂无List Information About the Binary Files Used by an Application的评论...