Windows2003-3790/tools/postbuildscripts/reattr.cmd

12 lines
261 B
Batchfile
Raw Normal View History

2001-01-01 00:00:00 +01:00
@echo off
:: clear readonly attributes
:: for the files listed in %2
:: in the directory %1
:CHMOD
SET TARGET=%1
SET LISTFILE=%2
SET LISTFILE=%LISTFILE:"=%
PUSHD %TARGET%
FOR /F %%f IN (%LISTFILE%) DO @(%WINDIR%\SYSTEM32\attrib -R %%f)
POPD
GOTO :EOF