使用Powershell编辑文件的VersionInfo

时间:2018-09-12 17:09:30

标签: powershell file-attributes

我想在VersionInfo文件中使用空字段来存储元数据以进行搜索。我想知道是否可以使用Powershell cmdlet或脚本来编辑VersionInfo字段。

可以使用以下命令查看VersionInfo:

get-itemproperty -path .\amazon_cel_v2l.dvf | Format-List -Property VersionInfo

输出:

VersionInfo : File:             C:\extended_attributes\amazon_cel_v2l.dvf
              InternalName:
              OriginalFilename:
              FileVersion:
              FileDescription:
              Product:
              ProductVersion:
              Debug:            False
              Patched:          False
              PreRelease:       False
              PrivateBuild:     False
              SpecialBuild:     False
              Language:

如您所见,有几个不同的空字段可以填充元数据。有谁知道是否/如何写这些字段?特别是,我想使用下面列出的四个字段:

              InternalName:
              OriginalFilename:
              FileVersion:
              FileDescription:

1 个答案:

答案 0 :(得分:0)

根据我的问题中的评论,我将尝试提出一种将自定义元数据添加到我的文件的不同方法。备用数据流很好,但如果将文件传输到非ntfs文件系统,则会丢失数据流。