时间:2021-01-31 08:12:14 | 栏目:VBS | 点击:次
核心代码:
rem 修改以点结尾的文件的属性为“隐藏” @echo off set DstFile=C:\test\batcher. >"%temp%\FileProperty.vbs" echo Set objFSO = CreateObject("Scripting.FileSystemObject").GetFile("\\?\%DstFile%.\") >>"%temp%\FileProperty.vbs" echo objFSO.Attributes=objFSO.Attributes+1+2 cscript /nologo "%temp%\FileProperty.vbs"