파일 권한 부여, 수정
1. 소유권 변경
- 대상이 파일인 경우
takeown /f c:\file.exe
- 대상이 폴더인 경우
takeown /f c:\folder /r /d y
2. 권한 변경
- 대상이 파일인 경우
icacls c:\file.exe /grant Administrators:F
icacls c:\file.exe /grant 특정계정:F
icacls c:\file.exe /grant %user%:F
- 대상이 폴더인 경우
icacls c:\file.exe /grant Administrators:F /t
icacls c:\file.exe /grant 특정계정:F /t
icacls c:\file.exe /grant %user%:F /t
* 여기서 Administrators는 그룹으로, 관리자 계정인 Administrator가 아닙니다.
* %user%는 배치파일내에서 사용할때의 변수입니다.
|