• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    Powershell目录文件夹管理权限的继承和指定方法

    默认目录的权限是继承父目录的,你当然可以关闭它的继承和分配指定的权限。
    下面例子创建了“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启用winrm失败:拒绝访问 0x80070005 -2147024891
    下一篇:PowerShell查看本机文件关联程序和默认打开程序的方法
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

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