Difference between revisions of "Copy of a file or folder access rights"

From EN Ikoula wiki
⧼vector-jumptonavigation⧽ ⧼vector-jumptosearch⧽
Line 1: Line 1:
 +
<span data-link_translate_ar_title="نسخة حقوق الوصول الملف أو المجلد"  data-link_translate_ar_url="%D9%86%D8%B3%D8%AE%D8%A9+%D8%AD%D9%82%D9%88%D9%82+%D8%A7%D9%84%D9%88%D8%B5%D9%88%D9%84+%D8%A7%D9%84%D9%85%D9%84%D9%81+%D8%A3%D9%88+%D8%A7%D9%84%D9%85%D8%AC%D9%84%D8%AF"></span>[[:ar:نسخة حقوق الوصول الملف أو المجلد]][[ar:نسخة حقوق الوصول الملف أو المجلد]]
 
<span data-link_translate_zh_title="副本的文件或文件夹的访问权限"  data-link_translate_zh_url="%E5%89%AF%E6%9C%AC%E7%9A%84%E6%96%87%E4%BB%B6%E6%88%96%E6%96%87%E4%BB%B6%E5%A4%B9%E7%9A%84%E8%AE%BF%E9%97%AE%E6%9D%83%E9%99%90"></span>[[:zh:副本的文件或文件夹的访问权限]][[zh:副本的文件或文件夹的访问权限]]
 
<span data-link_translate_zh_title="副本的文件或文件夹的访问权限"  data-link_translate_zh_url="%E5%89%AF%E6%9C%AC%E7%9A%84%E6%96%87%E4%BB%B6%E6%88%96%E6%96%87%E4%BB%B6%E5%A4%B9%E7%9A%84%E8%AE%BF%E9%97%AE%E6%9D%83%E9%99%90"></span>[[:zh:副本的文件或文件夹的访问权限]][[zh:副本的文件或文件夹的访问权限]]
 
<span data-link_translate_de_title="Kopieren einer Datei oder eines Ordners Zugriffsrechte"  data-link_translate_de_url="Kopieren+einer+Datei+oder+eines+Ordners+Zugriffsrechte"></span>[[:de:Kopieren einer Datei oder eines Ordners Zugriffsrechte]][[de:Kopieren einer Datei oder eines Ordners Zugriffsrechte]]
 
<span data-link_translate_de_title="Kopieren einer Datei oder eines Ordners Zugriffsrechte"  data-link_translate_de_url="Kopieren+einer+Datei+oder+eines+Ordners+Zugriffsrechte"></span>[[:de:Kopieren einer Datei oder eines Ordners Zugriffsrechte]][[de:Kopieren einer Datei oder eines Ordners Zugriffsrechte]]

Revision as of 17:06, 11 October 2016

ar:نسخة حقوق الوصول الملف أو المجلد zh:副本的文件或文件夹的访问权限 de:Kopieren einer Datei oder eines Ordners Zugriffsrechte nl:Kopie van de toegangsrechten van een bestand of map it:Copia di un file o una cartella dei diritti di accesso 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

?

0



You are not allowed to post comments.