Ver a proveniência

Fixes #33

tags/4.2.4
Raimund Andée [MSFT] há 6 anos
ascendente
cometimento
b4e20ab353
4 ficheiros alterados com 8 adições e 8 eliminações
  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 Ver ficheiro

@@ -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 Ver ficheiro

@@ -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 Ver ficheiro

@@ -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 Ver ficheiro

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


Carregando…
Cancelar
Guardar