Home >Web Front-end >JS Tutorial >List Installed Software Features_javascript技巧

List Installed Software Features_javascript技巧

WBOY
WBOYOriginal
2016-05-16 19:12:321193browse

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(); 
   } 
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn