List Information About the Binary Files Used by an Application

2016-02-19 09:26 3 1 收藏

下面这个List Information About the Binary Files Used by an Application教程由图老师小编精心推荐选出,过程简单易学超容易上手,喜欢就要赶紧get起来哦!

【 tulaoshi.com - Web开发 】

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 "rootCIMV2" `
-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
}


来源:https://www.tulaoshi.com/n/20160219/1590779.html

延伸阅读
Windows98系统的许多软件中都包含一个windows风格的about窗口,它向用户反映了当前系统的一些基本信息,其中显示有关windows及其应用软件的版本、版权和系统的工作状态等信息。笔者用VB6.0通过调用API函数设计应用系统的ABOUT窗口。 1.建立含有如下控件的窗体: 控件NAMECAPTION 窗体FORM1用VB6.0设计ABOUT窗口命令按钮C...
In February 2005 I put instructions online explaining how to perform a binary upgrade from FreeBSD 4.8 to FreeBSD 4.11. When it came time to upgrade my FreeBSD 5.3 system to instead run FreeBSD 5.4, I found that some slightly different steps were needed, so I decided to put together a 5.3-to-5.4 upgrade guide as well....
JDK(Java Development Kit )是一切java应用程序的基础,可以说,所有的java应用程序是构建在这个之上的。它是一组API,也可以说是一些java Class。目前已经正式发布的最新版本是JDK1.3.1。可以直接从JAVA官方站点java.sun.com下载获得。在Win98下这直接安装,不需要什么设置就可以直接运行。 用记事本来写一个被人熟知HelloWWW.java(...
标签: Web开发
% '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''&#...
标签: 电脑入门
简介 System Volume Information文件夹是一个隐藏的系统文件夹,系统还原工具使用该文件夹来存储它的信息和还原点。您的计算机的每个分区上都有一个 System Volume Information 文件夹。System Volume Information文件夹,中文名称可以翻译为系统卷标信息。这个文件夹里就存储着系统还原的备份信息。 解决方法: 一、 右击我的电脑/...

经验教程

537

收藏

33

精华推荐

CSS的list-style解释

CSS的list-style解释

旧時咣

List all the Databases on a SQL Server

List all the Databases on a SQL Server

hitmanheart

Applet与Application合并

Applet与Application合并

yaodupu

微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部