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 相关文章推荐
javaScript parseInt字符转化为数字函数使用小结
Nov 05 Javascript
入门基础学习 ExtJS笔记(一)
Nov 11 Javascript
基于jquery的button默认enter事件(回车事件)。
May 18 Javascript
ASP.NET MVC中EasyUI的datagrid跨域调用实现代码
Mar 14 Javascript
Javascript/Jquery——简单定时器的多种实现方法
Jul 03 Javascript
今天是星期几的4种JS代码写法
Sep 17 Javascript
纯javascript移动优先的幻灯片效果
Nov 02 Javascript
jQuery Validate格式验证功能实例代码(包括重名验证)
Jul 18 jQuery
用JS实现简单的登录验证功能
Jul 28 Javascript
浅谈React高阶组件
Mar 28 Javascript
vuejs简单验证码功能完整示例
Jan 08 Javascript
layui 弹出层回调获取弹出层数据的例子
Sep 02 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
PHP4实际应用经验篇(3)
2006/10/09 PHP
PHP中CURL方法curl_setopt()函数的参数分享
2013/01/19 PHP
带你了解PHP7 性能翻倍的关键
2015/11/19 PHP
thinkPHP实现多字段模糊匹配查询的方法
2016/12/01 PHP
跨浏览器开发经验总结(三)   警惕“IE依赖综合症”
2010/05/13 Javascript
修改jQuery Validation里默认的验证方法
2012/02/14 Javascript
jquery 漂亮的删除确认和提交无刷新删除示例
2013/11/13 Javascript
js判断字符是否是汉字的两种方法小结
2014/01/03 Javascript
js光标定位文本框回车表单提交问题的解决方法
2015/05/11 Javascript
js和jquery分别验证单选框、复选框、下拉框
2015/12/17 Javascript
浅谈Angular的$q, defer, promise
2016/12/20 Javascript
JS实现的数字格式化功能示例
2017/02/10 Javascript
利用node.js搭建简单web服务器的方法教程
2017/02/20 Javascript
Angular5升级RxJS到5.5.3报错:EmptyError: no elements in sequence的解决方法
2018/04/09 Javascript
在vue项目中引用Iview的方法
2018/09/14 Javascript
js 图片懒加载的实现
2020/10/21 Javascript
[03:56]显微镜下的DOTA2第十一期——鬼畜的死亡先知播音员
2014/06/23 DOTA
python的id()函数解密过程
2012/12/25 Python
Python中3种内建数据结构:列表、元组和字典
2014/11/30 Python
Python使用pickle模块报错EOFError Ran out of input的解决方法
2018/08/16 Python
解决Pycharm出现的部分快捷键无效问题
2018/10/22 Python
Python实现监控Nginx配置文件的不同并发送邮件报警功能示例
2019/02/26 Python
Python Opencv实现图像轮廓识别功能
2020/03/23 Python
pandas DataFrame的修改方法(值、列、索引)
2019/08/02 Python
Python数据处理篇之Sympy系列(五)---解方程
2019/10/12 Python
python GUI库图形界面开发之PyQt5计数器控件QSpinBox详细使用方法与实例
2020/02/28 Python
python 元组和列表的区别
2020/12/30 Python
利用 CSS3 实现的无缝轮播功能代码
2017/09/25 HTML / CSS
HTML5图片预览实例分享
2014/06/04 HTML / CSS
英国最大的婴儿监视器网上商店:Baby Monitors Direct
2018/04/24 全球购物
幼儿园中班新学期寄语
2014/01/18 职场文书
党建示范点实施方案
2014/03/12 职场文书
产假请假条
2014/04/10 职场文书
机关工会工作总结2015
2015/05/26 职场文书
导游词之千岛湖
2019/09/23 职场文书
利用uni-app生成微信小程序的踩坑记录
2022/04/05 Javascript