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 相关文章推荐
怎么让脚本或里面的函数在所有图片都载入完毕的时候执行
Oct 17 Javascript
jQuery前台数据获取实现代码
Mar 16 Javascript
Jquery命名冲突解决的五种方案分享
Mar 16 Javascript
js取得html iframe中的元素和变量值
Jun 30 Javascript
iframe如何动态创建及释放其所占内存
Sep 03 Javascript
js判断浏览器版本以及浏览器内核的方法
Jan 20 Javascript
Javascript动画的实现原理浅析
Mar 02 Javascript
如何使用jQuery技术开发ios风格的页面导航菜单
Jul 29 Javascript
input点击后placeholder中的提示消息消失
Jan 15 Javascript
判断颜色是否合法的正则表达式(详解)
May 03 Javascript
JavaScript实现多重继承的方法分析
Jan 09 Javascript
在 Vue 项目中引入 tinymce 富文本编辑器的完整代码
May 04 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格式化金额函数分享
2015/02/02 PHP
PHP借助phpmailer发送邮件
2015/05/11 PHP
php实现的Curl封装类Curl.class.php用法实例分析
2015/09/25 PHP
PHP封装的多文件上传类实例与用法详解
2017/02/07 PHP
Thinkphp集成抖音SDK的实现方法
2020/04/28 PHP
Laravel统一错误处理为JSON的方法介绍
2020/10/18 PHP
懒就要懒到底——鼠标自动点击(含时间判断)
2007/02/20 Javascript
jquery如何根据值设置默认的选中项
2014/03/17 Javascript
JavaScript实现SHA-1加密算法的方法
2015/03/11 Javascript
avalon js实现仿微博拖动图片排序
2015/08/14 Javascript
初步使用bootstrap快速创建页面
2016/03/03 Javascript
浅谈JavaScript中变量和函数声明的提升
2016/08/09 Javascript
Js调用Java方法并互相传参的简单实例
2016/08/11 Javascript
基于Vuejs框架实现翻页组件
2020/06/29 Javascript
jqueryUI tab标签页代码分享
2017/10/09 jQuery
深入理解 webpack 文件打包机制(小结)
2018/01/08 Javascript
如何快速解决JS或Jquery ajax异步跨域的问题
2018/01/08 jQuery
Vue项目中如何引入icon图标
2018/03/28 Javascript
JavaScript设计模式之单例模式原理与用法实例分析
2018/07/26 Javascript
详解服务端预渲染之Nuxt(介绍篇)
2019/04/07 Javascript
Vue 开发必须知道的36个技巧(小结)
2019/10/09 Javascript
详解webpack-dev-middleware 源码解读
2020/03/23 Javascript
Vue 按照创建时间和当前时间显示操作(刚刚,几小时前,几天前)
2020/09/10 Javascript
原生JavaScript实现拖动校验功能
2020/09/29 Javascript
Python中__name__的使用实例
2015/04/14 Python
itchat和matplotlib的结合使用爬取微信信息的实例
2017/08/25 Python
selenium python浏览器多窗口处理代码示例
2018/01/15 Python
python爱心表白 每天都是浪漫七夕!
2018/08/18 Python
解决python中os.listdir()函数读取文件夹下文件的乱序和排序问题
2018/10/17 Python
Python下opencv图像阈值处理的使用笔记
2019/08/04 Python
CSS3制作轮播图的一种方法
2019/11/11 HTML / CSS
物理教育专业毕业生推荐信
2013/11/03 职场文书
外贸英语专业求职信范文
2013/12/25 职场文书
客户接待方案
2014/02/26 职场文书
《槐乡五月》教学反思
2014/04/25 职场文书
员工年终自我评价
2014/09/14 职场文书