Browse Source

removed md fixes to fix docs build

pull/62/head
sup3rlativ3 4 years ago
parent
commit
28289c442e
36 changed files with 63 additions and 148 deletions
  1. +4
    -9
      Docs/Cmdlets/Add-NTFSAccess.md
  2. +4
    -9
      Docs/Cmdlets/Add-NTFSAudit.md
  3. +2
    -5
      Docs/Cmdlets/Clear-NTFSAccess.md
  4. +2
    -5
      Docs/Cmdlets/Clear-NTFSAudit.md
  5. +1
    -2
      Docs/Cmdlets/Copy-Item2.md
  6. +2
    -5
      Docs/Cmdlets/Disable-NTFSAccessInheritance.md
  7. +2
    -5
      Docs/Cmdlets/Disable-NTFSAuditInheritance.md
  8. +1
    -2
      Docs/Cmdlets/Disable-Privileges.md
  9. +2
    -5
      Docs/Cmdlets/Enable-NTFSAccessInheritance.md
  10. +2
    -5
      Docs/Cmdlets/Enable-NTFSAuditInheritance.md
  11. +1
    -2
      Docs/Cmdlets/Enable-Privileges.md
  12. +1
    -2
      Docs/Cmdlets/Get-ChildItem2.md
  13. +1
    -2
      Docs/Cmdlets/Get-DiskSpace.md
  14. +0
    -2
      Docs/Cmdlets/Get-FileHash2.md
  15. +1
    -2
      Docs/Cmdlets/Get-Item2.md
  16. +2
    -5
      Docs/Cmdlets/Get-NTFSAccess.md
  17. +2
    -5
      Docs/Cmdlets/Get-NTFSAudit.md
  18. +2
    -5
      Docs/Cmdlets/Get-NTFSEffectiveAccess.md
  19. +1
    -2
      Docs/Cmdlets/Get-NTFSHardLink.md
  20. +2
    -5
      Docs/Cmdlets/Get-NTFSInheritance.md
  21. +2
    -5
      Docs/Cmdlets/Get-NTFSOrphanedAccess.md
  22. +2
    -5
      Docs/Cmdlets/Get-NTFSOrphanedAudit.md
  23. +2
    -5
      Docs/Cmdlets/Get-NTFSOwner.md
  24. +1
    -2
      Docs/Cmdlets/Get-NTFSSecurityDescriptor.md
  25. +2
    -5
      Docs/Cmdlets/Get-NTFSSimpleAccess.md
  26. +1
    -2
      Docs/Cmdlets/Get-Privileges.md
  27. +1
    -2
      Docs/Cmdlets/Move-Item2.md
  28. +1
    -2
      Docs/Cmdlets/New-NTFSHardLink.md
  29. +1
    -2
      Docs/Cmdlets/New-NTFSSymbolicLink.md
  30. +1
    -2
      Docs/Cmdlets/Remove-Item2.md
  31. +4
    -9
      Docs/Cmdlets/Remove-NTFSAccess.md
  32. +4
    -9
      Docs/Cmdlets/Remove-NTFSAudit.md
  33. +2
    -5
      Docs/Cmdlets/Set-NTFSInheritance.md
  34. +2
    -5
      Docs/Cmdlets/Set-NTFSOwner.md
  35. +1
    -2
      Docs/Cmdlets/Set-NTFSSecurityDescriptor.md
  36. +1
    -2
      Docs/Cmdlets/Test-Path2.md

+ 4
- 9
Docs/Cmdlets/Add-NTFSAccess.md View File

@@ -14,31 +14,27 @@ Adds an access control entry (ACE) to an object.
## SYNTAX

### PathComplex (Default)

```PowerShell
```
Add-NTFSAccess [-Path] <String[]> [-Account] <IdentityReference2[]> [-AccessRights] <FileSystemRights2>
[-AccessType <AccessControlType>] [-InheritanceFlags <InheritanceFlags>]
[-PropagationFlags <PropagationFlags>] [-PassThru] [<CommonParameters>]
```

### PathSimple

```PowerShell
```
Add-NTFSAccess [-Path] <String[]> [-Account] <IdentityReference2[]> [-AccessRights] <FileSystemRights2>
[-AccessType <AccessControlType>] [-AppliesTo <ApplyTo>] [-PassThru] [<CommonParameters>]
```

### SDSimple

```PowerShell
```
Add-NTFSAccess [-SecurityDescriptor] <FileSystemSecurity2[]> [-Account] <IdentityReference2[]>
[-AccessRights] <FileSystemRights2> [-AccessType <AccessControlType>] [-AppliesTo <ApplyTo>] [-PassThru]
[<CommonParameters>]
```

### SDComplex

```PowerShell
```
Add-NTFSAccess [-SecurityDescriptor] <FileSystemSecurity2[]> [-Account] <IdentityReference2[]>
[-AccessRights] <FileSystemRights2> [-AccessType <AccessControlType>] [-InheritanceFlags <InheritanceFlags>]
[-PropagationFlags <PropagationFlags>] [-PassThru] [<CommonParameters>]
@@ -249,7 +245,6 @@ Accept wildcard characters: False
```

### CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS


+ 4
- 9
Docs/Cmdlets/Add-NTFSAudit.md View File

@@ -14,31 +14,27 @@ schema: 2.0.0
## SYNTAX

### PathComplex (Default)

```PowerShell
```
Add-NTFSAudit [-Path] <String[]> [-Account] <IdentityReference2[]> [-AccessRights] <FileSystemRights2>
[-AuditFlags <AuditFlags>] [-InheritanceFlags <InheritanceFlags>] [-PropagationFlags <PropagationFlags>]
[-PassThru] [<CommonParameters>]
```

### PathSimple

```PowerShell
```
Add-NTFSAudit [-Path] <String[]> [-Account] <IdentityReference2[]> [-AccessRights] <FileSystemRights2>
[-AuditFlags <AuditFlags>] [-AppliesTo <ApplyTo>] [-PassThru] [<CommonParameters>]
```

### SDSimple

```PowerShell
```
Add-NTFSAudit [-SecurityDescriptor] <FileSystemSecurity2[]> [-Account] <IdentityReference2[]>
[-AccessRights] <FileSystemRights2> [-AuditFlags <AuditFlags>] [-AppliesTo <ApplyTo>] [-PassThru]
[<CommonParameters>]
```

### SDComplex

```PowerShell
```
Add-NTFSAudit [-SecurityDescriptor] <FileSystemSecurity2[]> [-Account] <IdentityReference2[]>
[-AccessRights] <FileSystemRights2> [-AuditFlags <AuditFlags>] [-InheritanceFlags <InheritanceFlags>]
[-PropagationFlags <PropagationFlags>] [-PassThru] [<CommonParameters>]
@@ -210,7 +206,6 @@ Accept wildcard characters: False
```

### CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS


+ 2
- 5
Docs/Cmdlets/Clear-NTFSAccess.md View File

@@ -14,14 +14,12 @@ schema: 2.0.0
## SYNTAX

### Path (Default)

```PowerShell
```
Clear-NTFSAccess [-Path] <String[]> [-DisableInheritance] [<CommonParameters>]
```

### SD

```PowerShell
```
Clear-NTFSAccess [-SecurityDescriptor] <FileSystemSecurity2[]> [-DisableInheritance] [<CommonParameters>]
```

@@ -90,7 +88,6 @@ Accept wildcard characters: False
```

### CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS


+ 2
- 5
Docs/Cmdlets/Clear-NTFSAudit.md View File

@@ -14,14 +14,12 @@ schema: 2.0.0
## SYNTAX

### Path (Default)

```PowerShell
```
Clear-NTFSAudit [-Path] <String[]> [-DisableInheritance] [<CommonParameters>]
```

### SD

```PowerShell
```
Clear-NTFSAudit [-SecurityDescriptor] <FileSystemSecurity2[]> [-DisableInheritance] [<CommonParameters>]
```

@@ -90,7 +88,6 @@ Accept wildcard characters: False
```

### CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS


+ 1
- 2
Docs/Cmdlets/Copy-Item2.md View File

@@ -13,7 +13,7 @@ schema: 2.0.0

## SYNTAX

```PowerShell
```
Copy-Item2 [-Path] <String[]> [-Destination] <String> [-Force] [-PassThru <Boolean>] [-WhatIf] [-Confirm]
[<CommonParameters>]
```
@@ -132,7 +132,6 @@ Accept wildcard characters: False
```

### CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS


+ 2
- 5
Docs/Cmdlets/Disable-NTFSAccessInheritance.md View File

@@ -14,15 +14,13 @@ schema: 2.0.0
## SYNTAX

### Path (Default)

```PowerShell
```
Disable-NTFSAccessInheritance [[-Path] <String[]>] [-RemoveInheritedAccessRules] [-PassThru]
[<CommonParameters>]
```

### SecurityDescriptor

```PowerShell
```
Disable-NTFSAccessInheritance [-SecurityDescriptor] <FileSystemSecurity2[]> [-RemoveInheritedAccessRules]
[-PassThru] [<CommonParameters>]
```
@@ -108,7 +106,6 @@ Accept wildcard characters: False
```

### CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS


+ 2
- 5
Docs/Cmdlets/Disable-NTFSAuditInheritance.md View File

@@ -14,15 +14,13 @@ schema: 2.0.0
## SYNTAX

### Path (Default)

```PowerShell
```
Disable-NTFSAuditInheritance [[-Path] <String[]>] [-RemoveInheritedAccessRules] [-PassThru]
[<CommonParameters>]
```

### SecurityDescriptor

```PowerShell
```
Disable-NTFSAuditInheritance [-SecurityDescriptor] <FileSystemSecurity2[]> [-RemoveInheritedAccessRules]
[-PassThru] [<CommonParameters>]
```
@@ -108,7 +106,6 @@ Accept wildcard characters: False
```

### CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS


+ 1
- 2
Docs/Cmdlets/Disable-Privileges.md View File

@@ -13,7 +13,7 @@ schema: 2.0.0

## SYNTAX

```PowerShell
```
Disable-Privileges [-PassThru] [<CommonParameters>]
```

@@ -50,7 +50,6 @@ Accept wildcard characters: False
```

### CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS


+ 2
- 5
Docs/Cmdlets/Enable-NTFSAccessInheritance.md View File

@@ -14,14 +14,12 @@ schema: 2.0.0
## SYNTAX

### Path (Default)

```PowerShell
```
Enable-NTFSAccessInheritance [[-Path] <String[]>] [-PassThru] [-RemoveExplicitAccessRules] [<CommonParameters>]
```

### SecurityDescriptor

```PowerShell
```
Enable-NTFSAccessInheritance [-SecurityDescriptor] <FileSystemSecurity2[]> [-PassThru]
[-RemoveExplicitAccessRules] [<CommonParameters>]
```
@@ -107,7 +105,6 @@ Accept wildcard characters: False
```

### CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS


+ 2
- 5
Docs/Cmdlets/Enable-NTFSAuditInheritance.md View File

@@ -14,14 +14,12 @@ schema: 2.0.0
## SYNTAX

### Path (Default)

```PowerShell
```
Enable-NTFSAuditInheritance [[-Path] <String[]>] [-PassThru] [-RemoveExplicitAccessRules] [<CommonParameters>]
```

### SecurityDescriptor

```PowerShell
```
Enable-NTFSAuditInheritance [-SecurityDescriptor] <FileSystemSecurity2[]> [-PassThru]
[-RemoveExplicitAccessRules] [<CommonParameters>]
```
@@ -107,7 +105,6 @@ Accept wildcard characters: False
```

### CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS


+ 1
- 2
Docs/Cmdlets/Enable-Privileges.md View File

@@ -13,7 +13,7 @@ schema: 2.0.0

## SYNTAX

```PowerShell
```
Enable-Privileges [-PassThru] [<CommonParameters>]
```

@@ -50,7 +50,6 @@ Accept wildcard characters: False
```

### CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS


+ 1
- 2
Docs/Cmdlets/Get-ChildItem2.md View File

@@ -13,7 +13,7 @@ schema: 2.0.0

## SYNTAX

```PowerShell
```
Get-ChildItem2 [[-Path] <String[]>] [[-Filter] <String>] [-Recurse] [-Directory] [-File]
[-Attributes <FileAttributes>] [-Hidden] [-System] [-ReadOnly] [-Force] [-SkipMountPoints]
[-SkipSymbolicLinks] [-Depth <Int32>] [<CommonParameters>]
@@ -245,7 +245,6 @@ Accept wildcard characters: False
```

### CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS


+ 1
- 2
Docs/Cmdlets/Get-DiskSpace.md View File

@@ -13,7 +13,7 @@ schema: 2.0.0

## SYNTAX

```PowerShell
```
Get-DiskSpace [[-DriveLetter] <String[]>] [<CommonParameters>]
```

@@ -50,7 +50,6 @@ Accept wildcard characters: False
```

### CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS


+ 0
- 2
Docs/Cmdlets/Get-FileHash2.md View File

@@ -14,7 +14,6 @@ schema: 2.0.0
## SYNTAX

```

Get-FileHash2 [-Path] <String[]> [[-Algorithm] <HashAlgorithms>] [<CommonParameters>]
```

@@ -68,7 +67,6 @@ Accept wildcard characters: False
```

### CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS


+ 1
- 2
Docs/Cmdlets/Get-Item2.md View File

@@ -13,7 +13,7 @@ schema: 2.0.0

## SYNTAX

```PowerShell
```
Get-Item2 [[-Path] <String[]>] [<CommonParameters>]
```

@@ -50,7 +50,6 @@ Accept wildcard characters: False
```

### CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS


+ 2
- 5
Docs/Cmdlets/Get-NTFSAccess.md View File

@@ -14,15 +14,13 @@ schema: 2.0.0
## SYNTAX

### Path (Default)

```PowerShell
```
Get-NTFSAccess [[-Path] <String[]>] [-Account <IdentityReference2>] [-ExcludeExplicit] [-ExcludeInherited]
[<CommonParameters>]
```

### SD

```PowerShell
```
Get-NTFSAccess [-SecurityDescriptor] <FileSystemSecurity2[]> [-Account <IdentityReference2>] [-ExcludeExplicit]
[-ExcludeInherited] [<CommonParameters>]
```
@@ -124,7 +122,6 @@ Accept wildcard characters: False
```

### CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS


+ 2
- 5
Docs/Cmdlets/Get-NTFSAudit.md View File

@@ -14,15 +14,13 @@ schema: 2.0.0
## SYNTAX

### Path

```PowerShell
```
Get-NTFSAudit [[-Path] <String[]>] [-Account <IdentityReference2>] [-ExcludeExplicit] [-ExcludeInherited]
[<CommonParameters>]
```

### SD

```PowerShell
```
Get-NTFSAudit [-SecurityDescriptor] <FileSystemSecurity2[]> [-Account <IdentityReference2>] [-ExcludeExplicit]
[-ExcludeInherited] [<CommonParameters>]
```
@@ -124,7 +122,6 @@ Accept wildcard characters: False
```

### CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS


+ 2
- 5
Docs/Cmdlets/Get-NTFSEffectiveAccess.md View File

@@ -14,15 +14,13 @@ schema: 2.0.0
## SYNTAX

### Path (Default)

```PowerShell
```
Get-NTFSEffectiveAccess [[-Path] <String[]>] [[-Account] <IdentityReference2>] [-ServerName <String>]
[-ExcludeNoneAccessEntries] [<CommonParameters>]
```

### SecurityDescriptor

```PowerShell
```
Get-NTFSEffectiveAccess [-SecurityDescriptor] <FileSystemSecurity2[]> [[-Account] <IdentityReference2>]
[-ServerName <String>] [-ExcludeNoneAccessEntries] [<CommonParameters>]
```
@@ -124,7 +122,6 @@ Accept wildcard characters: False
```

### CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS


+ 1
- 2
Docs/Cmdlets/Get-NTFSHardLink.md View File

@@ -13,7 +13,7 @@ schema: 2.0.0

## SYNTAX

```PowerShell
```
Get-NTFSHardLink [[-Path] <String[]>] [<CommonParameters>]
```

@@ -50,7 +50,6 @@ Accept wildcard characters: False
```

### CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS


+ 2
- 5
Docs/Cmdlets/Get-NTFSInheritance.md View File

@@ -14,14 +14,12 @@ schema: 2.0.0
## SYNTAX

### Path (Default)

```PowerShell
```
Get-NTFSInheritance [[-Path] <String[]>] [<CommonParameters>]
```

### SecurityDescriptor

```PowerShell
```
Get-NTFSInheritance [-SecurityDescriptor] <FileSystemSecurity2[]> [<CommonParameters>]
```

@@ -74,7 +72,6 @@ Accept wildcard characters: False
```

### CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS


+ 2
- 5
Docs/Cmdlets/Get-NTFSOrphanedAccess.md View File

@@ -14,15 +14,13 @@ schema: 2.0.0
## SYNTAX

### Path

```PowerShell
```
Get-NTFSOrphanedAccess [[-Path] <String[]>] [-Account <IdentityReference2>] [-ExcludeExplicit]
[-ExcludeInherited] [<CommonParameters>]
```

### SD

```PowerShell
```
Get-NTFSOrphanedAccess [-SecurityDescriptor] <FileSystemSecurity2[]> [-Account <IdentityReference2>]
[-ExcludeExplicit] [-ExcludeInherited] [<CommonParameters>]
```
@@ -124,7 +122,6 @@ Accept wildcard characters: False
```

### CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS


+ 2
- 5
Docs/Cmdlets/Get-NTFSOrphanedAudit.md View File

@@ -14,15 +14,13 @@ schema: 2.0.0
## SYNTAX

### Path

```PowerShell
```
Get-NTFSOrphanedAudit [[-Path] <String[]>] [-Account <IdentityReference2>] [-ExcludeExplicit]
[-ExcludeInherited] [<CommonParameters>]
```

### SD

```PowerShell
```
Get-NTFSOrphanedAudit [-SecurityDescriptor] <FileSystemSecurity2[]> [-Account <IdentityReference2>]
[-ExcludeExplicit] [-ExcludeInherited] [<CommonParameters>]
```
@@ -124,7 +122,6 @@ Accept wildcard characters: False
```

### CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS


+ 2
- 5
Docs/Cmdlets/Get-NTFSOwner.md View File

@@ -14,14 +14,12 @@ schema: 2.0.0
## SYNTAX

### Path (Default)

```PowerShell
```
Get-NTFSOwner [[-Path] <String[]>] [<CommonParameters>]
```

### SecurityDescriptor

```PowerShell
```
Get-NTFSOwner [-SecurityDescriptor] <FileSystemSecurity2[]> [<CommonParameters>]
```

@@ -74,7 +72,6 @@ Accept wildcard characters: False
```

### CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS


+ 1
- 2
Docs/Cmdlets/Get-NTFSSecurityDescriptor.md View File

@@ -13,7 +13,7 @@ schema: 2.0.0

## SYNTAX

```PowerShell
```
Get-NTFSSecurityDescriptor [[-Path] <String[]>] [<CommonParameters>]
```

@@ -50,7 +50,6 @@ Accept wildcard characters: False
```

### CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS


+ 2
- 5
Docs/Cmdlets/Get-NTFSSimpleAccess.md View File

@@ -14,15 +14,13 @@ schema: 2.0.0
## SYNTAX

### Path

```PowerShell
```
Get-NTFSSimpleAccess [-IncludeRootFolder] [[-Path] <String[]>] [-Account <IdentityReference2>]
[-ExcludeExplicit] [-ExcludeInherited] [<CommonParameters>]
```

### SD

```PowerShell
```
Get-NTFSSimpleAccess [-IncludeRootFolder] [-SecurityDescriptor] <FileSystemSecurity2[]>
[-Account <IdentityReference2>] [-ExcludeExplicit] [-ExcludeInherited] [<CommonParameters>]
```
@@ -140,7 +138,6 @@ Accept wildcard characters: False
```

### CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS


+ 1
- 2
Docs/Cmdlets/Get-Privileges.md View File

@@ -13,7 +13,7 @@ schema: 2.0.0

## SYNTAX

```PowerShell
```
Get-Privileges [<CommonParameters>]
```

@@ -34,7 +34,6 @@ PS C:\> {{ Add example code here }}
## PARAMETERS

### CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS


+ 1
- 2
Docs/Cmdlets/Move-Item2.md View File

@@ -13,7 +13,7 @@ schema: 2.0.0

## SYNTAX

```PowerShell
```
Move-Item2 [-Path] <String[]> [-Destination] <String> [-Force] [-PassThru <Boolean>] [-WhatIf] [-Confirm]
[<CommonParameters>]
```
@@ -132,7 +132,6 @@ Accept wildcard characters: False
```

### CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS


+ 1
- 2
Docs/Cmdlets/New-NTFSHardLink.md View File

@@ -13,7 +13,7 @@ schema: 2.0.0

## SYNTAX

```PowerShell
```
New-NTFSHardLink [[-Path] <String>] [[-Target] <String>] [-PassThru] [<CommonParameters>]
```

@@ -82,7 +82,6 @@ Accept wildcard characters: False
```

### CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS


+ 1
- 2
Docs/Cmdlets/New-NTFSSymbolicLink.md View File

@@ -13,7 +13,7 @@ schema: 2.0.0

## SYNTAX

```PowerShell
```
New-NTFSSymbolicLink [[-Path] <String>] [[-Target] <String>] [-PassThru] [<CommonParameters>]
```

@@ -82,7 +82,6 @@ Accept wildcard characters: False
```

### CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS


+ 1
- 2
Docs/Cmdlets/Remove-Item2.md View File

@@ -13,7 +13,7 @@ schema: 2.0.0

## SYNTAX

```PowerShell
```
Remove-Item2 [[-Path] <String[]>] [-Force] [-Recurse] [-PassThur] [-WhatIf] [-Confirm] [<CommonParameters>]
```

@@ -131,7 +131,6 @@ Accept wildcard characters: False
```

### CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS


+ 4
- 9
Docs/Cmdlets/Remove-NTFSAccess.md View File

@@ -14,31 +14,27 @@ schema: 2.0.0
## SYNTAX

### PathComplex (Default)

```PowerShell
```
Remove-NTFSAccess [-Path] <String[]> [-Account] <IdentityReference2[]> [-AccessRights] <FileSystemRights2>
[-AccessType <AccessControlType>] [-InheritanceFlags <InheritanceFlags>]
[-PropagationFlags <PropagationFlags>] [-PassThru] [<CommonParameters>]
```

### PathSimple

```PowerShell
```
Remove-NTFSAccess [-Path] <String[]> [-Account] <IdentityReference2[]> [-AccessRights] <FileSystemRights2>
[-AccessType <AccessControlType>] [-AppliesTo <ApplyTo>] [-PassThru] [<CommonParameters>]
```

### SDSimple

```PowerShell
```
Remove-NTFSAccess [-SecurityDescriptor] <FileSystemSecurity2[]> [-Account] <IdentityReference2[]>
[-AccessRights] <FileSystemRights2> [-AccessType <AccessControlType>] [-AppliesTo <ApplyTo>] [-PassThru]
[<CommonParameters>]
```

### SDComplex

```PowerShell
```
Remove-NTFSAccess [-SecurityDescriptor] <FileSystemSecurity2[]> [-Account] <IdentityReference2[]>
[-AccessRights] <FileSystemRights2> [-AccessType <AccessControlType>] [-InheritanceFlags <InheritanceFlags>]
[-PropagationFlags <PropagationFlags>] [-PassThru] [<CommonParameters>]
@@ -210,7 +206,6 @@ Accept wildcard characters: False
```

### CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS


+ 4
- 9
Docs/Cmdlets/Remove-NTFSAudit.md View File

@@ -14,31 +14,27 @@ schema: 2.0.0
## SYNTAX

### PathComplex (Default)

```PowerShell
```
Remove-NTFSAudit [-Path] <String[]> [-Account] <IdentityReference2[]> [-AccessRights] <FileSystemRights2>
[-AuditFlags <AuditFlags>] [-InheritanceFlags <InheritanceFlags>] [-PropagationFlags <PropagationFlags>]
[-PassThru] [<CommonParameters>]
```

### PathSimple

```PowerShell
```
Remove-NTFSAudit [-Path] <String[]> [-Account] <IdentityReference2[]> [-AccessRights] <FileSystemRights2>
[-AuditFlags <AuditFlags>] [-AppliesTo <ApplyTo>] [-PassThru] [<CommonParameters>]
```

### SDSimple

```PowerShell
```
Remove-NTFSAudit [-SecurityDescriptor] <FileSystemSecurity2[]> [-Account] <IdentityReference2[]>
[-AccessRights] <FileSystemRights2> [-AuditFlags <AuditFlags>] [-AppliesTo <ApplyTo>] [-PassThru]
[<CommonParameters>]
```

### SDComplex

```PowerShell
```
Remove-NTFSAudit [-SecurityDescriptor] <FileSystemSecurity2[]> [-Account] <IdentityReference2[]>
[-AccessRights] <FileSystemRights2> [-AuditFlags <AuditFlags>] [-InheritanceFlags <InheritanceFlags>]
[-PropagationFlags <PropagationFlags>] [-PassThru] [<CommonParameters>]
@@ -210,7 +206,6 @@ Accept wildcard characters: False
```

### CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS


+ 2
- 5
Docs/Cmdlets/Set-NTFSInheritance.md View File

@@ -14,15 +14,13 @@ schema: 2.0.0
## SYNTAX

### Path (Default)

```PowerShell
```
Set-NTFSInheritance [[-Path] <String[]>] [-AccessInheritanceEnabled <Boolean>]
[-AuditInheritanceEnabled <Boolean>] [-PassThru] [<CommonParameters>]
```

### SecurityDescriptor

```PowerShell
```
Set-NTFSInheritance [-SecurityDescriptor] <FileSystemSecurity2[]> [-AccessInheritanceEnabled <Boolean>]
[-AuditInheritanceEnabled <Boolean>] [-PassThru] [<CommonParameters>]
```
@@ -124,7 +122,6 @@ Accept wildcard characters: False
```

### CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS


+ 2
- 5
Docs/Cmdlets/Set-NTFSOwner.md View File

@@ -14,14 +14,12 @@ schema: 2.0.0
## SYNTAX

### Path (Default)

```PowerShell
```
Set-NTFSOwner [[-Path] <String[]>] [-Account] <IdentityReference2> [-PassThru] [<CommonParameters>]
```

### SecurityDescriptor

```PowerShell
```
Set-NTFSOwner [-SecurityDescriptor] <FileSystemSecurity2[]> [-Account] <IdentityReference2> [-PassThru]
[<CommonParameters>]
```
@@ -107,7 +105,6 @@ Accept wildcard characters: False
```

### CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS


+ 1
- 2
Docs/Cmdlets/Set-NTFSSecurityDescriptor.md View File

@@ -13,7 +13,7 @@ schema: 2.0.0

## SYNTAX

```PowerShell
```
Set-NTFSSecurityDescriptor [-SecurityDescriptor] <FileSystemSecurity2[]> [-PassThru] [<CommonParameters>]
```

@@ -66,7 +66,6 @@ Accept wildcard characters: False
```

### CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS


+ 1
- 2
Docs/Cmdlets/Test-Path2.md View File

@@ -13,7 +13,7 @@ schema: 2.0.0

## SYNTAX

```PowerShell
```
Test-Path2 [-Path] <String[]> [-PathType <TestPathType>] [<CommonParameters>]
```

@@ -67,7 +67,6 @@ Accept wildcard characters: False
```

### CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS


Loading…
Cancel
Save