I have to remove all permissions on a directory (and its subdirectories and files) for all ordinary users (i.e. non-administrators).
I have tried to the following in PowerShell, but nothing happened:
New-Item "C:\Test" -type Directory
$acl=get-acl "C:\Test"
$inherit=[system.security.accesscontrol.InheritanceFlags]"ContainerInherit,ObjectInherit"
$propagation=[system.security.accesscontrol.Propagation]"None"
$ar=New-Object system.security.accesscontrol.FileSystemAccessRule("Users","FullControl",$inherit,$propagation,"Allow")
$acl.RemoveAccessRuleAll($ar)
Set-Acl "C:\Test" $acl
If I try with "$env:computername\Users" (instead of just "Users") I get the following error: Exception calling "RemoveAccessRuleAll" with "1" argument(s): "Some or all identity references could not be translated."
What identity do I have to pass in order to identify all users?