big-moving.ru/api/soft/Ace/demo/kitchen-sink/docs/batchfile.bat

16 lines
260 B
Batchfile
Raw Normal View History

2022-06-24 15:29:23 +05:00
:: batch file highlighting in Ace!
@echo off
CALL set var1=%cd%
echo unhide everything in %var1%!
:: FOR loop in bat is super strange!
FOR /f "tokens=*" %%G IN ('dir /A:D /b') DO (
echo %var1%%%G
attrib -r -a -h -s "%var1%%%G" /D /S
)
pause
REM that's all