Questions tagged [ntfs]

NTFS is the primary file system of all modern versions of Windows.

NTFS is the primary file system of all modern versions of Windows and is largely backward-and-forward-compatible in all supported versions. It is a journaling file system which makes it robust in the face of system failure, and in Vista/Windows Server 2008 and later offers support for transactions. It supports transparent compression and encryption and full access-control-list-based security.

563 questions
4
votes
2 answers

Get hardlink count for a file on Windows (without fsutil, which requires admin)

I have various files which I've created as hardlinks to others using mklink. I need a command I can use inside a batch file to determine which files in a given directory have only one link to it. I know fsutil hardlink list can show me the links,…
Display Name
  • 761
  • 1
  • 8
  • 13
4
votes
5 answers

NTFS file or directory is corrupted or unreadable

Anyone know of a way to delete files from an NTFS filesystem when you get "the file or directory is corrupted or unreadable". This isn't a file which is in use, I think it is genuinely corrupted, and I can't seem to get rid of it. BTW suggestions…
Ole Eichhorn
4
votes
2 answers

Is there a way to force group membership changes to be refreshed on clients?

I'm working with a Windows Server 2012 R2 domain controller which is being used primarily as a file server. The clients on this network are mostly not domain users, but instead use domain user accounts to authenticate a network drive mapping to the…
snoopy91
  • 243
  • 3
  • 10
4
votes
1 answer

Adding Folder Permissions Using Powershell

I'm running this script in PowerShell: Add-NTFSAccess -Path 'C:\MyFolder' -Account PROGRAMMING\IIS_IUSRS -AccessRights FullControl and I'm getting this error: Add-NTFSAccess : Cannot bind parameter 'Account'. Cannot convert value…
AYS
  • 143
  • 1
  • 4
4
votes
2 answers

Mirroring harddisk with compressed files with Robocopy

I tried to mirroring an existing disks on a new disks with less space. It is very important that the file structure, attributes and ACL's are exact as on the source disk. For this I tried robocopy.exe: robocopy $sourceDisk $destinationDisk /mir /XD…
larkee
  • 191
  • 1
  • 8
4
votes
5 answers

Finding all files in NTFS with specific user or group in ACL

Executive summary: I want to find all the directories and files a particular user or group has access to. In more detail: I'm looking for a command-line tool to recursively search an NTFS directory for all files and directories where an ACE in the…
David
  • 243
  • 2
  • 3
  • 10
4
votes
3 answers

Server 2008 permissions issues

We have a selection of top level folders: E:\Data1 E:\Data2 E:\Data3 The permissions are simple - the default CREATOR OWNER, SYSTEM Full Control, some security groups allowing Modify and the LOCAL SERVER\Administrator group Full Control. There are…
PnP
  • 1,684
  • 8
  • 39
  • 65
4
votes
1 answer

MFT corruption on non boot drive. What could happen?

I have a server that is reporting some error messages related to NTFS corruption. It reports that there is possible corruption within d:\$mft However I have not come across any corruption, or unreadable files etc. My question is, how is the $mft…
4
votes
1 answer

Mac clients accessing a Windows NTFS share resetting permissions at deeper folder levels. Why?

Here's the setup: Windows 2008 server c:\share folder with the following permissions (read, read/write are not important at this point, I don't think): User1 User2 c:\share\add_user3 folder with the following permissions: User3 (explicitly…
4
votes
1 answer

Deleting an undeletable Directory in Windows 7

I have encountered a problem from time to time but have not been able to resolve it without formatting. I have a directory called d:\DotNet that I want to delete. I cannot because inside this folder there is another folder called: T4 Code…
RBZ
  • 165
  • 1
  • 7
4
votes
5 answers

NTFS: Deny all permissions for all files, except where explicitly added

I'm running a sandboxed application as a local user. I now want to deny almost all file system permissions for this user to secure the system, except for a few working folders and some system DLLs (I'll call this set of files & directories X…
Simon
  • 151
  • 1
  • 7
4
votes
4 answers

Is there a way to prevent a file from being deleted?

I have a file on NTFS that holds accumulated information that will take forever to recreate. I marked it as 'archive' and 'system', so that it would not be obvious to notice or mishandle, but what I really want is to put some kind of lock on it, so…
Yuval
  • 217
  • 1
  • 6
  • 11
4
votes
1 answer

Robocopy falsely marks files as newer

I have two NTFS formatted drives on different machines and I do a robocopy mirror between them like this: robocopy "D:\My Documents" "X:\Backup\My Documents" /MIR /V /NP /XD .* /XO /XA:SHTO /FAT /Z /ETA /DST /R:3 /W:30 But it will falsely mark…
Cinaird
  • 141
  • 1
  • 1
  • 4
4
votes
2 answers

Transaction support within the specified resource manager is not started or was shut down due to an error

Got the following error while trying to add, edit or delete a windows schedule task: Transaction support within the specified resource manager is not started or was shut down due to an error. Tried to reset transaction manager through fsutil (as…
Faisal
  • 225
  • 1
  • 2
  • 6
4
votes
3 answers

NTFS Permissions Auditing with PowerShell

I am working on a project where I need to be able to audit various users and user group permissions on a NTFS formatted Windows file server. I would like to use PowerShell and have it recursively search through the remote file share or it could be…
John
  • 2,276
  • 7
  • 44
  • 60