Updating NTFS Permissions in Powershell
I recently encountered a situation on a 4TB drive that needed permissions added recursively to a large directory with many folders. To save time I created a powershell script that would do this for me. Below is the script: $path = “C:\yourpath\” $user = “domain\username” $permission = “Modify” […]