Command Prompt 명령인 Takeown 명령을 사용하여 특정 폴더 및 하위 개체에 대한 소유자를 일괄 변경할 수 있습니다. 소유자가 변경되어 Access Denied 문제로 파일 접근이 원활하지 않은 경우 빠르고 간단하게 수행할 수 있는 방법입니다.
/F filename or folder anme Specifies the file name or directory name pattern. You can use the wildcard character * when specifying the pattern. You can also use the syntax ShareName*FileName*.
/A Gives ownership to the Administrators group instead of the current user.
/R Performs a recursive operation on all files in the specified directory and subdirectories.
/D Suppresses the confirmation prompt that is displayed when the current user does not have the "List Folder" permission on a specified directory, and instead uses the specified default value. Valid values for the /d option are as follows: - Y: Take ownership of the directory. - N: Skip the directory. Note that you must use this option in conjunction with the /r option.
|
TEST 라는 이름의 폴더 하위 모든 데이터에 대해서 소유권을 관리자 그룹으로 변경하기 위해서 아래 명령을 사용하면 됩니다.
C:\DATA\> Takeown /F TEST /A /R /D Y
[참고자료]
takeown
https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/takeown
작성자: Lai Go / 작성일자: 2019.04.26 (Thanks HY, Park)