博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用命令icacls来备份与恢复NTFS权限
阅读量:6115 次
发布时间:2019-06-21

本文共 3797 字,大约阅读时间需要 12 分钟。

背景介绍:

蛋疼客户Windows 2008 R2移除IUSR_LCHAS028针对文件夹和文件的写权限。如下:

1
File "C:\INETPUB\WWWROOT\ESP\js\tiny_mce\plugins\searchreplace\langs". User IUSR_LCHAS028 has wrong permissions: Full access. Must have no Write access.

一共好几千条的记录。。。

可以通过使用图形界面的权限管理来完成,但teamlead非要使用命令和脚本来实现(显得高大上?)

Boss发话了,只能开搞了...........

去Google上搜了下,有相关资料。。。使用命令icacls来实现。

=======================我是分割线===========================

写了个批处理脚本,如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
::#+-------------------------------------------------------------------+  
::#| = : = : = : = : = : = : = : = : = : = : = : = : = : = : = : = : = |  
::#|{>/-------------------------------------------------------------\<}|           
::#|: | Author:  Anson Liu                                                   
::#| :| Email:   liuzsz@cn.ibm.com/Anson.liu@live.com
::#| :| 
Date
:    4:00:00 PM 1/15/2015
::#| :| 
::#| :|
::#|: | Purpose:                 
::#| :|       Backup, Remove, Restore the permission for folder and file. 
::#|: |                                          
::#|: |                                           
::#| :|      /^(o.o)^\    Version: 1       
::#|{>\-------------------------------------------------------------/<}|
::#| = : = : = : = : = : = : = : = : = : = : = : = : = : = : = : = : = |
::#+-------------------------------------------------------------------+
cls
@ECHO OFF
CLS
color 0a
 
::set variable for path
set PATH=C:\win\                ::change to the target path according your environment 
set BACK_PERMISSION=c:\         ::change to the location for backup permission
 
GOTO MENU
:MENU
ECHO.
ECHO.               =-=-=-=-=Manage the permission for folder and file=-=-=-=-=
ECHO.
ECHO.                       1  Backup the permission
ECHO.
ECHO.                       2  Remove the permission
ECHO.
ECHO.                       3  Restore the permission
ECHO.
ECHO.                       4  
Exit
ECHO.
ECHO. 
ECHO.
echo.                Choose the number:
set /p  ID=
if 
"%id%"
==
"1"  
goto cmd1
if 
"%id%"
==
"2" 
goto cmd2
if 
"%id%"
==
"3" 
goto cmd3
IF 
"%id%"
==
"4"  
exit
PAUSE
:cmd1
echo Backup the permission
c:\windows\system32\icacls.exe %PATH%*  /save %bACK_PERMISSION%\win_backuppemission.txt /T
goto MENU
:cmd2
echo Remove the permission
c:\windows\system32\icacls.exe %PATH%  /remove chris /T
GOTO MENU
:cmd3
echo Restore the permission
c:\windows\system32\icacls.exe %PATH%  /restore %bACK_PERMISSION%\win_backuppemission.txt
GOTO MENU

注意

::set variable

set PATH=C:\win\                        设置为需要移除的文件夹

set BACK_PERMISSION=c:\          这个为权限备份位置

c:\windows\system32\icacls.exe %PATH%*  /save %bACK_PERMISSION%\win_backuppemission.txt /T

这条命令备份win文件夹及下面子文件夹和文件的权限。

c:\windows\system32\icacls.exe %PATH%  /remove chris /T

此条命令是移除Chris针对win文件夹,子文件夹及文件的所有权限。

c:\windows\system32\icacls.exe %PATH%  /restore %bACK_PERMISSION%\win_backuppemission.txt

还原用户Chris对win文件夹,子文件夹及文件的权限。

======================other knowledge=======================

Using iCACLS

  • To edit a file you must already have the "Change" ACL (or be the file's owner)

  • To use the iCACLS command to change the permissions of a file requires "FULL Control" (or be the file's owner)

  • File "Ownership" will always override all ACL's - you always have Full Control over files that you create.

Inherited folder permissions are displayed as:

 OI - Object inherit    - This folder and files. (no inheritance to subfolders) CI - Container inherit - This folder and subfolders. IO - Inherit only      - The ACE does not apply to the current file/directoryThese can also be combined as folllows: (OI)(CI)	    This folder, subfolders, and files. (OI)(CI)(IO)	Subfolders and files only.     (CI)(IO)  Subfolders only. (OI)    (IO)	Files only.

So BUILTIN\Administrators:(OI)(CI)F means that both files and Subdirectories will inherit 'F' (Fullcontrol) 
similarly (CI)R means Directories will inherit 'R' (Read folders only = List permission)

When cacls is applied to the current folder only there is no inheritance and so no output.

reference:

 

  

本文转自 安安安安森  51CTO博客,原文链接:http://blog.51cto.com/smallc/1604470,如需转载请自行联系原作者
你可能感兴趣的文章
Android打包常见错误之Export aborted because fatal lint errors were found
查看>>
Tar打包、压缩与解压缩到指定目录的方法
查看>>
新手如何学习 jQuery?
查看>>
配置spring上下文
查看>>
Python异步IO --- 轻松管理10k+并发连接
查看>>
mysql-python模块编译问题解决
查看>>
Oracle中drop user和drop user cascade的区别
查看>>
【Linux】linux经常使用基本命令
查看>>
Java 内存区域和GC机制
查看>>
更新代码和工具,组织起来,提供所有博文(C++,2014.09)
查看>>
HTML模块化:使用HTML5 Boilerplate模板
查看>>
登记申请汇总
查看>>
Google最新截屏案例详解
查看>>
2015第31周一
查看>>
2015第31周日
查看>>
在使用EF开发时候,遇到 using 语句中使用的类型必须可隐式转换为“System.IDisposable“ 这个问题。...
查看>>
Oracle 如何提交手册Cluster Table事务
查看>>
BeagleBone Black第八课板:建立Eclipse编程环境
查看>>
在服务器上用Fiddler抓取HTTPS流量
查看>>
文件类似的推理 -- 超级本征值(super feature)
查看>>