Browse Source

Fixes #33

pull/37/head
Raimund Andée [MSFT] 8 years ago
parent
commit
b4e20ab353
  1. 4
      NTFSSecurity/InheritanceCmdlets/DisableAccessInheritance.cs
  2. 4
      NTFSSecurity/InheritanceCmdlets/DisableAuditInheritance.cs
  3. 4
      NTFSSecurity/InheritanceCmdlets/EnableAccessInheritance.cs
  4. 4
      NTFSSecurity/InheritanceCmdlets/EnableAuditInheritance.cs

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

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

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

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