mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-23 10:15:26 +02:00

* windows/get*: add Korean translation * get-wuapiversion: fix typo * get-wuapiversion: fix typo Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> * pages.ko/windows/getmac: fix typo Co-authored-by: Chooooo <contact@choo.ooo> * pages.ko/windows/get-wuapiversion: fix typo Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> --------- Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Co-authored-by: Chooooo <contact@choo.ooo>
13 lines
485 B
Markdown
13 lines
485 B
Markdown
# Get-Acl
|
|
|
|
> 파일이나 레지스트리 키와 같은 리소스의 보안 설명자를 가져옵니다.
|
|
> 참고: 이 명령은 PowerShell을 통해서만 사용할 수 있습니다.
|
|
> 더 많은 정보: <https://learn.microsoft.com/powershell/module/microsoft.powershell.security/get-acl>.
|
|
|
|
- 특정 디렉토리의 ACL 표시:
|
|
|
|
`Get-Acl {{경로\대상\폴더}}`
|
|
|
|
- 레지스트리 키의 ACL 가져오기:
|
|
|
|
`Get-Acl -Path {{HKLM:\System\CurrentControlSet\Control}} | Format-List`
|