Alguma ideia de como editar o campo "comentários"?
Use o seguinte script VBS.
My system is windows 10 64 bit.
I've solved it with a vbs script.
First I change the folder attributes to "system folder".
Then I placed an Desktop.INI file inside the folder with the comments as a parameter "InfoTip". You can change the comments inside the INI file later to change the comments field.
This is the script (you can drag a folder on the script to use it):
'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 !"
Origem No Window Explorer, como adicionamos um comentário para uma pasta? - Comunidade da Microsoft
Existe um ajuste disponível que permitiria simplesmente clicar no campo de comentários para editá-lo?
Não, mas veja o script acima.