List Installed Hot Fixes

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(); 
   }

(0)

相关推荐

  • List Installed Hot Fixes

    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 = objWMISe

  • List Installed Software Features

    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:\\\\.\

  • Python安装Imaging报错:The _imaging C module is not installed问题解决方法

    今天写Python程序上传图片需要用到PIL库,于是到http://www.pythonware.com/products/pil/#pil117下载了一个1.1.7版本的,我用的是CentOS64 并且自行升级后的Python版本安装PIL库 首先下载解压: 复制代码 代码如下: [root@lee ~]# wget http://www.pythonware.com/products/pil/#pil117 [root@lee ~]# tar -xf Imaging-1.1.7.tar.gz

  • use jscript List Installed Software

    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 objWM

  • 关于eclipse安装spring插件报错An error occurred while collecting items to be installed...解决方案

    本文以eclipse4.7安装sts3.9.0为例,解决报错 An error occurred while collecting items to be installed session context was:(profile=D__DevelopTools_eclipse_jee-oxygen_eclipse, phase=org.eclipse.equinox.internal.p2.engine.phases.Collect, operand=, action=). No repos

  • Idea安装Eslint插件提示:Plugin NativeScript was not installed的问题

    Idea安装Eslint插件文档 写在前面的话,网络由于设置了代理,在你下载安装插件的时候,会提示无法连接或者不能下载插件,对此我做了以下处理,首先看看你有没有下面的提示:如果有,直接看异常安装步骤,没有的话看正常安装步骤就可以. 这是安装插件无法下载的提示 正常安装步骤流程图 嗯,当然你配置了idea的网络代理,可以无视我的这个操作,走下面的流程图 异常安装步骤流程图 首先这里需要打开idea的插件下载库https://plugins.jetbrains.com/plugin 打开插件库,输入

  • 重启后nvidia-smi命令不可执行出现“Make sure that the latest NVIDIA driver is installed and running.”的问题解决

    目录 原因分析: 解决方法 方法1: 更改内核启动顺序 显示内核的启动顺序 [推荐]方法2:重新执行nvidia的安装命令 重启后nvidia-smi命令不可执行,出现“Make sure that the latest NVIDIA driver is installed and running.” 原因分析: NVIDIA驱动是在低版本的时候安装,由于系统更新,内核版本升级导致NVIDIA无法应用在高内核版本 vi /etc/default/grub 解决方法 方法1: 更改内核启动顺序 显

  • webstorm提示 @路径 Module is not installed的问题

    目录 webstorm提示 @路径 Module is not installed 处理 解决WebStorm 2021无法识别@(别名路径) 第一步 第二步 webstorm提示 @路径 Module is not installed 在vscode进行处理vue代码没有问题,但是放到ws后出现这个@问题. 百度得到答案是由于没有配置webpack.cofig.js这个文件. 处理 解决办法也很简单 双击shift键,打开全局搜索,输入webpack 配置setting 路径为: 项目下\no

  • FCKeditor 和 SyntaxHighlighter 代码高亮插件的整合

    Introduction(简介) This is a dialog-based plugin to handle formatting of source code for FCKeditor 2.5.x. It WON'T work with the new CKEditor (yet).(CKEditor 是FCKEditor 的升级版,不过,SyntaxHighlighter 还不能在 CKEditor 中实现代码高亮) It makes use of the SyntaxHighligh

  • 使用vue-cli webpack 快速搭建项目的代码

    一.安装vue npm install vue -g 二.用vue-cli快速搭建项目 //全局安装vue-cli npm install install -g vue-cli //创建一个基于webpack模板的项目 vue init webpack [demoname] ? Project name (xxx) ? Project name xxxx ? Project description (A Vue.js project) ? Project description A Vue.js

随机推荐