Hier werden die Unterschiede zwischen zwei Versionen angezeigt.
Beide Seiten der vorigen Revision Vorhergehende Überarbeitung Nächste Überarbeitung | Vorhergehende Überarbeitung | ||
ntfs [2024/10/03 17:15] jango |
ntfs [2025/03/24 15:11] (aktuell) jango |
||
---|---|---|---|
Zeile 1: | Zeile 1: | ||
- | < | + | NTFS (New Technology File System) ist ein proprietäres Dateisystem von [[Microsoft]] für alle Betriebssysteme der Windows-NT-Reihe (ab 1993). |
- | <a href=" | + | |
- | </ | + | |
- | + | ||
- | [[]] | + | |
^Permission^Read^Write^List folder content^Read & Execute^Modify^Full Control^ | ^Permission^Read^Write^List folder content^Read & Execute^Modify^Full Control^ | ||
Zeile 41: | Zeile 37: | ||
* **Change Permissions** - Allows or denies changing permissions of the file or folder, such as Full Control, Read, and Write. | * **Change Permissions** - Allows or denies changing permissions of the file or folder, such as Full Control, Read, and Write. | ||
* **Take Ownership** - Allows or denies taking ownership of the file or folder. The owner of a file or folder can always change permissions on it, regardless of any existing permissions that protect the file or folder. | * **Take Ownership** - Allows or denies taking ownership of the file or folder. The owner of a file or folder can always change permissions on it, regardless of any existing permissions that protect the file or folder. | ||
+ | |||
+ | =====NTFS-Security===== | ||
+ | |||
+ | Siehe auch [[NTFSSecurity]] | ||
+ | |||
+ | <code powershell> | ||
+ | $str = Get-NTFSAccess \\fileserver\gbi\it-security | convertto-json | ||
+ | $obj = $str | convertfrom-json | ||
+ | $obj | foreach-object { | ||
+ | $acc = $_.Account.AccountName | ||
+ | $rights = ((Get-NTFSAccess \\fileserver\gbi\it-security -Account $_.Account.AccountName).AccessRights) | ||
+ | Write-output " | ||
+ | } | ||
+ | </ | ||
=====Links===== | =====Links===== |