用jscript实现列出安装的软件列表


Posted in Javascript onJune 18, 2007

Returns a list of software that was installed on a computer 
using Windows Installer. This information is then
 written to a text file. This script requires both Windows
 PowerShell and the corresponding version of 
the .NET Framework. For more information on downloading
 these items see the Windows PowerShell download page (right). 

$strComputer = "." $colItems = get-wmiobject -class "Win32_Product" -namespace "root\CIMV2" ` 
-computername $strComputer 
foreach ($objItem in $colItems) { 
      write-host "Caption: " $objItem.Caption 
      write-host "Description: " $objItem.Description 
      write-host "Identifying Number: " $objItem.IdentifyingNumber 
      write-host "Installation Date: " $objItem.InstallDate 
      write-host "Installation Date 2: " $objItem.InstallDate2 
      write-host "Installation Location: " $objItem.InstallLocation 
      write-host "Installation State: " $objItem.InstallState 
      write-host "Name: " $objItem.Name 
      write-host "Package Cache: " $objItem.PackageCache 
      write-host "SKU Number: " $objItem.SKUNumber 
      write-host "Vendor: " $objItem.Vendor 
      write-host "Version: " $objItem.Version 
      write-host 
}

Javascript 相关文章推荐
JavaScript 基础问答三
Dec 03 Javascript
对字符串进行HTML编码和解码的JavaScript函数
Feb 01 Javascript
js+html+css实现鼠标移动div实例
Jan 30 Javascript
为jQuery添加Webkit的触摸的方法分享
Feb 02 Javascript
jQuery中parent()方法用法实例
Jan 07 Javascript
jQuery $.each遍历对象、数组用法实例
Apr 16 Javascript
js仿iphone秒表功能 计算平均数
Jan 11 Javascript
Angular.JS中指令ng-if、ng-show/ng-hide和ng-switch的使用教程
May 07 Javascript
Node.js环境下Koa2添加travis ci持续集成工具的方法
Jun 19 Javascript
jQuery-ui插件sortable实现自由拖动排序
Dec 01 jQuery
Vue自定义属性实例分析
Feb 23 Javascript
SSM+layUI 根据登录信息显示不同的页面方法
Sep 20 Javascript
List Information About the Binary Files Used by an Application
Jun 18 #Javascript
List the Codec Files on a Computer
Jun 18 #Javascript
Save a File Using a File Save Dialog Box
Jun 18 #Javascript
Locate a File Using a File Open Dialog Box
Jun 18 #Javascript
firefox中用javascript实现鼠标位置的定位
Jun 17 #Javascript
Sample script that displays all of the users in a given SQL Server DB
Jun 16 #Javascript
Sample script that deletes a SQL Server database
Jun 16 #Javascript
You might like
使用adodb lite解决问题
2006/12/31 PHP
解析PHP留言本模块主要功能的函数说明(代码可实现)
2013/06/25 PHP
php pki加密技术(openssl)详解
2013/07/01 PHP
浅谈PHP调用Webservice思路及源码分享
2014/06/04 PHP
javascript+iframe 实现无刷新载入整页的代码
2010/03/17 Javascript
jQuery+CSS3折叠卡片式下拉列表框实现效果
2015/11/02 Javascript
jQuery基于BootStrap样式实现无限极地区联动
2016/08/26 Javascript
使用JQuery选择HTML遍历函数的方法
2016/09/17 Javascript
jquery购物车结算功能实现方法
2020/10/29 Javascript
基于jQuery实现火焰灯效果导航菜单
2017/01/04 Javascript
vue的全局提示框组件实例代码
2018/02/26 Javascript
如何理解Vue的v-model指令的使用方法
2018/07/19 Javascript
详解Angular中实现自定义组件的双向绑定的两种方法
2018/11/23 Javascript
JS异步处理的进化史深入讲解
2019/08/25 Javascript
vue项目部署到nginx/tomcat服务器的实现
2019/08/26 Javascript
vue子组件改变父组件传递的prop值通过sync实现数据双向绑定(DEMO)
2020/02/01 Javascript
微信小程序实现左滑删除效果
2020/11/18 Javascript
Python爬取读者并制作成PDF
2015/03/10 Python
python的scikit-learn将特征转成one-hot特征的方法
2018/07/10 Python
Python中fnmatch模块的使用详情
2018/11/30 Python
python并发编程 Process对象的其他属性方法join方法详解
2019/08/20 Python
python opencv 实现对图像边缘扩充
2020/01/19 Python
使用python matplotlib 画图导入到word中如何保证分辨率
2020/04/16 Python
Python压缩模块zipfile实现原理及用法解析
2020/08/14 Python
selenium切换标签页解决get超时问题的完整代码
2020/08/30 Python
Python爬虫新手入门之初学lxml库
2020/12/20 Python
CSS3中border-radius属性设定圆角的使用技巧
2016/05/10 HTML / CSS
CSS3 伪类选择器 nth-child()说明
2010/07/10 HTML / CSS
html5实现九宫格抽奖可固定抽中某项奖品
2020/06/15 HTML / CSS
Nike法国官方网站:Nike.com FR
2018/07/22 全球购物
揭牌仪式策划方案
2014/05/28 职场文书
小学优秀教师材料
2014/12/15 职场文书
售后服务承诺函格式
2015/01/21 职场文书
2015年医院药剂科工作总结
2015/05/04 职场文书
nginx搭建NFS网络文件系统
2022/04/14 Servers
CSS中calc(100%-100px)不加空格不生效
2023/05/07 HTML / CSS