Powershell目录文件夹管理权限的继承和指定方法

2023-12-05 0 756

默认目录权限继承父目录的,你当然可以关闭它的继承和分配指定的权限。
下面例子创建了“PermissionNoInheritance”的文件夹,允许当前用户读取,同时管理员组获得其所有管理权限,并关闭它的继承。

# create folder
$Path = \’c:\\PermissionNoInheritance\’
$null = New-Item -Path $Path -ItemType Directory -ErrorAction SilentlyContinue

# get current permissions
$acl = Get-Acl -Path $path

# add a new permission for current user
$permission = $env:username, \’Read,Modify\’, \’ContainerInherit, ObjectInherit\’, \’None\’, \’Allow\’
$rule = New-Object -TypeName System.Security.AccessControl.FileSystemAccessRule -ArgumentList $permission
$acl.SetAccessRule($rule)

# add a new permission for Administrators
$permission = \’Administrators\’, \’FullControl\’, \’ContainerInherit, ObjectInherit\’, \’None\’, \’Allow\’
$rule = New-Object -TypeName System.Security.AccessControl.FileSystemAccessRule -ArgumentList $permission
$acl.SetAccessRule($rule)

# disable inheritance
$acl.SetAccessRuleProtection($true, $false)

# set new permissions
$acl | Set-Acl -Path $path

您可能感兴趣的文章:

  • Powershell脚本的4种执行权限介绍
  • PowerShell中以管理员权限启动应用程序的方法
  • Powershell实现克隆NTFS文件系统权限
  • 使用PowerShell获取Trustedinstaller权限的问题

收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

悠久资源 PowerShell Powershell目录文件夹管理权限的继承和指定方法 https://www.u-9.cn/jiaoben/powershell/101219.html

常见问题

相关文章

发表评论
暂无评论
官方客服团队

为您解决烦忧 - 24小时在线 专业服务