如何编辑文件夹的(元数据)“评论”字段?

如何编辑文件夹的(元数据)“评论”字段?

知道如何编辑“评论”字段吗?

是否有可用的调整,允许只需单击评论字段即可对其进行编辑?

在此处输入图片描述

答案1

知道如何编辑“评论”字段吗?

使用以下 VBS 脚本。

我的系统是windows10 64位。

我已经使用 vbs 脚本解决了这个问题。

  • 首先我将文件夹属性更改为“系统文件夹”。

  • 然后我将一个 Desktop.INI 文件放在文件夹中,并将注释作为参数“InfoTip”。您可以稍后更改 INI 文件中的注释以更改注释字段。

这是脚本(您可以将文件夹拖到脚本上来使用它):

'CreateFolderComments.vbs
'On Error Resume Next

Dim Foldername
Dim strMessage
Dim oShell
Dim fs

Set fs = WScript.CreateObject("Scripting.FileSystemObject")
strMessage = Inputbox("Comments","Input Comments")
Foldername = Wscript.Arguments(0)
'Msgbox chr(34) & Foldername & chr(34)
Set oShell = WScript.CreateObject("WSCript.shell")
oShell.run "C:\Windows\System32\attrib +s " & chr(34) & FolderName & chr(34)
Set Tekstfile = fs.CreateTextFile(FolderName & "\Desktop.Ini", True)

Tekstfile.writeline("[.ShellClassInfo]")
Tekstfile.writeline("InfoTip=" & strMessage)

MsgBox "DONE !"

来源在 Windows 资源管理器中,如何为文件夹添加注释? - Microsoft Community


是否有可用的调整,允许只需单击评论字段即可对其进行编辑?

否,但请参见上面的脚本。

相关内容