Browse Source

Fixed Markdown linting

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

13
Docs/Cmdlets/Add-NTFSAccess.md

@ -14,27 +14,31 @@ 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>]
@ -229,6 +233,7 @@ 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

27
Docs/Cmdlets/Add-NTFSAudit.md

@ -8,44 +8,51 @@ schema: 2.0.0
# Add-NTFSAudit
## SYNOPSIS
{{ Fill in the Synopsis }}
## 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>]
```
## DESCRIPTION
{{ Fill in the Description }}
## EXAMPLES
### Example 1
```powershell
```PowerShell
PS C:\> {{ Add example code here }}
```
@ -54,6 +61,7 @@ PS C:\> {{ Add example code here }}
## PARAMETERS
### -AccessRights
{{ Fill AccessRights Description }}
```yaml
@ -70,6 +78,7 @@ Accept wildcard characters: False
```
### -Account
{{ Fill Account Description }}
```yaml
@ -85,6 +94,7 @@ Accept wildcard characters: False
```
### -AppliesTo
{{ Fill AppliesTo Description }}
```yaml
@ -101,6 +111,7 @@ Accept wildcard characters: False
```
### -AuditFlags
{{ Fill AuditFlags Description }}
```yaml
@ -117,6 +128,7 @@ Accept wildcard characters: False
```
### -InheritanceFlags
{{ Fill InheritanceFlags Description }}
```yaml
@ -133,6 +145,7 @@ Accept wildcard characters: False
```
### -PassThru
{{ Fill PassThru Description }}
```yaml
@ -148,6 +161,7 @@ Accept wildcard characters: False
```
### -Path
{{ Fill Path Description }}
```yaml
@ -163,6 +177,7 @@ Accept wildcard characters: False
```
### -PropagationFlags
{{ Fill PropagationFlags Description }}
```yaml
@ -179,6 +194,7 @@ Accept wildcard characters: False
```
### -SecurityDescriptor
{{ Fill SecurityDescriptor Description }}
```yaml
@ -194,6 +210,7 @@ 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

16
Docs/Cmdlets/Clear-NTFSAccess.md

@ -8,27 +8,32 @@ schema: 2.0.0
# Clear-NTFSAccess
## SYNOPSIS
{{ Fill in the Synopsis }}
## SYNTAX
### Path (Default)
```
```PowerShell
Clear-NTFSAccess [-Path] <String[]> [-DisableInheritance] [<CommonParameters>]
```
### SD
```
```PowerShell
Clear-NTFSAccess [-SecurityDescriptor] <FileSystemSecurity2[]> [-DisableInheritance] [<CommonParameters>]
```
## DESCRIPTION
{{ Fill in the Description }}
## EXAMPLES
### Example 1
```powershell
```PowerShell
PS C:\> {{ Add example code here }}
```
@ -37,6 +42,7 @@ PS C:\> {{ Add example code here }}
## PARAMETERS
### -DisableInheritance
{{ Fill DisableInheritance Description }}
```yaml
@ -52,6 +58,7 @@ Accept wildcard characters: False
```
### -Path
{{ Fill Path Description }}
```yaml
@ -67,6 +74,7 @@ Accept wildcard characters: False
```
### -SecurityDescriptor
{{ Fill SecurityDescriptor Description }}
```yaml
@ -82,6 +90,7 @@ 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
@ -93,6 +102,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
## OUTPUTS
### System.Object
## NOTES
## RELATED LINKS

16
Docs/Cmdlets/Clear-NTFSAudit.md

@ -8,27 +8,32 @@ schema: 2.0.0
# Clear-NTFSAudit
## SYNOPSIS
{{ Fill in the Synopsis }}
## SYNTAX
### Path (Default)
```
```PowerShell
Clear-NTFSAudit [-Path] <String[]> [-DisableInheritance] [<CommonParameters>]
```
### SD
```
```PowerShell
Clear-NTFSAudit [-SecurityDescriptor] <FileSystemSecurity2[]> [-DisableInheritance] [<CommonParameters>]
```
## DESCRIPTION
{{ Fill in the Description }}
## EXAMPLES
### Example 1
```powershell
```PowerShell
PS C:\> {{ Add example code here }}
```
@ -37,6 +42,7 @@ PS C:\> {{ Add example code here }}
## PARAMETERS
### -DisableInheritance
{{ Fill DisableInheritance Description }}
```yaml
@ -52,6 +58,7 @@ Accept wildcard characters: False
```
### -Path
{{ Fill Path Description }}
```yaml
@ -67,6 +74,7 @@ Accept wildcard characters: False
```
### -SecurityDescriptor
{{ Fill SecurityDescriptor Description }}
```yaml
@ -82,6 +90,7 @@ 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
@ -93,6 +102,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
## OUTPUTS
### System.Object
## NOTES
## RELATED LINKS

15
Docs/Cmdlets/Copy-Item2.md

@ -8,22 +8,25 @@ schema: 2.0.0
# Copy-Item2
## SYNOPSIS
{{ Fill in the Synopsis }}
## SYNTAX
```
```PowerShell
Copy-Item2 [-Path] <String[]> [-Destination] <String> [-Force] [-PassThru <Boolean>] [-WhatIf] [-Confirm]
[<CommonParameters>]
```
## DESCRIPTION
{{ Fill in the Description }}
## EXAMPLES
### Example 1
```powershell
```PowerShell
PS C:\> {{ Add example code here }}
```
@ -32,6 +35,7 @@ PS C:\> {{ Add example code here }}
## PARAMETERS
### -Confirm
Prompts you for confirmation before running the cmdlet.
```yaml
@ -47,6 +51,7 @@ Accept wildcard characters: False
```
### -Destination
{{ Fill Destination Description }}
```yaml
@ -62,6 +67,7 @@ Accept wildcard characters: False
```
### -Force
{{ Fill Force Description }}
```yaml
@ -77,6 +83,7 @@ Accept wildcard characters: False
```
### -PassThru
{{ Fill PassThru Description }}
```yaml
@ -92,6 +99,7 @@ Accept wildcard characters: False
```
### -Path
{{ Fill Path Description }}
```yaml
@ -107,6 +115,7 @@ Accept wildcard characters: False
```
### -WhatIf
Shows what would happen if the cmdlet runs.
The cmdlet is not run.
@ -123,6 +132,7 @@ 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
@ -134,6 +144,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
## OUTPUTS
### System.Object
## NOTES
## RELATED LINKS

17
Docs/Cmdlets/Disable-NTFSAccessInheritance.md

@ -8,29 +8,34 @@ schema: 2.0.0
# Disable-NTFSAccessInheritance
## SYNOPSIS
{{ Fill in the Synopsis }}
## SYNTAX
### Path (Default)
```
```PowerShell
Disable-NTFSAccessInheritance [[-Path] <String[]>] [-RemoveInheritedAccessRules] [-PassThru]
[<CommonParameters>]
```
### SecurityDescriptor
```
```PowerShell
Disable-NTFSAccessInheritance [-SecurityDescriptor] <FileSystemSecurity2[]> [-RemoveInheritedAccessRules]
[-PassThru] [<CommonParameters>]
```
## DESCRIPTION
{{ Fill in the Description }}
## EXAMPLES
### Example 1
```powershell
```PowerShell
PS C:\> {{ Add example code here }}
```
@ -39,6 +44,7 @@ PS C:\> {{ Add example code here }}
## PARAMETERS
### -PassThru
{{ Fill PassThru Description }}
```yaml
@ -54,6 +60,7 @@ Accept wildcard characters: False
```
### -Path
{{ Fill Path Description }}
```yaml
@ -69,6 +76,7 @@ Accept wildcard characters: False
```
### -RemoveInheritedAccessRules
{{ Fill RemoveInheritedAccessRules Description }}
```yaml
@ -84,6 +92,7 @@ Accept wildcard characters: False
```
### -SecurityDescriptor
{{ Fill SecurityDescriptor Description }}
```yaml
@ -99,6 +108,7 @@ 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
@ -110,6 +120,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
## OUTPUTS
### System.Object
## NOTES
## RELATED LINKS

17
Docs/Cmdlets/Disable-NTFSAuditInheritance.md

@ -8,29 +8,34 @@ schema: 2.0.0
# Disable-NTFSAuditInheritance
## SYNOPSIS
{{ Fill in the Synopsis }}
## SYNTAX
### Path (Default)
```
```PowerShell
Disable-NTFSAuditInheritance [[-Path] <String[]>] [-RemoveInheritedAccessRules] [-PassThru]
[<CommonParameters>]
```
### SecurityDescriptor
```
```PowerShell
Disable-NTFSAuditInheritance [-SecurityDescriptor] <FileSystemSecurity2[]> [-RemoveInheritedAccessRules]
[-PassThru] [<CommonParameters>]
```
## DESCRIPTION
{{ Fill in the Description }}
## EXAMPLES
### Example 1
```powershell
```PowerShell
PS C:\> {{ Add example code here }}
```
@ -39,6 +44,7 @@ PS C:\> {{ Add example code here }}
## PARAMETERS
### -PassThru
{{ Fill PassThru Description }}
```yaml
@ -54,6 +60,7 @@ Accept wildcard characters: False
```
### -Path
{{ Fill Path Description }}
```yaml
@ -69,6 +76,7 @@ Accept wildcard characters: False
```
### -RemoveInheritedAccessRules
{{ Fill RemoveInheritedAccessRules Description }}
```yaml
@ -84,6 +92,7 @@ Accept wildcard characters: False
```
### -SecurityDescriptor
{{ Fill SecurityDescriptor Description }}
```yaml
@ -99,6 +108,7 @@ 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
@ -110,6 +120,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
## OUTPUTS
### System.Object
## NOTES
## RELATED LINKS

9
Docs/Cmdlets/Disable-Privileges.md

@ -8,21 +8,24 @@ schema: 2.0.0
# Disable-Privileges
## SYNOPSIS
{{ Fill in the Synopsis }}
## SYNTAX
```
```PowerShell
Disable-Privileges [-PassThru] [<CommonParameters>]
```
## DESCRIPTION
{{ Fill in the Description }}
## EXAMPLES
### Example 1
```powershell
```PowerShell
PS C:\> {{ Add example code here }}
```
@ -31,6 +34,7 @@ PS C:\> {{ Add example code here }}
## PARAMETERS
### -PassThru
{{ Fill PassThru Description }}
```yaml
@ -46,6 +50,7 @@ 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

17
Docs/Cmdlets/Enable-NTFSAccessInheritance.md

@ -8,28 +8,33 @@ schema: 2.0.0
# Enable-NTFSAccessInheritance
## SYNOPSIS
{{ Fill in the Synopsis }}
## SYNTAX
### Path (Default)
```
```PowerShell
Enable-NTFSAccessInheritance [[-Path] <String[]>] [-PassThru] [-RemoveExplicitAccessRules] [<CommonParameters>]
```
### SecurityDescriptor
```
```PowerShell
Enable-NTFSAccessInheritance [-SecurityDescriptor] <FileSystemSecurity2[]> [-PassThru]
[-RemoveExplicitAccessRules] [<CommonParameters>]
```
## DESCRIPTION
{{ Fill in the Description }}
## EXAMPLES
### Example 1
```powershell
```PowerShell
PS C:\> {{ Add example code here }}
```
@ -38,6 +43,7 @@ PS C:\> {{ Add example code here }}
## PARAMETERS
### -PassThru
{{ Fill PassThru Description }}
```yaml
@ -53,6 +59,7 @@ Accept wildcard characters: False
```
### -Path
{{ Fill Path Description }}
```yaml
@ -68,6 +75,7 @@ Accept wildcard characters: False
```
### -RemoveExplicitAccessRules
{{ Fill RemoveExplicitAccessRules Description }}
```yaml
@ -83,6 +91,7 @@ Accept wildcard characters: False
```
### -SecurityDescriptor
{{ Fill SecurityDescriptor Description }}
```yaml
@ -98,6 +107,7 @@ 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
@ -109,6 +119,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
## OUTPUTS
### System.Object
## NOTES
## RELATED LINKS

17
Docs/Cmdlets/Enable-NTFSAuditInheritance.md

@ -8,28 +8,33 @@ schema: 2.0.0
# Enable-NTFSAuditInheritance
## SYNOPSIS
{{ Fill in the Synopsis }}
## SYNTAX
### Path (Default)
```
```PowerShell
Enable-NTFSAuditInheritance [[-Path] <String[]>] [-PassThru] [-RemoveExplicitAccessRules] [<CommonParameters>]
```
### SecurityDescriptor
```
```PowerShell
Enable-NTFSAuditInheritance [-SecurityDescriptor] <FileSystemSecurity2[]> [-PassThru]
[-RemoveExplicitAccessRules] [<CommonParameters>]
```
## DESCRIPTION
{{ Fill in the Description }}
## EXAMPLES
### Example 1
```powershell
```PowerShell
PS C:\> {{ Add example code here }}
```
@ -38,6 +43,7 @@ PS C:\> {{ Add example code here }}
## PARAMETERS
### -PassThru
{{ Fill PassThru Description }}
```yaml
@ -53,6 +59,7 @@ Accept wildcard characters: False
```
### -Path
{{ Fill Path Description }}
```yaml
@ -68,6 +75,7 @@ Accept wildcard characters: False
```
### -RemoveExplicitAccessRules
{{ Fill RemoveExplicitAccessRules Description }}
```yaml
@ -83,6 +91,7 @@ Accept wildcard characters: False
```
### -SecurityDescriptor
{{ Fill SecurityDescriptor Description }}
```yaml
@ -98,6 +107,7 @@ 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
@ -109,6 +119,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
## OUTPUTS
### System.Object
## NOTES
## RELATED LINKS

9
Docs/Cmdlets/Enable-Privileges.md

@ -8,21 +8,24 @@ schema: 2.0.0
# Enable-Privileges
## SYNOPSIS
{{ Fill in the Synopsis }}
## SYNTAX
```
```PowerShell
Enable-Privileges [-PassThru] [<CommonParameters>]
```
## DESCRIPTION
{{ Fill in the Description }}
## EXAMPLES
### Example 1
```powershell
```PowerShell
PS C:\> {{ Add example code here }}
```
@ -31,6 +34,7 @@ PS C:\> {{ Add example code here }}
## PARAMETERS
### -PassThru
{{ Fill PassThru Description }}
```yaml
@ -46,6 +50,7 @@ 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

21
Docs/Cmdlets/Get-ChildItem2.md

@ -8,23 +8,26 @@ schema: 2.0.0
# Get-ChildItem2
## SYNOPSIS
{{ Fill in the Synopsis }}
## SYNTAX
```
```PowerShell
Get-ChildItem2 [[-Path] <String[]>] [[-Filter] <String>] [-Recurse] [-Directory] [-File]
[-Attributes <FileAttributes>] [-Hidden] [-System] [-ReadOnly] [-Force] [-SkipMountPoints]
[-SkipSymbolicLinks] [-Depth <Int32>] [<CommonParameters>]
```
## DESCRIPTION
{{ Fill in the Description }}
## EXAMPLES
### Example 1
```powershell
```PowerShell
PS C:\> {{ Add example code here }}
```
@ -33,6 +36,7 @@ PS C:\> {{ Add example code here }}
## PARAMETERS
### -Attributes
{{ Fill Attributes Description }}
```yaml
@ -49,6 +53,7 @@ Accept wildcard characters: False
```
### -Depth
{{ Fill Depth Description }}
```yaml
@ -64,6 +69,7 @@ Accept wildcard characters: False
```
### -Directory
{{ Fill Directory Description }}
```yaml
@ -79,6 +85,7 @@ Accept wildcard characters: False
```
### -File
{{ Fill File Description }}
```yaml
@ -94,6 +101,7 @@ Accept wildcard characters: False
```
### -Filter
{{ Fill Filter Description }}
```yaml
@ -109,6 +117,7 @@ Accept wildcard characters: False
```
### -Force
{{ Fill Force Description }}
```yaml
@ -124,6 +133,7 @@ Accept wildcard characters: False
```
### -Hidden
{{ Fill Hidden Description }}
```yaml
@ -139,6 +149,7 @@ Accept wildcard characters: False
```
### -Path
{{ Fill Path Description }}
```yaml
@ -154,6 +165,7 @@ Accept wildcard characters: False
```
### -ReadOnly
{{ Fill ReadOnly Description }}
```yaml
@ -169,6 +181,7 @@ Accept wildcard characters: False
```
### -Recurse
{{ Fill Recurse Description }}
```yaml
@ -184,6 +197,7 @@ Accept wildcard characters: False
```
### -SkipMountPoints
{{ Fill SkipMountPoints Description }}
```yaml
@ -199,6 +213,7 @@ Accept wildcard characters: False
```
### -SkipSymbolicLinks
{{ Fill SkipSymbolicLinks Description }}
```yaml
@ -214,6 +229,7 @@ Accept wildcard characters: False
```
### -System
{{ Fill System Description }}
```yaml
@ -229,6 +245,7 @@ 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

9
Docs/Cmdlets/Get-DiskSpace.md

@ -8,21 +8,24 @@ schema: 2.0.0
# Get-DiskSpace
## SYNOPSIS
{{ Fill in the Synopsis }}
## SYNTAX
```
```PowerShell
Get-DiskSpace [[-DriveLetter] <String[]>] [<CommonParameters>]
```
## DESCRIPTION
{{ Fill in the Description }}
## EXAMPLES
### Example 1
```powershell
```PowerShell
PS C:\> {{ Add example code here }}
```
@ -31,6 +34,7 @@ PS C:\> {{ Add example code here }}
## PARAMETERS
### -DriveLetter
{{ Fill DriveLetter Description }}
```yaml
@ -46,6 +50,7 @@ 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

9
Docs/Cmdlets/Get-FileHash2.md

@ -8,21 +8,25 @@ schema: 2.0.0
# Get-FileHash2
## SYNOPSIS
{{ Fill in the Synopsis }}
## SYNTAX
```
Get-FileHash2 [-Path] <String[]> [[-Algorithm] <HashAlgorithms>] [<CommonParameters>]
```
## DESCRIPTION
{{ Fill in the Description }}
## EXAMPLES
### Example 1
```powershell
```PowerShell
PS C:\> {{ Add example code here }}
```
@ -31,6 +35,7 @@ PS C:\> {{ Add example code here }}
## PARAMETERS
### -Algorithm
{{ Fill Algorithm Description }}
```yaml
@ -47,6 +52,7 @@ Accept wildcard characters: False
```
### -Path
{{ Fill Path Description }}
```yaml
@ -62,6 +68,7 @@ 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

9
Docs/Cmdlets/Get-Item2.md

@ -8,21 +8,24 @@ schema: 2.0.0
# Get-Item2
## SYNOPSIS
{{ Fill in the Synopsis }}
## SYNTAX
```
```PowerShell
Get-Item2 [[-Path] <String[]>] [<CommonParameters>]
```
## DESCRIPTION
{{ Fill in the Description }}
## EXAMPLES
### Example 1
```powershell
```PowerShell
PS C:\> {{ Add example code here }}
```
@ -31,6 +34,7 @@ PS C:\> {{ Add example code here }}
## PARAMETERS
### -Path
{{ Fill Path Description }}
```yaml
@ -46,6 +50,7 @@ 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

17
Docs/Cmdlets/Get-NTFSAccess.md

@ -8,29 +8,34 @@ schema: 2.0.0
# Get-NTFSAccess
## SYNOPSIS
{{ Fill in the Synopsis }}
## SYNTAX
### Path (Default)
```
```PowerShell
Get-NTFSAccess [[-Path] <String[]>] [-Account <IdentityReference2>] [-ExcludeExplicit] [-ExcludeInherited]
[<CommonParameters>]
```
### SD
```
```PowerShell
Get-NTFSAccess [-SecurityDescriptor] <FileSystemSecurity2[]> [-Account <IdentityReference2>] [-ExcludeExplicit]
[-ExcludeInherited] [<CommonParameters>]
```
## DESCRIPTION
{{ Fill in the Description }}
## EXAMPLES
### Example 1
```powershell
```PowerShell
PS C:\> {{ Add example code here }}
```
@ -39,6 +44,7 @@ PS C:\> {{ Add example code here }}
## PARAMETERS
### -Account
{{ Fill Account Description }}
```yaml
@ -54,6 +60,7 @@ Accept wildcard characters: False
```
### -ExcludeExplicit
{{ Fill ExcludeExplicit Description }}
```yaml
@ -69,6 +76,7 @@ Accept wildcard characters: False
```
### -ExcludeInherited
{{ Fill ExcludeInherited Description }}
```yaml
@ -84,6 +92,7 @@ Accept wildcard characters: False
```
### -Path
{{ Fill Path Description }}
```yaml
@ -99,6 +108,7 @@ Accept wildcard characters: False
```
### -SecurityDescriptor
{{ Fill SecurityDescriptor Description }}
```yaml
@ -114,6 +124,7 @@ 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

17
Docs/Cmdlets/Get-NTFSAudit.md

@ -8,29 +8,34 @@ schema: 2.0.0
# Get-NTFSAudit
## SYNOPSIS
{{ Fill in the Synopsis }}
## SYNTAX
### Path
```
```PowerShell
Get-NTFSAudit [[-Path] <String[]>] [-Account <IdentityReference2>] [-ExcludeExplicit] [-ExcludeInherited]
[<CommonParameters>]
```
### SD
```
```PowerShell
Get-NTFSAudit [-SecurityDescriptor] <FileSystemSecurity2[]> [-Account <IdentityReference2>] [-ExcludeExplicit]
[-ExcludeInherited] [<CommonParameters>]
```
## DESCRIPTION
{{ Fill in the Description }}
## EXAMPLES
### Example 1
```powershell
```PowerShell
PS C:\> {{ Add example code here }}
```
@ -39,6 +44,7 @@ PS C:\> {{ Add example code here }}
## PARAMETERS
### -Account
{{ Fill Account Description }}
```yaml
@ -54,6 +60,7 @@ Accept wildcard characters: False
```
### -ExcludeExplicit
{{ Fill ExcludeExplicit Description }}
```yaml
@ -69,6 +76,7 @@ Accept wildcard characters: False
```
### -ExcludeInherited
{{ Fill ExcludeInherited Description }}
```yaml
@ -84,6 +92,7 @@ Accept wildcard characters: False
```
### -Path
{{ Fill Path Description }}
```yaml
@ -99,6 +108,7 @@ Accept wildcard characters: False
```
### -SecurityDescriptor
{{ Fill SecurityDescriptor Description }}
```yaml
@ -114,6 +124,7 @@ 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

17
Docs/Cmdlets/Get-NTFSEffectiveAccess.md

@ -8,29 +8,34 @@ schema: 2.0.0
# Get-NTFSEffectiveAccess
## SYNOPSIS
{{ Fill in the Synopsis }}
## 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>]
```
## DESCRIPTION
{{ Fill in the Description }}
## EXAMPLES
### Example 1
```powershell
```PowerShell
PS C:\> {{ Add example code here }}
```
@ -39,6 +44,7 @@ PS C:\> {{ Add example code here }}
## PARAMETERS
### -Account
{{ Fill Account Description }}
```yaml
@ -54,6 +60,7 @@ Accept wildcard characters: False
```
### -ExcludeNoneAccessEntries
{{ Fill ExcludeNoneAccessEntries Description }}
```yaml
@ -69,6 +76,7 @@ Accept wildcard characters: False
```
### -Path
{{ Fill Path Description }}
```yaml
@ -84,6 +92,7 @@ Accept wildcard characters: False
```
### -SecurityDescriptor
{{ Fill SecurityDescriptor Description }}
```yaml
@ -99,6 +108,7 @@ Accept wildcard characters: False
```
### -ServerName
{{ Fill ServerName Description }}
```yaml
@ -114,6 +124,7 @@ 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

9
Docs/Cmdlets/Get-NTFSHardLink.md

@ -8,21 +8,24 @@ schema: 2.0.0
# Get-NTFSHardLink
## SYNOPSIS
{{ Fill in the Synopsis }}
## SYNTAX
```
```PowerShell
Get-NTFSHardLink [[-Path] <String[]>] [<CommonParameters>]
```
## DESCRIPTION
{{ Fill in the Description }}
## EXAMPLES
### Example 1
```powershell
```PowerShell
PS C:\> {{ Add example code here }}
```
@ -31,6 +34,7 @@ PS C:\> {{ Add example code here }}
## PARAMETERS
### -Path
{{ Fill Path Description }}
```yaml
@ -46,6 +50,7 @@ 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

14
Docs/Cmdlets/Get-NTFSInheritance.md

@ -8,27 +8,32 @@ schema: 2.0.0
# Get-NTFSInheritance
## SYNOPSIS
{{ Fill in the Synopsis }}
## SYNTAX
### Path (Default)
```
```PowerShell
Get-NTFSInheritance [[-Path] <String[]>] [<CommonParameters>]
```
### SecurityDescriptor
```
```PowerShell
Get-NTFSInheritance [-SecurityDescriptor] <FileSystemSecurity2[]> [<CommonParameters>]
```
## DESCRIPTION
{{ Fill in the Description }}
## EXAMPLES
### Example 1
```powershell
```PowerShell
PS C:\> {{ Add example code here }}
```
@ -37,6 +42,7 @@ PS C:\> {{ Add example code here }}
## PARAMETERS
### -Path
{{ Fill Path Description }}
```yaml
@ -52,6 +58,7 @@ Accept wildcard characters: False
```
### -SecurityDescriptor
{{ Fill SecurityDescriptor Description }}
```yaml
@ -67,6 +74,7 @@ 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

17
Docs/Cmdlets/Get-NTFSOrphanedAccess.md

@ -8,29 +8,34 @@ schema: 2.0.0
# Get-NTFSOrphanedAccess
## SYNOPSIS
{{ Fill in the Synopsis }}
## SYNTAX
### Path
```
```PowerShell
Get-NTFSOrphanedAccess [[-Path] <String[]>] [-Account <IdentityReference2>] [-ExcludeExplicit]
[-ExcludeInherited] [<CommonParameters>]
```
### SD
```
```PowerShell
Get-NTFSOrphanedAccess [-SecurityDescriptor] <FileSystemSecurity2[]> [-Account <IdentityReference2>]
[-ExcludeExplicit] [-ExcludeInherited] [<CommonParameters>]
```
## DESCRIPTION
{{ Fill in the Description }}
## EXAMPLES
### Example 1
```powershell
```PowerShell
PS C:\> {{ Add example code here }}
```
@ -39,6 +44,7 @@ PS C:\> {{ Add example code here }}
## PARAMETERS
### -Account
{{ Fill Account Description }}
```yaml
@ -54,6 +60,7 @@ Accept wildcard characters: False
```
### -ExcludeExplicit
{{ Fill ExcludeExplicit Description }}
```yaml
@ -69,6 +76,7 @@ Accept wildcard characters: False
```
### -ExcludeInherited
{{ Fill ExcludeInherited Description }}
```yaml
@ -84,6 +92,7 @@ Accept wildcard characters: False
```
### -Path
{{ Fill Path Description }}
```yaml
@ -99,6 +108,7 @@ Accept wildcard characters: False
```
### -SecurityDescriptor
{{ Fill SecurityDescriptor Description }}
```yaml
@ -114,6 +124,7 @@ 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

17
Docs/Cmdlets/Get-NTFSOrphanedAudit.md

@ -8,29 +8,34 @@ schema: 2.0.0
# Get-NTFSOrphanedAudit
## SYNOPSIS
{{ Fill in the Synopsis }}
## SYNTAX
### Path
```
```PowerShell
Get-NTFSOrphanedAudit [[-Path] <String[]>] [-Account <IdentityReference2>] [-ExcludeExplicit]
[-ExcludeInherited] [<CommonParameters>]
```
### SD
```
```PowerShell
Get-NTFSOrphanedAudit [-SecurityDescriptor] <FileSystemSecurity2[]> [-Account <IdentityReference2>]
[-ExcludeExplicit] [-ExcludeInherited] [<CommonParameters>]
```
## DESCRIPTION
{{ Fill in the Description }}
## EXAMPLES
### Example 1
```powershell
```PowerShell
PS C:\> {{ Add example code here }}
```
@ -39,6 +44,7 @@ PS C:\> {{ Add example code here }}
## PARAMETERS
### -Account
{{ Fill Account Description }}
```yaml
@ -54,6 +60,7 @@ Accept wildcard characters: False
```
### -ExcludeExplicit
{{ Fill ExcludeExplicit Description }}
```yaml
@ -69,6 +76,7 @@ Accept wildcard characters: False
```
### -ExcludeInherited
{{ Fill ExcludeInherited Description }}
```yaml
@ -84,6 +92,7 @@ Accept wildcard characters: False
```
### -Path
{{ Fill Path Description }}
```yaml
@ -99,6 +108,7 @@ Accept wildcard characters: False
```
### -SecurityDescriptor
{{ Fill SecurityDescriptor Description }}
```yaml
@ -114,6 +124,7 @@ 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

14
Docs/Cmdlets/Get-NTFSOwner.md

@ -8,27 +8,32 @@ schema: 2.0.0
# Get-NTFSOwner
## SYNOPSIS
{{ Fill in the Synopsis }}
## SYNTAX
### Path (Default)
```
```PowerShell
Get-NTFSOwner [[-Path] <String[]>] [<CommonParameters>]
```
### SecurityDescriptor
```
```PowerShell
Get-NTFSOwner [-SecurityDescriptor] <FileSystemSecurity2[]> [<CommonParameters>]
```
## DESCRIPTION
{{ Fill in the Description }}
## EXAMPLES
### Example 1
```powershell
```PowerShell
PS C:\> {{ Add example code here }}
```
@ -37,6 +42,7 @@ PS C:\> {{ Add example code here }}
## PARAMETERS
### -Path
{{ Fill Path Description }}
```yaml
@ -52,6 +58,7 @@ Accept wildcard characters: False
```
### -SecurityDescriptor
{{ Fill SecurityDescriptor Description }}
```yaml
@ -67,6 +74,7 @@ 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

9
Docs/Cmdlets/Get-NTFSSecurityDescriptor.md

@ -8,21 +8,24 @@ schema: 2.0.0
# Get-NTFSSecurityDescriptor
## SYNOPSIS
{{ Fill in the Synopsis }}
## SYNTAX
```
```PowerShell
Get-NTFSSecurityDescriptor [[-Path] <String[]>] [<CommonParameters>]
```
## DESCRIPTION
{{ Fill in the Description }}
## EXAMPLES
### Example 1
```powershell
```PowerShell
PS C:\> {{ Add example code here }}
```
@ -31,6 +34,7 @@ PS C:\> {{ Add example code here }}
## PARAMETERS
### -Path
{{ Fill Path Description }}
```yaml
@ -46,6 +50,7 @@ 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

18
Docs/Cmdlets/Get-NTFSSimpleAccess.md

@ -8,29 +8,34 @@ schema: 2.0.0
# Get-NTFSSimpleAccess
## SYNOPSIS
{{ Fill in the Synopsis }}
## 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>]
```
## DESCRIPTION
{{ Fill in the Description }}
## EXAMPLES
### Example 1
```powershell
```PowerShell
PS C:\> {{ Add example code here }}
```
@ -39,6 +44,7 @@ PS C:\> {{ Add example code here }}
## PARAMETERS
### -Account
{{ Fill Account Description }}
```yaml
@ -54,6 +60,7 @@ Accept wildcard characters: False
```
### -ExcludeExplicit
{{ Fill ExcludeExplicit Description }}
```yaml
@ -69,6 +76,7 @@ Accept wildcard characters: False
```
### -ExcludeInherited
{{ Fill ExcludeInherited Description }}
```yaml
@ -84,6 +92,7 @@ Accept wildcard characters: False
```
### -IncludeRootFolder
{{ Fill IncludeRootFolder Description }}
```yaml
@ -99,6 +108,7 @@ Accept wildcard characters: False
```
### -Path
{{ Fill Path Description }}
```yaml
@ -114,6 +124,7 @@ Accept wildcard characters: False
```
### -SecurityDescriptor
{{ Fill SecurityDescriptor Description }}
```yaml
@ -129,6 +140,7 @@ 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

8
Docs/Cmdlets/Get-Privileges.md

@ -8,21 +8,24 @@ schema: 2.0.0
# Get-Privileges
## SYNOPSIS
{{ Fill in the Synopsis }}
## SYNTAX
```
```PowerShell
Get-Privileges [<CommonParameters>]
```
## DESCRIPTION
{{ Fill in the Description }}
## EXAMPLES
### Example 1
```powershell
```PowerShell
PS C:\> {{ Add example code here }}
```
@ -31,6 +34,7 @@ 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

15
Docs/Cmdlets/Move-Item2.md

@ -8,22 +8,25 @@ schema: 2.0.0
# Move-Item2
## SYNOPSIS
{{ Fill in the Synopsis }}
## SYNTAX
```
```PowerShell
Move-Item2 [-Path] <String[]> [-Destination] <String> [-Force] [-PassThru <Boolean>] [-WhatIf] [-Confirm]
[<CommonParameters>]
```
## DESCRIPTION
{{ Fill in the Description }}
## EXAMPLES
### Example 1
```powershell
```PowerShell
PS C:\> {{ Add example code here }}
```
@ -32,6 +35,7 @@ PS C:\> {{ Add example code here }}
## PARAMETERS
### -Confirm
Prompts you for confirmation before running the cmdlet.
```yaml
@ -47,6 +51,7 @@ Accept wildcard characters: False
```
### -Destination
{{ Fill Destination Description }}
```yaml
@ -62,6 +67,7 @@ Accept wildcard characters: False
```
### -Force
{{ Fill Force Description }}
```yaml
@ -77,6 +83,7 @@ Accept wildcard characters: False
```
### -PassThru
{{ Fill PassThru Description }}
```yaml
@ -92,6 +99,7 @@ Accept wildcard characters: False
```
### -Path
{{ Fill Path Description }}
```yaml
@ -107,6 +115,7 @@ Accept wildcard characters: False
```
### -WhatIf
Shows what would happen if the cmdlet runs.
The cmdlet is not run.
@ -123,6 +132,7 @@ 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
@ -134,6 +144,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
## OUTPUTS
### System.Object
## NOTES
## RELATED LINKS

11
Docs/Cmdlets/New-NTFSHardLink.md

@ -8,21 +8,24 @@ schema: 2.0.0
# New-NTFSHardLink
## SYNOPSIS
{{ Fill in the Synopsis }}
## SYNTAX
```
```PowerShell
New-NTFSHardLink [[-Path] <String>] [[-Target] <String>] [-PassThru] [<CommonParameters>]
```
## DESCRIPTION
{{ Fill in the Description }}
## EXAMPLES
### Example 1
```powershell
```PowerShell
PS C:\> {{ Add example code here }}
```
@ -31,6 +34,7 @@ PS C:\> {{ Add example code here }}
## PARAMETERS
### -PassThru
{{ Fill PassThru Description }}
```yaml
@ -46,6 +50,7 @@ Accept wildcard characters: False
```
### -Path
{{ Fill Path Description }}
```yaml
@ -61,6 +66,7 @@ Accept wildcard characters: False
```
### -Target
{{ Fill Target Description }}
```yaml
@ -76,6 +82,7 @@ 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

11
Docs/Cmdlets/New-NTFSSymbolicLink.md

@ -8,21 +8,24 @@ schema: 2.0.0
# New-NTFSSymbolicLink
## SYNOPSIS
{{ Fill in the Synopsis }}
## SYNTAX
```
```PowerShell
New-NTFSSymbolicLink [[-Path] <String>] [[-Target] <String>] [-PassThru] [<CommonParameters>]
```
## DESCRIPTION
{{ Fill in the Description }}
## EXAMPLES
### Example 1
```powershell
```PowerShell
PS C:\> {{ Add example code here }}
```
@ -31,6 +34,7 @@ PS C:\> {{ Add example code here }}
## PARAMETERS
### -PassThru
{{ Fill PassThru Description }}
```yaml
@ -46,6 +50,7 @@ Accept wildcard characters: False
```
### -Path
{{ Fill Path Description }}
```yaml
@ -61,6 +66,7 @@ Accept wildcard characters: False
```
### -Target
{{ Fill Target Description }}
```yaml
@ -76,6 +82,7 @@ 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

15
Docs/Cmdlets/Remove-Item2.md

@ -8,21 +8,24 @@ schema: 2.0.0
# Remove-Item2
## SYNOPSIS
{{ Fill in the Synopsis }}
## SYNTAX
```
```PowerShell
Remove-Item2 [[-Path] <String[]>] [-Force] [-Recurse] [-PassThur] [-WhatIf] [-Confirm] [<CommonParameters>]
```
## DESCRIPTION
{{ Fill in the Description }}
## EXAMPLES
### Example 1
```powershell
```PowerShell
PS C:\> {{ Add example code here }}
```
@ -31,6 +34,7 @@ PS C:\> {{ Add example code here }}
## PARAMETERS
### -Confirm
Prompts you for confirmation before running the cmdlet.
```yaml
@ -46,6 +50,7 @@ Accept wildcard characters: False
```
### -Force
{{ Fill Force Description }}
```yaml
@ -61,6 +66,7 @@ Accept wildcard characters: False
```
### -PassThur
{{ Fill PassThur Description }}
```yaml
@ -76,6 +82,7 @@ Accept wildcard characters: False
```
### -Path
{{ Fill Path Description }}
```yaml
@ -91,6 +98,7 @@ Accept wildcard characters: False
```
### -Recurse
{{ Fill Recurse Description }}
```yaml
@ -106,6 +114,7 @@ Accept wildcard characters: False
```
### -WhatIf
Shows what would happen if the cmdlet runs.
The cmdlet is not run.
@ -122,6 +131,7 @@ 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
@ -131,6 +141,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
## OUTPUTS
### System.Object
## NOTES
## RELATED LINKS

27
Docs/Cmdlets/Remove-NTFSAccess.md

@ -8,44 +8,51 @@ schema: 2.0.0
# Remove-NTFSAccess
## SYNOPSIS
{{ Fill in the Synopsis }}
## 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>]
```
## DESCRIPTION
{{ Fill in the Description }}
## EXAMPLES
### Example 1
```powershell
```PowerShell
PS C:\> {{ Add example code here }}
```
@ -54,6 +61,7 @@ PS C:\> {{ Add example code here }}
## PARAMETERS
### -AccessRights
{{ Fill AccessRights Description }}
```yaml
@ -70,6 +78,7 @@ Accept wildcard characters: False
```
### -AccessType
{{ Fill AccessType Description }}
```yaml
@ -86,6 +95,7 @@ Accept wildcard characters: False
```
### -Account
{{ Fill Account Description }}
```yaml
@ -101,6 +111,7 @@ Accept wildcard characters: False
```
### -AppliesTo
{{ Fill AppliesTo Description }}
```yaml
@ -117,6 +128,7 @@ Accept wildcard characters: False
```
### -InheritanceFlags
{{ Fill InheritanceFlags Description }}
```yaml
@ -133,6 +145,7 @@ Accept wildcard characters: False
```
### -PassThru
{{ Fill PassThru Description }}
```yaml
@ -148,6 +161,7 @@ Accept wildcard characters: False
```
### -Path
{{ Fill Path Description }}
```yaml
@ -163,6 +177,7 @@ Accept wildcard characters: False
```
### -PropagationFlags
{{ Fill PropagationFlags Description }}
```yaml
@ -179,6 +194,7 @@ Accept wildcard characters: False
```
### -SecurityDescriptor
{{ Fill SecurityDescriptor Description }}
```yaml
@ -194,6 +210,7 @@ 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

27
Docs/Cmdlets/Remove-NTFSAudit.md

@ -8,44 +8,51 @@ schema: 2.0.0
# Remove-NTFSAudit
## SYNOPSIS
{{ Fill in the Synopsis }}
## 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>]
```
## DESCRIPTION
{{ Fill in the Description }}
## EXAMPLES
### Example 1
```powershell
```PowerShell
PS C:\> {{ Add example code here }}
```
@ -54,6 +61,7 @@ PS C:\> {{ Add example code here }}
## PARAMETERS
### -AccessRights
{{ Fill AccessRights Description }}
```yaml
@ -70,6 +78,7 @@ Accept wildcard characters: False
```
### -Account
{{ Fill Account Description }}
```yaml
@ -85,6 +94,7 @@ Accept wildcard characters: False
```
### -AppliesTo
{{ Fill AppliesTo Description }}
```yaml
@ -101,6 +111,7 @@ Accept wildcard characters: False
```
### -AuditFlags
{{ Fill AuditFlags Description }}
```yaml
@ -117,6 +128,7 @@ Accept wildcard characters: False
```
### -InheritanceFlags
{{ Fill InheritanceFlags Description }}
```yaml
@ -133,6 +145,7 @@ Accept wildcard characters: False
```
### -PassThru
{{ Fill PassThru Description }}
```yaml
@ -148,6 +161,7 @@ Accept wildcard characters: False
```
### -Path
{{ Fill Path Description }}
```yaml
@ -163,6 +177,7 @@ Accept wildcard characters: False
```
### -PropagationFlags
{{ Fill PropagationFlags Description }}
```yaml
@ -179,6 +194,7 @@ Accept wildcard characters: False
```
### -SecurityDescriptor
{{ Fill SecurityDescriptor Description }}
```yaml
@ -194,6 +210,7 @@ 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

18
Docs/Cmdlets/Set-NTFSInheritance.md

@ -8,29 +8,34 @@ schema: 2.0.0
# Set-NTFSInheritance
## SYNOPSIS
{{ Fill in the Synopsis }}
## 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>]
```
## DESCRIPTION
{{ Fill in the Description }}
## EXAMPLES
### Example 1
```powershell
```PowerShell
PS C:\> {{ Add example code here }}
```
@ -39,6 +44,7 @@ PS C:\> {{ Add example code here }}
## PARAMETERS
### -AccessInheritanceEnabled
{{ Fill AccessInheritanceEnabled Description }}
```yaml
@ -54,6 +60,7 @@ Accept wildcard characters: False
```
### -AuditInheritanceEnabled
{{ Fill AuditInheritanceEnabled Description }}
```yaml
@ -69,6 +76,7 @@ Accept wildcard characters: False
```
### -PassThru
{{ Fill PassThru Description }}
```yaml
@ -84,6 +92,7 @@ Accept wildcard characters: False
```
### -Path
{{ Fill Path Description }}
```yaml
@ -99,6 +108,7 @@ Accept wildcard characters: False
```
### -SecurityDescriptor
{{ Fill SecurityDescriptor Description }}
```yaml
@ -114,6 +124,7 @@ 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
@ -127,6 +138,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
## OUTPUTS
### System.Object
## NOTES
## RELATED LINKS

16
Docs/Cmdlets/Set-NTFSOwner.md

@ -8,28 +8,33 @@ schema: 2.0.0
# Set-NTFSOwner
## SYNOPSIS
{{ Fill in the Synopsis }}
## SYNTAX
### Path (Default)
```
```PowerShell
Set-NTFSOwner [[-Path] <String[]>] [-Account] <IdentityReference2> [-PassThru] [<CommonParameters>]
```
### SecurityDescriptor
```
```PowerShell
Set-NTFSOwner [-SecurityDescriptor] <FileSystemSecurity2[]> [-Account] <IdentityReference2> [-PassThru]
[<CommonParameters>]
```
## DESCRIPTION
{{ Fill in the Description }}
## EXAMPLES
### Example 1
```powershell
```PowerShell
PS C:\> {{ Add example code here }}
```
@ -38,6 +43,7 @@ PS C:\> {{ Add example code here }}
## PARAMETERS
### -Account
{{ Fill Account Description }}
```yaml
@ -53,6 +59,7 @@ Accept wildcard characters: False
```
### -PassThru
{{ Fill PassThru Description }}
```yaml
@ -68,6 +75,7 @@ Accept wildcard characters: False
```
### -Path
{{ Fill Path Description }}
```yaml
@ -83,6 +91,7 @@ Accept wildcard characters: False
```
### -SecurityDescriptor
{{ Fill SecurityDescriptor Description }}
```yaml
@ -98,6 +107,7 @@ 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

10
Docs/Cmdlets/Set-NTFSSecurityDescriptor.md

@ -8,21 +8,24 @@ schema: 2.0.0
# Set-NTFSSecurityDescriptor
## SYNOPSIS
{{ Fill in the Synopsis }}
## SYNTAX
```
```PowerShell
Set-NTFSSecurityDescriptor [-SecurityDescriptor] <FileSystemSecurity2[]> [-PassThru] [<CommonParameters>]
```
## DESCRIPTION
{{ Fill in the Description }}
## EXAMPLES
### Example 1
```powershell
```PowerShell
PS C:\> {{ Add example code here }}
```
@ -31,6 +34,7 @@ PS C:\> {{ Add example code here }}
## PARAMETERS
### -PassThru
{{ Fill PassThru Description }}
```yaml
@ -46,6 +50,7 @@ Accept wildcard characters: False
```
### -SecurityDescriptor
{{ Fill SecurityDescriptor Description }}
```yaml
@ -61,6 +66,7 @@ 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

10
Docs/Cmdlets/Test-Path2.md

@ -8,21 +8,24 @@ schema: 2.0.0
# Test-Path2
## SYNOPSIS
{{ Fill in the Synopsis }}
## SYNTAX
```
```PowerShell
Test-Path2 [-Path] <String[]> [-PathType <TestPathType>] [<CommonParameters>]
```
## DESCRIPTION
{{ Fill in the Description }}
## EXAMPLES
### Example 1
```powershell
```PowerShell
PS C:\> {{ Add example code here }}
```
@ -31,6 +34,7 @@ PS C:\> {{ Add example code here }}
## PARAMETERS
### -Path
{{ Fill Path Description }}
```yaml
@ -46,6 +50,7 @@ Accept wildcard characters: False
```
### -PathType
{{ Fill PathType Description }}
```yaml
@ -62,6 +67,7 @@ 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
Docs/Contributing.md

@ -7,4 +7,4 @@ The following topics explain how to contribute to the NTFSAccess documentation.
1. [Get started](./Contributing/01-Getting-Started.md)
2. [Writing PowerShell documentation](./Contributing/02-Writing.md)
This contributor guide is a modified version of the one found on the [Powershell Docs](https://github.com/PowerShell/PowerShell-Docs) GitHub page.
This contributor guide is a modified version of the one found on the [Powershell Docs](https://github.com/PowerShell/PowerShell-Docs) GitHub page.

Loading…
Cancel
Save