List Information About the Binary Files Used by an Application

2019-12-26,,,,,,,,,

Description
Returns the name and product code of binary information (such as bitmaps, icons, executable files, and so on) used by a Windows Installer application.  Script Code
复制代码 代码如下:
var wbemFlagReturnImmediately = 0x10; 
var wbemFlagForwardOnly = 0x20; 

   var objWMIService = GetObject("winmgmts:\\\\.\\root\\CIMV2"); 
   var colItems = objWMIService.ExecQuery("SELECT * FROM Win32_Binary", "WQL", 
                                          wbemFlagReturnImmediately | wbemFlagForwardOnly); 

   var enumItems = new Enumerator(colItems); 
   for (; !enumItems.atEnd(); enumItems.moveNext()) { 
      var objItem = enumItems.item(); 

      WScript.Echo("Caption: " + objItem.Caption); 
      WScript.Echo("Data: " + objItem.Data); 
      WScript.Echo("Description: " + objItem.Description); 
      WScript.Echo("Name: " + objItem.Name); 
      WScript.Echo("Product Code: " + objItem.ProductCode); 
      WScript.Echo("Setting ID: " + objItem.SettingID); 
      WScript.Echo(); 
   } 

您可能感兴趣的文章:

  • Android开发 -- setTag的妙用和The key must be an application-specific resource id 异常
  • The specified CGI application misbehaved by not returning a complete set of HTTP headers
  • List Information About the Binary Files Used by an Application
  • The application has failed...(应用程序配置不正确)

《List Information About the Binary Files Used by an Application.doc》

下载本文的Word格式文档,以方便收藏与打印。