作家
登录

List the Codec Files on a Computer

作者: 来源:www.28hudong.com 2013-03-30 03:25:00 阅读 我要评论

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 }

  推荐阅读

  用jscript启动sqlserver

strDBServerName = "." Set objSQLServer = CreateObject("SQLDMO.SQLServer") objSQLServer.LoginSecure = True objSQLServer.Name = strDBServerName objSQLServer.Start False >>>详细阅读


本文标题:List the Codec Files on a Computer

地址:http://www.17bianji.com/kaifa2/JS/30336.html

关键词: 探索发现

乐购科技部分新闻及文章转载自互联网,供读者交流和学习,若有涉及作者版权等问题请及时与我们联系,以便更正、删除或按规定办理。感谢所有提供资讯的网站,欢迎各类媒体与乐购科技进行文章共享合作。

网友点评
自媒体专栏

评论

热度

精彩导读
栏目ID=71的表不存在(操作类型=0)