主頁(yè) > 知識(shí)庫(kù) > Powershell目錄文件夾管理權(quán)限的繼承和指定方法

Powershell目錄文件夾管理權(quán)限的繼承和指定方法

熱門(mén)標(biāo)簽:湖州電銷(xiāo)防封卡 信陽(yáng)話務(wù)外呼系統(tǒng)怎么收費(fèi) 真人和電話機(jī)器人對(duì)話 安徽400電話辦理 金融電銷(xiāo)公司怎么辦理外呼系統(tǒng) 雷霆電話機(jī)器人電話 什么渠道可以找外呼系統(tǒng)客戶(hù) 電話智能外呼系統(tǒng)誠(chéng)信合作 使用電話機(jī)器人電銷(xiāo)是否違法

默認(rèn)目錄的權(quán)限是繼承父目錄的,你當(dāng)然可以關(guān)閉它的繼承和分配指定的權(quán)限。
下面例子創(chuàng)建了“PermissionNoInheritance”的文件夾,允許當(dāng)前用戶(hù)讀取,同時(shí)管理員組獲得其所有管理權(quán)限,并關(guān)閉它的繼承。

# 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

標(biāo)簽:濟(jì)南 六盤(pán)水 山南 德州 運(yùn)城 湛江 岳陽(yáng) 鶴崗

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Powershell目錄文件夾管理權(quán)限的繼承和指定方法》,本文關(guān)鍵詞  Powershell,目錄,文件夾,管理,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Powershell目錄文件夾管理權(quán)限的繼承和指定方法》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于Powershell目錄文件夾管理權(quán)限的繼承和指定方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章