Difference between revisions of "NTFS"

From MgmtWiki
Jump to: navigation, search
(Security)
(Full Name)
Line 1: Line 1:
 
==Full Name==
 
==Full Name==
 
Windows NT File System
 
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 always enabled multiple streams, but the Windows File Explorer has never looks at any stream but the default stream called ":$DATA".  All of the others are consider to be "Alternate Data Streams".
 +
 +
* [https://blog.ironmansoftware.com/daily-powershell/powershell-alternate-data-streams/ Read Alternate Data Streams on Windows with PowerShell]
 +
 
==Security==
 
==Security==
 
[https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/icacls icacls] Displays or modifies discretionary access control lists (DACLs) on specified files, and applies stored DACLs to files in specified directories.
 
[https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/icacls icacls] Displays or modifies discretionary access control lists (DACLs) on specified files, and applies stored DACLs to files in specified directories.

Revision as of 13:08, 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 always enabled multiple streams, but the Windows File Explorer has never looks at 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

References