List Installed Software Features

时间:2007-06-11    点击:435   
Description

Returns a list of features for all the software installed on a computer using Windows Installer.  Script Code
复制代码 代码如下:

var wbemFlagReturnImmediately = 0x10; 
var wbemFlagForwardOnly = 0x20; 

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

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

      WScript.Echo("Accesses: " + objItem.Accesses); 
      WScript.Echo("Attributes: " + objItem.Attributes); 
      WScript.Echo("Caption: " + objItem.Caption); 
      WScript.Echo("Description: " + objItem.Description); 
      WScript.Echo("Identifying Number: " + objItem.IdentifyingNumber); 
      WScript.Echo("Install Date: " + objItem.InstallDate); 
      WScript.Echo("Install State: " + objItem.InstallState); 
      WScript.Echo("Last Use: " + objItem.LastUse); 
      WScript.Echo("Name: " + objItem.Name); 
      WScript.Echo("Product Name: " + objItem.ProductName); 
      WScript.Echo("Status: " + objItem.Status); 
      WScript.Echo("Vendor: " + objItem.Vendor); 
      WScript.Echo("Version: " + objItem.Version); 
      WScript.Echo(); 
   } 
excel操作之Add Data to a Spreadsheet Cell
List Installed Hot Fixes
List the UTC Time on a Computer
List the Codec Files on a Computer
List Information About the Binary Files Used by an Application
> 返回     
地址:上海市普陀区胶州路941号长久商务中心 电话: QQ:
© Copyright 2012 上海网络 Product All Rights Reserved