1. ホーム
  2. スクリプト・コラム
  3. vbs

ドットで終わるファイルの属性をvbsでhiddenに変更する。

2022-02-08 11:26:48

コアコードです。

rem Change the attribute of files ending in a dot to "hidden"
@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"