首页 文章 精选 留言 我的

精选列表

搜索[powershell],共928篇文章
优秀的个人博客,低调大师

POwershell 更改文件权限

今天需要给某个网络共享的大文件重新配置一个权限。这个文件夹下面有很多乱七八糟的小文件,很多创建人甚至已经离开公司了。如果一个个地目录手动修改所有者权限,再打开继承关系,这样比较麻烦,这个时候自然是用脚本比较方便了。 #网上找的现成的高级方法来enable继承关系 functionSet-NTFSInheritance{ <# .SYNOPSIS EnableorDisabletheNTFSpermissionsinheritance. .DESCRIPTION EnableorDisabletheNTFSpermissionsinheritanceonfilesand/orfolders. .EXAMPLE $Folders=Get-Childitem-Path'e:\homedirs'|Where-Object{$_.Attributes-eq'Directory'} $Folders|foreach{ $_|Set-NTFSInheritance-Enable } .NOTES Author:JeffWouters Date:8thofMay2014 #> [cmdletbinding(defaultparametersetname='Enable')] param( [parameter(mandatory=$true,position=0,valuefrompipeline=$true,parametersetname='Enable')] [parameter(mandatory=$true,position=0,valuefrompipeline=$true,parametersetname='Disable')] $Path, [parameter(mandatory=$false,parametersetname='Enable')][switch]$Enable, [parameter(mandatory=$false,parametersetname='Disable')][switch]$Disable ) begin{ }process{ $ACL=get-acl$_.FullName switch($PSCmdlet.ParameterSetName){ 'Enable'{ $ACL.SetAcce***uleProtection($false,$false) } 'Disable'{ $ACL.SetAcce***uleProtection($true,$true) } } try{ $ACL|Set-Acl-Passthru }catch{ $_.Exception } }end{ } } #自己调用一下上面的方法,基本上就是三步走,第一个夺取所有权;第二打开继承关系;第三在最上面设置权限 functionChangePermission{ [cmdletbinding(defaultparametersetname='Enable')] param( [Parameter(Mandatory=$true)] [string] $path, [Parameter(Mandatory=$true)] [string] $group ) #Step1:takeoverownership takeown.exe/f$path/r/dY #Step2:enableinheritanceforallsubfolders $Folders=Get-Childitem-Path$path-Recurse $Folders|foreach{ $_|Set-NTFSInheritance-Enable } #Step3:setupNTFSModifypermissionfromtheparentfolder $perm2=':(OI)(CI)(M)' write-host$path-ForegroundColorCyan icacls$path/grant"$($group)$perm2" } #最后调用函数即可 $parent="\\syd02\CreativeTRACK\CLIENTFOLDERS\WESTPAC" Get-ChildItem$parent|foreach{ $_.fullname ChangePermission-path$_.FullName-group"SydneyTrackCreative" }

资源下载

更多资源
腾讯云软件源

腾讯云软件源

为解决软件依赖安装时官方源访问速度慢的问题,腾讯云为一些软件搭建了缓存服务。您可以通过使用腾讯云软件源站来提升依赖包的安装速度。为了方便用户自由搭建服务架构,目前腾讯云软件源站支持公网访问和内网访问。

Rocky Linux

Rocky Linux

Rocky Linux(中文名:洛基)是由Gregory Kurtzer于2020年12月发起的企业级Linux发行版,作为CentOS稳定版停止维护后与RHEL(Red Hat Enterprise Linux)完全兼容的开源替代方案,由社区拥有并管理,支持x86_64、aarch64等架构。其通过重新编译RHEL源代码提供长期稳定性,采用模块化包装和SELinux安全架构,默认包含GNOME桌面环境及XFS文件系统,支持十年生命周期更新。

Sublime Text

Sublime Text

Sublime Text具有漂亮的用户界面和强大的功能,例如代码缩略图,Python的插件,代码段等。还可自定义键绑定,菜单和工具栏。Sublime Text 的主要功能包括:拼写检查,书签,完整的 Python API , Goto 功能,即时项目切换,多选择,多窗口等等。Sublime Text 是一个跨平台的编辑器,同时支持Windows、Linux、Mac OS X等操作系统。

WebStorm

WebStorm

WebStorm 是jetbrains公司旗下一款JavaScript 开发工具。目前已经被广大中国JS开发者誉为“Web前端开发神器”、“最强大的HTML5编辑器”、“最智能的JavaScript IDE”等。与IntelliJ IDEA同源,继承了IntelliJ IDEA强大的JS部分的功能。

用户登录
用户注册