Home > Web Front-end > JS Tutorial > use jscript List Installed Software_javascript技巧

use jscript List Installed Software_javascript技巧

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-05-16 19:12:34
Original
1294 people have browsed it

Description
Returns a list of software that was installed on a computer using Windows Installer. This information is then written to a text file.  Script Code

复制代码 代码如下:

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

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

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

      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 Date 2: "   objItem.InstallDate2); 
      WScript.Echo("Install Location: "   objItem.InstallLocation); 
      WScript.Echo("Install State: "   objItem.InstallState); 
      WScript.Echo("Name: "   objItem.Name); 
      WScript.Echo("Package Cache: "   objItem.PackageCache); 
      WScript.Echo("SKU Number: "   objItem.SKUNumber); 
      WScript.Echo("Vendor: "   objItem.Vendor); 
      WScript.Echo("Version: "   objItem.Version); 
      WScript.Echo(); 
   } 

Related labels:
source:php.cn
Statement of this Website
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
Latest Issues
What's the use of this?
From 1970-01-01 08:00:00
0
0
0
Use hook
From 1970-01-01 08:00:00
0
0
0
mac use
From 1970-01-01 08:00:00
0
0
0
Use import namespace problem
From 1970-01-01 08:00:00
0
0
0
use Think\Controller;report error
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template