瀏覽代碼

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));
}
}
}


Loading…
取消
儲存