List the Codec Files on a Computer

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

有了下面这个List the Codec Files on a Computer教程,不懂List the Codec Files on a Computer的也能装懂了,赶紧get起来装逼一下吧!

【 tulaoshi.com - Web开发 】

Uses WMI to return information about all the audio and video codec files 
installed on a computer. 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_CodecFile" -namespace "rootCIMV2" `
-computername $strComputer

foreach ($objItem in $colItems) {
      write-host "AccessMask: " $objItem.AccessMask
      write-host "Archive: " $objItem.Archive
      write-host "Caption: " $objItem.Caption
      write-host "Compressed: " $objItem.Compressed
      write-host "Compression Method: " $objItem.CompressionMethod
      write-host "Creation Class Name: " $objItem.CreationClassName
      write-host "Creation Date: " $objItem.CreationDate
      write-host "CS Creation Class Name: " $objItem.CSCreationClassName
      write-host "CS Name: " $objItem.CSName
      write-host "Description: " $objItem.Description
      write-host "Drive: " $objItem.Drive
      write-host "8.3 File Name: " $objItem.EightDotThreeFileName
      write-host "Encrypted: " $objItem.Encrypted
      write-host "Encryption Method: " $objItem.EncryptionMethod
      write-host "Extension: " $objItem.Extension
      write-host "File Name: " $objItem.FileName
      write-host "File Size: " $objItem.FileSize
      write-host "File Type: " $objItem.FileType
      write-host "FS Creation Class Name: " $objItem.FSCreationClassName
      write-host "FS Name: " $objItem.FSName
      write-host "Group: " $objItem.Group
      write-host "Hidden: " $objItem.Hidden
      write-host "Installation Date: " $objItem.InstallDate
      write-host "In Use Count: " $objItem.InUseCount
      write-host "Last Accessed: " $objItem.LastAccessed
      write-host "Last Modified: " $objItem.LastModified
      write-host "Manufacturer: " $objItem.Manufacturer
      write-host "Name: " $objItem.Name
      write-host "Path: " $objItem.Path
      write-host "Readable: " $objItem.Readable
      write-host "Status: " $objItem.Status
      write-host "System: " $objItem.System
      write-host "Version: " $objItem.Version
      write-host "Writeable: " $objItem.Writeable
      write-host
}

来源:http://www.tulaoshi.com/n/20160219/1590787.html

延伸阅读
标签: Web开发
Description Demonstration script that displays the various colors -- and their related color index -- available when programmatically controlling Microsoft Excel.  Script Code 代码如下: set objExcel&nbs...
标签: Web开发
     线性表,链表,哈希表是常用的数据结构,在进行Java开发时,JDK已经为我们提供了一系列相应的类来实现基本的数据结构。这些类均在java.util包中。本文试图通过简单的描述,向读者阐述各个类的作用以及如何正确使用这些类。 Collection ├List │├LinkedList │├ArrayList │└Vector │ └Stack └Set Map ├Hashta...
Java中的List是可以包含重复元素的(hash code 和equals),那么对List进行去重操作有两种方式实现: 方案一:可以通过HashSet来实现,代码如下: 代码如下: class Student { private String id; private String name; public Student(String id, String name) { super(); this.id = id; this.name = name; } @Override public Stri...
首先IList 泛型接口是 ICollection 泛型接口的子代,并且是所有泛型列表的基接口。 它仅仅是所有泛型类型的接口,并没有太多方法可以方便实用,如果仅仅是作为集合数据的承载体,确实,IListT可以胜任。 不过,更多的时候,我们要对集合数据进行处理,从中筛选数据或者排序。这个时候IListT就爱莫能助了。 1、当你只想使用接口的方法时,ILis...
标签: 电脑入门
Program Files文件夹是什么意思? Program Files文件夹是应用软件文件夹,比如你需要安装软件,他的默认安装路径就是Program Files文件夹了。如果对此有怀疑的话可以去安装一个软件试试哦,Program Files文件则是程序文件。 Program Files文件夹里面有什么?当然根据用户的系统不一样Program Files文件夹里面的文件也是不同的,一般初始的wi...

经验教程

431

收藏

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