Difference between revisions of "NTFS"
From MgmtWiki
(→PowerShell) |
(→PowerShell) |
||
| Line 18: | Line 18: | ||
* [https://woshub.com/manage-ntfs-permissions-powershell/ How to Manage NTFS Permissions with PowerShell?] | * [https://woshub.com/manage-ntfs-permissions-powershell/ How to Manage NTFS Permissions with PowerShell?] | ||
| − | * [https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/unblock-file?view=powershell-7.3 Unblock-File with PowerShell] Internally, the Unblock-File cmdlet removes the Zone.Identifier alternate data stream, which has a | + | * [https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/unblock-file?view=powershell-7.3 Unblock-File with PowerShell] Internally, the Unblock-File cmdlet removes the Zone.Identifier alternate data stream, which has a ZoneId=3 to indicate that it was downloaded from the internet. |
==References== | ==References== | ||
Revision as of 15:00, 14 March 2023
Full Name
Windows NT File System
Context
NTFS has been a part of Windows NT since it was first released as NT 3.1.
Streams
NTFS has enabled multiple streams from an early release, but the Windows File Explorer has never managed any stream but the default stream called ":$DATA". All of the others are consider to be "Alternate Data Streams".
Security
icacls Displays or modifies discretionary access control lists (DACLs) on specified files, and applies stored DACLs to files in specified directories.
PowerShell
Install-Module -Name NTFSSecurity Import-Module NTFSSecurity
- How to Manage NTFS Permissions with PowerShell?
- Unblock-File with PowerShell Internally, the Unblock-File cmdlet removes the Zone.Identifier alternate data stream, which has a ZoneId=3 to indicate that it was downloaded from the internet.