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 相关文章推荐
FireFox下XML对象转化成字符串的解决方法
Dec 09 Javascript
自定义ExtJS控件之下拉树和下拉表格附源码
Oct 15 Javascript
快速解决jquery之get缓存问题的最简单方法介绍
Dec 19 Javascript
JavaScript中判断变量是数组、函数或是对象类型的方法
Feb 25 Javascript
jquery简单实现图片切换效果的方法
May 12 Javascript
详解Document.Cookie
Dec 25 Javascript
js+html5实现canvas绘制网页时钟的方法
May 21 Javascript
详解vue2.0 transition 多个元素嵌套使用过渡
Jun 19 Javascript
JS轮播图实现简单代码
Feb 19 Javascript
浅谈目前可以使用ES10的5个新特性
Jun 25 Javascript
vue中使用element ui的弹窗与echarts之间的问题详解
Oct 25 Javascript
JS高级程序设计之class继承重点详解
Jul 07 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 IP及IP段进行访问限制的代码
2008/12/17 PHP
在PHP中使用redis
2013/11/04 PHP
分享一个超好用的php header下载函数
2014/01/31 PHP
PHP实现微信提现功能(微信商城)
2019/11/21 PHP
解决PHPstudy Apache无法启动的问题【亲测有效】
2020/10/30 PHP
设置下载不需要倒计时cookie(倒计时代码)
2008/11/19 Javascript
window.open的页面如何刷新(父页面)上层页面
2012/12/28 Javascript
table对象中的insertRow与deleteRow使用示例
2014/01/26 Javascript
jQuery获取样式中颜色值的方法
2015/01/29 Javascript
JS实现方向键切换输入框焦点的方法
2015/08/19 Javascript
微信小程序 rpx 尺寸单位详细介绍
2016/10/13 Javascript
Web前端框架Angular4.0.0 正式版发布
2017/03/28 Javascript
JS实现快递单打印功能【推荐】
2018/06/21 Javascript
详解angular应用容器化部署
2018/08/14 Javascript
webpack4+express+mongodb+vue实现增删改查的示例
2018/11/08 Javascript
Vue2.x-使用防抖以及节流的示例
2021/03/02 Vue.js
[54:47]Liquid vs VP Supermajor决赛 BO 第五场 6.10
2018/07/05 DOTA
利用Psyco提升Python运行速度
2014/12/24 Python
python使用wmi模块获取windows下的系统信息 监控系统
2015/10/27 Python
Python中%r和%s的详解及区别
2017/03/16 Python
python如何创建TCP服务端和客户端
2018/08/26 Python
Python递归函数 二分查找算法实现解析
2019/08/12 Python
python文件操作的简单方法总结
2019/11/07 Python
使用pytorch搭建AlexNet操作(微调预训练模型及手动搭建)
2020/01/18 Python
详解Python的三种拷贝方式
2020/02/11 Python
python开发实例之Python的Twisted框架中Deferred对象的详细用法与实例
2020/03/19 Python
在tensorflow以及keras安装目录查询操作(windows下)
2020/06/19 Python
termux中matplotlib无法显示中文问题的解决方法
2021/01/11 Python
HTML5 创建canvas元素示例代码
2014/06/04 HTML / CSS
白俄罗斯大卖场:21vek.by
2019/07/25 全球购物
我们的节日元宵活动方案
2014/08/23 职场文书
高中物理教学反思
2016/02/19 职场文书
2019年大学生职业生涯规划书最新范文
2019/03/25 职场文书
openstack云计算keystone组件工作介绍
2022/04/20 Servers
Win2008系统搭建DHCP服务器
2022/06/25 Servers
MySQL外键约束(Foreign Key)案例详解
2022/06/28 MySQL