核心代码:
1
2
3
4
5
6
|
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"
|