Browse Source

Fixes #33

tags/4.2.4
Raimund Andée [MSFT] 5 years ago
parent
commit
b4e20ab353
4 changed files with 8 additions and 8 deletions
  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 View File

@@ -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 View File

@@ -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 View File

@@ -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 View File

@@ -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…
Cancel
Save