List Information About the Binary Files Used by an Application


Posted in Javascript onJune 18, 2007

Returns the name and product code of binary information
 (such as bitmaps, icons, executable files, and so on) used 
by a Windows Installer application. 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_Binary" -namespace "root\CIMV2" ` 
-computername $strComputer 
foreach ($objItem in $colItems) { 
      write-host "Caption: " $objItem.Caption 
      write-host "Data: " $objItem.Data 
      write-host "Description: " $objItem.Description 
      write-host "Name: " $objItem.Name 
      write-host "ProductCode: " $objItem.ProductCode 
      write-host "SettingID: " $objItem.SettingID 
      write-host 
}
Javascript 相关文章推荐
JQuery中如何传递参数如click(),change()等具体实现
Apr 28 Javascript
js密码强度实时检测代码
Mar 02 Javascript
使用JavaScript为Kindeditor自定义按钮增加Audio标签
Mar 18 Javascript
js停止冒泡和阻止浏览器默认行为的简单方法
May 15 Javascript
bootstrap datepicker插件默认英文修改为中文
Jul 28 Javascript
react native 获取地理位置的方法示例
Aug 28 Javascript
angular将html代码输出为内容的实例
Sep 30 Javascript
JS中的算法与数据结构之栈(Stack)实例详解
Aug 20 Javascript
js判断复选框是否选中的方法示例【基于jQuery】
Oct 10 jQuery
JS使用正则表达式判断输入框失去焦点事件
Oct 16 Javascript
js实现轮播图效果 z-index实现轮播图
Jan 17 Javascript
使用 JavaScript 制作页面效果
Apr 21 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
use jscript Create a SQL Server database
Jun 16 #Javascript
You might like
PHP严重致命错误处理:php Fatal error: Cannot redeclare class or function
2017/02/05 PHP
PHP使用反向Ajax技术实现在线客服系统详解
2019/07/01 PHP
在网站上应该用的30个jQuery插件整理
2011/11/03 Javascript
js 利用image对象实现图片的预加载提高访问速度
2013/03/29 Javascript
客户端js性能优化小技巧整理
2013/11/05 Javascript
详解js闭包
2014/09/02 Javascript
Jquery uploadify上传插件使用详解
2016/01/13 Javascript
Bootstrap布局方式详解
2016/05/27 Javascript
JS Ajax请求如何防止重复提交
2016/06/13 Javascript
javascript实现非常简单的小数取整功能示例
2017/06/13 Javascript
Vue.js表单标签中的单选按钮、复选按钮和下拉列表的取值问题
2017/11/22 Javascript
JS实现压缩上传图片base64长度功能
2019/12/03 Javascript
[01:06]DOTA2隆重推出2016冬季勇士令状 内含上海特级锦标赛互动指南
2016/02/17 DOTA
在Python中操作字典之clear()方法的使用
2015/05/21 Python
基于Python os模块常用命令介绍
2017/11/03 Python
python 获取文件下所有文件或目录os.walk()的实例
2018/04/23 Python
详解python编译器和解释器的区别
2019/06/24 Python
Python文字截图识别OCR工具实例解析
2020/03/05 Python
python软件测试Jmeter性能测试JDBC Request(结合数据库)的使用详解
2021/01/26 Python
整理HTML5的一些新特性与Canvas的常用属性
2016/01/29 HTML / CSS
一些Unix笔试题和面试题
2013/01/22 面试题
创业计划书怎样才能打动风投
2014/01/01 职场文书
法律专业求职信
2014/05/24 职场文书
英语导游词
2015/02/13 职场文书
质量保证书格式模板
2015/02/27 职场文书
2015年校务公开工作总结
2015/05/26 职场文书
房产电话营销开场白
2015/05/29 职场文书
大国崛起观后感
2015/06/02 职场文书
论语读书笔记
2015/06/26 职场文书
2016应届毕业生自荐信范文
2016/01/28 职场文书
《有余数的除法》教学反思
2016/02/22 职场文书
2016年推广普通话宣传周活动总结
2016/04/06 职场文书
2019年入党思想汇报格式与要求
2019/06/25 职场文书
学长教您写论文:经验总结
2019/07/09 职场文书
导游词之清晏园
2019/11/22 职场文书
vmware虚拟机打不开vmx文件怎么办 ?vmware虚拟机vmx文件打开方法
2022/04/08 数码科技