Home > Web Front-end > JS Tutorial > body text

List Installed Hot Fixes_javascript技巧

WBOY
Release: 2016-05-16 19:12:26
Original
992 people have browsed it

Returns a list of all the hot fixes installed on a computer. 
Script Code

复制代码 代码如下:

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

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

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

      WScript.Echo("Caption: "   objItem.Caption); 
      WScript.Echo("CS Name: "   objItem.CSName); 
      WScript.Echo("Description: "   objItem.Description); 
      WScript.Echo("Fix Comments: "   objItem.FixComments); 
      WScript.Echo("Hot Fix ID: "   objItem.HotFixID); 
      WScript.Echo("Install Date: "   objItem.InstallDate); 
      WScript.Echo("Installed By: "   objItem.InstalledBy); 
      WScript.Echo("Installed On: "   objItem.InstalledOn); 
      WScript.Echo("Name: "   objItem.Name); 
      WScript.Echo("Service Pack In Effect: "   objItem.ServicePackInEffect); 
      WScript.Echo("Status: "   objItem.Status); 
      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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template