浏览代码

Fixes #33

tags/4.2.4
Raimund Andée [MSFT] 6 年前
父节点
当前提交
b4e20ab353
共有 4 个文件被更改,包括 8 次插入8 次删除
  1. +2
    -2
      NTFSSecurity/InheritanceCmdlets/DisableAccessInheritance.cs
  2. +2
    -2
      NTFSSecurity/InheritanceCmdlets/DisableAuditInheritance.cs
  3. +2
    -2
      NTFSSecurity/InheritanceCmdlets/EnableAccessInheritance.cs
  4. +2
    -2
      NTFSSecurity/InheritanceCmdlets/EnableAuditInheritance.cs

+ 2
- 2
NTFSSecurity/InheritanceCmdlets/DisableAccessInheritance.cs 查看文件

@@ -106,7 +106,7 @@ namespace NTFSSecurity
{
if (passThru)
{
FileSystemInheritanceInfo.GetFileSystemInheritanceInfo(item);
WriteObject(FileSystemInheritanceInfo.GetFileSystemInheritanceInfo(item));
}
}
}
@@ -119,7 +119,7 @@ namespace NTFSSecurity

if (passThru)
{
FileSystemInheritanceInfo.GetFileSystemInheritanceInfo(sd);
WriteObject(FileSystemInheritanceInfo.GetFileSystemInheritanceInfo(sd));
}
}
}


+ 2
- 2
NTFSSecurity/InheritanceCmdlets/DisableAuditInheritance.cs 查看文件

@@ -107,7 +107,7 @@ namespace NTFSSecurity
{
if (passThru)
{
FileSystemInheritanceInfo.GetFileSystemInheritanceInfo(item);
WriteObject(FileSystemInheritanceInfo.GetFileSystemInheritanceInfo(item));
}
}
}
@@ -120,7 +120,7 @@ namespace NTFSSecurity

if (passThru)
{
FileSystemInheritanceInfo.GetFileSystemInheritanceInfo(sd);
WriteObject(FileSystemInheritanceInfo.GetFileSystemInheritanceInfo(sd));
}
}
}


+ 2
- 2
NTFSSecurity/InheritanceCmdlets/EnableAccessInheritance.cs 查看文件

@@ -106,7 +106,7 @@ namespace NTFSSecurity
{
if (passThru)
{
FileSystemInheritanceInfo.GetFileSystemInheritanceInfo(item);
WriteObject(FileSystemInheritanceInfo.GetFileSystemInheritanceInfo(item));
}
}
}
@@ -119,7 +119,7 @@ namespace NTFSSecurity

if (passThru)
{
FileSystemInheritanceInfo.GetFileSystemInheritanceInfo(sd);
WriteObject(FileSystemInheritanceInfo.GetFileSystemInheritanceInfo(sd));
}
}
}


+ 2
- 2
NTFSSecurity/InheritanceCmdlets/EnableAuditInheritance.cs 查看文件

@@ -106,7 +106,7 @@ namespace NTFSSecurity
{
if (passThru)
{
FileSystemInheritanceInfo.GetFileSystemInheritanceInfo(item);
WriteObject(FileSystemInheritanceInfo.GetFileSystemInheritanceInfo(item));
}
}
}
@@ -119,7 +119,7 @@ namespace NTFSSecurity

if (passThru)
{
FileSystemInheritanceInfo.GetFileSystemInheritanceInfo(sd);
WriteObject(FileSystemInheritanceInfo.GetFileSystemInheritanceInfo(sd));
}
}
}


正在加载...
取消
保存