Copy of a file or folder access rights
pt:Copiar um arquivo ou pasta de direitos de acesso
es:Copia un archivo o carpeta de derechos de acceso
fr:Recopier les droits d'accès d'un fichier ou d'un dossier
This article has been created by an automatic translation software. You can view the article source here.
Introduction | _. _. This article explains how to copy the access rights of a file or one folder to another on a Windows system: _! _ | Used commands | _. _. PowerShell command | _. _. Get - Acl | _. _. This command allows to extract the ACL | _. _. Command to run in a Windows PowerShell | _. _. However, it does not recursively. The ACLs of folders and the files in DOSSIER_DESTINATION will not be changed. | _. _. a file or folder. The ACL set permissions which benefits users and groups when they access the file | _. _. case.
PowerShell command | _. _. Set - Acl | _. _. This control allows to set the ACL | _. _. | _. _. a file or folder. The ACL applied will be the one defined in the variable | _. _. DROITS_ACCES. It is possible to set this variable | _. _. DROIT_ACCES with the output of the Get - Acl command.
Transfer the rights to one file to another | _. _. Command to run in a Windows PowerShell | _. _. This command copies the access rights of the FICHIER_SOURCE to the FICHIER_DESTINATION.
After running this command, FICHIER_DESTINATION has the same rights of access as FICHIER_SOURCE. : FICHIER_SOURCE access rights are not changed.
Get-Acl -Path FICHIER
Transfer the rights to one folder to another | _. _. You can use the same command to copy rights from one folder to another. (Access Control Lists) : _! _ | This article seem useful to you/
: '
Set-Acl -Path FICHIER -AclObject $DROITS_ACCES
(Access Control Lists) $ $
==
:
Get-Acl -Path FICHIER_SOURCE | Set-Acl -Path FICHIER_DESTINATION
==
:
Get-Acl -Path DOSSIER_SOURCE | Set-Acl -Path DOSSIER_DESTINATION
Sources
https://technet.microsoft.com
?
Enable comment auto-refresher