使用 Powershell 获取 "Details" 选项卡中列出的属性

Get Attributes listed in the "Details" Tab with Powershell

我正在尝试使用 PowerShell 检索 "Details" 选项卡 "Media" 部分中列出的一些扩展文件属性(准确地说是 mp3 文件)。

还有其他属性,例如 bitrategenrealbum

遗憾的是 Get-ItemProperty -Path $pathtofile | Format-List 没有 return 那些。

Get-ItemProperty -Path $pathtofile | Get-Member也没有列出。

奇怪,Get-ItemProperty return 与 Get-ChildItem.
的输出相同 我尝试了不同的文件(甚至是非 mp3),PowerShell 没有在任何地方列出 "detail" 属性。

windows 将这些存储在哪里?还有如何列出它们?

更新3; 我找到了一个更好的脚本,它应该可以完全满足令人难以置信的 "Hey! Scripting Guy" 博客提供的您的需求。他们已经构建了一个功能,可以让您查看 music/mp3 个文件的所有详细信息。

博客post
https://blogs.technet.microsoft.com/heyscriptingguy/2014/02/05/list-music-file-metadata-in-a-csv-and-open-in-excel-with-powershell/

函数
https://gallery.technet.microsoft.com/scriptcenter/get-file-meta-data-function-f9e8d804