How To Get-acl in Powershel

Опубликовано: 18 Октябрь 2018
на канале: Lockard
1,178
13

Get the Access Control List (permissions) for a file or registry key.

Syntax
get-acl [[-Path] path [] ] [-Filter String]
[-Include String] [-Exclude String]
[-Audit []] [-UseTransaction] [CommonParameters]

Key
-Path path The path to the item {may be piped}
-Filter String Filter elements as required and supported by providers
-Include String Item(s) upon which Get-acl will act, wildcards are permitted
-Exclude String Item(s) upon which Get-acl is not to act
-Audit Retrieve audit data for this item from the System ACL
-UseTransaction Include the command in the active transaction.

CommonParameters:
-Verbose, -Debug, -ErrorAction, -ErrorVariable, -WarningAction, -WarningVariable,
-OutBuffer -OutVariable.

Examples:

Get ACL information for the Windows directory:

get-acl C:\windows

Get ACL information for C:\Windows expanding the individual ACEs (access control entries)

$mywin = get-acl -path "c:\windows" | select -expand access
$mywin[0]

Get ACL information for all of the .log files in the Windows directory beginning with k.
Display output as a table showing the Path and the owner of each file:

get-acl C:\Windows\k*.log | format-table Path,owner

Retrieve HKLM\SYSTEM\CurrentControlSet\Control from the registry:

get-acl -path hklm:\system\currentcontrolset\control | format-list

This video is brought to you by https://www.lockard.it


Смотрите видео How To Get-acl in Powershel онлайн без регистрации, длительностью часов минут секунд в хорошем качестве. Это видео добавил пользователь Lockard 18 Октябрь 2018, не забудьте поделиться им ссылкой с друзьями и знакомыми, на нашем сайте его посмотрели 1,17 раз и оно понравилось 1 людям.