mirror of https://github.com/raandree/NTFSSecurity
36 changed files with 4274 additions and 0 deletions
@ -0,0 +1,223 @@ |
|||||
|
--- |
||||
|
external help file: NTFSSecurity.dll-Help.xml |
||||
|
Module Name: ntfssecurity |
||||
|
online version: |
||||
|
schema: 2.0.0 |
||||
|
--- |
||||
|
|
||||
|
# Add-NTFSAccess |
||||
|
|
||||
|
## SYNOPSIS |
||||
|
{{ Fill in the Synopsis }} |
||||
|
|
||||
|
## SYNTAX |
||||
|
|
||||
|
### PathComplex (Default) |
||||
|
``` |
||||
|
Add-NTFSAccess [-Path] <String[]> [-Account] <IdentityReference2[]> [-AccessRights] <FileSystemRights2> |
||||
|
[-AccessType <AccessControlType>] [-InheritanceFlags <InheritanceFlags>] |
||||
|
[-PropagationFlags <PropagationFlags>] [-PassThru] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
### PathSimple |
||||
|
``` |
||||
|
Add-NTFSAccess [-Path] <String[]> [-Account] <IdentityReference2[]> [-AccessRights] <FileSystemRights2> |
||||
|
[-AccessType <AccessControlType>] [-AppliesTo <ApplyTo>] [-PassThru] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
### SDSimple |
||||
|
``` |
||||
|
Add-NTFSAccess [-SecurityDescriptor] <FileSystemSecurity2[]> [-Account] <IdentityReference2[]> |
||||
|
[-AccessRights] <FileSystemRights2> [-AccessType <AccessControlType>] [-AppliesTo <ApplyTo>] [-PassThru] |
||||
|
[<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
### SDComplex |
||||
|
``` |
||||
|
Add-NTFSAccess [-SecurityDescriptor] <FileSystemSecurity2[]> [-Account] <IdentityReference2[]> |
||||
|
[-AccessRights] <FileSystemRights2> [-AccessType <AccessControlType>] [-InheritanceFlags <InheritanceFlags>] |
||||
|
[-PropagationFlags <PropagationFlags>] [-PassThru] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
## DESCRIPTION |
||||
|
{{ Fill in the Description }} |
||||
|
|
||||
|
## EXAMPLES |
||||
|
|
||||
|
### Example 1 |
||||
|
```powershell |
||||
|
PS C:\> {{ Add example code here }} |
||||
|
``` |
||||
|
|
||||
|
{{ Add example description here }} |
||||
|
|
||||
|
## PARAMETERS |
||||
|
|
||||
|
### -AccessRights |
||||
|
{{ Fill AccessRights Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: FileSystemRights2 |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: FileSystemRights |
||||
|
Accepted values: None, ReadData, ListDirectory, WriteData, CreateFiles, AppendData, CreateDirectories, ReadExtendedAttributes, WriteExtendedAttributes, ExecuteFile, Traverse, DeleteSubdirectoriesAndFiles, ReadAttributes, WriteAttributes, Write, Delete, ReadPermissions, Read, ReadAndExecute, Modify, ChangePermissions, TakeOwnership, Synchronize, FullControl, GenericAll, GenericExecute, GenericWrite, GenericRead |
||||
|
|
||||
|
Required: True |
||||
|
Position: 3 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -AccessType |
||||
|
{{ Fill AccessType Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: AccessControlType |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: AccessControlType |
||||
|
Accepted values: Allow, Deny |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -Account |
||||
|
{{ Fill Account Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: IdentityReference2[] |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: IdentityReference, ID |
||||
|
|
||||
|
Required: True |
||||
|
Position: 2 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -AppliesTo |
||||
|
{{ Fill AppliesTo Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: ApplyTo |
||||
|
Parameter Sets: PathSimple, SDSimple |
||||
|
Aliases: |
||||
|
Accepted values: ThisFolderOnly, ThisFolderSubfoldersAndFiles, ThisFolderAndSubfolders, ThisFolderAndFiles, SubfoldersAndFilesOnly, SubfoldersOnly, FilesOnly, ThisFolderSubfoldersAndFilesOneLevel, ThisFolderAndSubfoldersOneLevel, ThisFolderAndFilesOneLevel, SubfoldersAndFilesOnlyOneLevel, SubfoldersOnlyOneLevel, FilesOnlyOneLevel |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -InheritanceFlags |
||||
|
{{ Fill InheritanceFlags Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: InheritanceFlags |
||||
|
Parameter Sets: PathComplex, SDComplex |
||||
|
Aliases: |
||||
|
Accepted values: None, ContainerInherit, ObjectInherit |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -PassThru |
||||
|
{{ Fill PassThru Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -Path |
||||
|
{{ Fill Path Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: String[] |
||||
|
Parameter Sets: PathComplex, PathSimple |
||||
|
Aliases: FullName |
||||
|
|
||||
|
Required: True |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -PropagationFlags |
||||
|
{{ Fill PropagationFlags Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: PropagationFlags |
||||
|
Parameter Sets: PathComplex, SDComplex |
||||
|
Aliases: |
||||
|
Accepted values: None, NoPropagateInherit, InheritOnly |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -SecurityDescriptor |
||||
|
{{ Fill SecurityDescriptor Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: FileSystemSecurity2[] |
||||
|
Parameter Sets: SDSimple, SDComplex |
||||
|
Aliases: |
||||
|
|
||||
|
Required: True |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
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 |
||||
|
|
||||
|
### System.String[] |
||||
|
|
||||
|
### Security2.FileSystemSecurity2[] |
||||
|
|
||||
|
### Security2.IdentityReference2[] |
||||
|
|
||||
|
### Security2.FileSystemRights2 |
||||
|
|
||||
|
### System.Security.AccessControl.AccessControlType |
||||
|
|
||||
|
### System.Security.AccessControl.InheritanceFlags |
||||
|
|
||||
|
### System.Security.AccessControl.PropagationFlags |
||||
|
|
||||
|
### Security2.ApplyTo |
||||
|
|
||||
|
## OUTPUTS |
||||
|
|
||||
|
### Security2.FileSystemAccessRule2 |
||||
|
|
||||
|
## NOTES |
||||
|
|
||||
|
## RELATED LINKS |
||||
@ -0,0 +1,223 @@ |
|||||
|
--- |
||||
|
external help file: NTFSSecurity.dll-Help.xml |
||||
|
Module Name: ntfssecurity |
||||
|
online version: |
||||
|
schema: 2.0.0 |
||||
|
--- |
||||
|
|
||||
|
# Add-NTFSAudit |
||||
|
|
||||
|
## SYNOPSIS |
||||
|
{{ Fill in the Synopsis }} |
||||
|
|
||||
|
## SYNTAX |
||||
|
|
||||
|
### PathComplex (Default) |
||||
|
``` |
||||
|
Add-NTFSAudit [-Path] <String[]> [-Account] <IdentityReference2[]> [-AccessRights] <FileSystemRights2> |
||||
|
[-AuditFlags <AuditFlags>] [-InheritanceFlags <InheritanceFlags>] [-PropagationFlags <PropagationFlags>] |
||||
|
[-PassThru] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
### PathSimple |
||||
|
``` |
||||
|
Add-NTFSAudit [-Path] <String[]> [-Account] <IdentityReference2[]> [-AccessRights] <FileSystemRights2> |
||||
|
[-AuditFlags <AuditFlags>] [-AppliesTo <ApplyTo>] [-PassThru] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
### SDSimple |
||||
|
``` |
||||
|
Add-NTFSAudit [-SecurityDescriptor] <FileSystemSecurity2[]> [-Account] <IdentityReference2[]> |
||||
|
[-AccessRights] <FileSystemRights2> [-AuditFlags <AuditFlags>] [-AppliesTo <ApplyTo>] [-PassThru] |
||||
|
[<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
### SDComplex |
||||
|
``` |
||||
|
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 |
||||
|
PS C:\> {{ Add example code here }} |
||||
|
``` |
||||
|
|
||||
|
{{ Add example description here }} |
||||
|
|
||||
|
## PARAMETERS |
||||
|
|
||||
|
### -AccessRights |
||||
|
{{ Fill AccessRights Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: FileSystemRights2 |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: FileSystemRights |
||||
|
Accepted values: None, ReadData, ListDirectory, WriteData, CreateFiles, AppendData, CreateDirectories, ReadExtendedAttributes, WriteExtendedAttributes, ExecuteFile, Traverse, DeleteSubdirectoriesAndFiles, ReadAttributes, WriteAttributes, Write, Delete, ReadPermissions, Read, ReadAndExecute, Modify, ChangePermissions, TakeOwnership, Synchronize, FullControl, GenericAll, GenericExecute, GenericWrite, GenericRead |
||||
|
|
||||
|
Required: True |
||||
|
Position: 2 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -Account |
||||
|
{{ Fill Account Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: IdentityReference2[] |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: IdentityReference, ID |
||||
|
|
||||
|
Required: True |
||||
|
Position: 2 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -AppliesTo |
||||
|
{{ Fill AppliesTo Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: ApplyTo |
||||
|
Parameter Sets: PathSimple, SDSimple |
||||
|
Aliases: |
||||
|
Accepted values: ThisFolderOnly, ThisFolderSubfoldersAndFiles, ThisFolderAndSubfolders, ThisFolderAndFiles, SubfoldersAndFilesOnly, SubfoldersOnly, FilesOnly, ThisFolderSubfoldersAndFilesOneLevel, ThisFolderAndSubfoldersOneLevel, ThisFolderAndFilesOneLevel, SubfoldersAndFilesOnlyOneLevel, SubfoldersOnlyOneLevel, FilesOnlyOneLevel |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -AuditFlags |
||||
|
{{ Fill AuditFlags Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: AuditFlags |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
Accepted values: None, Success, Failure |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -InheritanceFlags |
||||
|
{{ Fill InheritanceFlags Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: InheritanceFlags |
||||
|
Parameter Sets: PathComplex, SDComplex |
||||
|
Aliases: |
||||
|
Accepted values: None, ContainerInherit, ObjectInherit |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -PassThru |
||||
|
{{ Fill PassThru Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -Path |
||||
|
{{ Fill Path Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: String[] |
||||
|
Parameter Sets: PathComplex, PathSimple |
||||
|
Aliases: FullName |
||||
|
|
||||
|
Required: True |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -PropagationFlags |
||||
|
{{ Fill PropagationFlags Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: PropagationFlags |
||||
|
Parameter Sets: PathComplex, SDComplex |
||||
|
Aliases: |
||||
|
Accepted values: None, NoPropagateInherit, InheritOnly |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -SecurityDescriptor |
||||
|
{{ Fill SecurityDescriptor Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: FileSystemSecurity2[] |
||||
|
Parameter Sets: SDSimple, SDComplex |
||||
|
Aliases: |
||||
|
|
||||
|
Required: True |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
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 |
||||
|
|
||||
|
### System.String[] |
||||
|
|
||||
|
### Security2.FileSystemSecurity2[] |
||||
|
|
||||
|
### Security2.IdentityReference2[] |
||||
|
|
||||
|
### Security2.FileSystemRights2 |
||||
|
|
||||
|
### System.Security.AccessControl.AuditFlags |
||||
|
|
||||
|
### System.Security.AccessControl.InheritanceFlags |
||||
|
|
||||
|
### System.Security.AccessControl.PropagationFlags |
||||
|
|
||||
|
### Security2.ApplyTo |
||||
|
|
||||
|
## OUTPUTS |
||||
|
|
||||
|
### Security2.FileSystemAccessRule2 |
||||
|
|
||||
|
## NOTES |
||||
|
|
||||
|
## RELATED LINKS |
||||
@ -0,0 +1,98 @@ |
|||||
|
--- |
||||
|
external help file: NTFSSecurity.dll-Help.xml |
||||
|
Module Name: ntfssecurity |
||||
|
online version: |
||||
|
schema: 2.0.0 |
||||
|
--- |
||||
|
|
||||
|
# Clear-NTFSAccess |
||||
|
|
||||
|
## SYNOPSIS |
||||
|
{{ Fill in the Synopsis }} |
||||
|
|
||||
|
## SYNTAX |
||||
|
|
||||
|
### Path (Default) |
||||
|
``` |
||||
|
Clear-NTFSAccess [-Path] <String[]> [-DisableInheritance] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
### SD |
||||
|
``` |
||||
|
Clear-NTFSAccess [-SecurityDescriptor] <FileSystemSecurity2[]> [-DisableInheritance] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
## DESCRIPTION |
||||
|
{{ Fill in the Description }} |
||||
|
|
||||
|
## EXAMPLES |
||||
|
|
||||
|
### Example 1 |
||||
|
```powershell |
||||
|
PS C:\> {{ Add example code here }} |
||||
|
``` |
||||
|
|
||||
|
{{ Add example description here }} |
||||
|
|
||||
|
## PARAMETERS |
||||
|
|
||||
|
### -DisableInheritance |
||||
|
{{ Fill DisableInheritance Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -Path |
||||
|
{{ Fill Path Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: String[] |
||||
|
Parameter Sets: Path |
||||
|
Aliases: FullName |
||||
|
|
||||
|
Required: True |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -SecurityDescriptor |
||||
|
{{ Fill SecurityDescriptor Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: FileSystemSecurity2[] |
||||
|
Parameter Sets: SD |
||||
|
Aliases: |
||||
|
|
||||
|
Required: True |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
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 |
||||
|
|
||||
|
### System.String[] |
||||
|
|
||||
|
### Security2.FileSystemSecurity2[] |
||||
|
|
||||
|
## OUTPUTS |
||||
|
|
||||
|
### System.Object |
||||
|
## NOTES |
||||
|
|
||||
|
## RELATED LINKS |
||||
@ -0,0 +1,98 @@ |
|||||
|
--- |
||||
|
external help file: NTFSSecurity.dll-Help.xml |
||||
|
Module Name: ntfssecurity |
||||
|
online version: |
||||
|
schema: 2.0.0 |
||||
|
--- |
||||
|
|
||||
|
# Clear-NTFSAudit |
||||
|
|
||||
|
## SYNOPSIS |
||||
|
{{ Fill in the Synopsis }} |
||||
|
|
||||
|
## SYNTAX |
||||
|
|
||||
|
### Path (Default) |
||||
|
``` |
||||
|
Clear-NTFSAudit [-Path] <String[]> [-DisableInheritance] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
### SD |
||||
|
``` |
||||
|
Clear-NTFSAudit [-SecurityDescriptor] <FileSystemSecurity2[]> [-DisableInheritance] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
## DESCRIPTION |
||||
|
{{ Fill in the Description }} |
||||
|
|
||||
|
## EXAMPLES |
||||
|
|
||||
|
### Example 1 |
||||
|
```powershell |
||||
|
PS C:\> {{ Add example code here }} |
||||
|
``` |
||||
|
|
||||
|
{{ Add example description here }} |
||||
|
|
||||
|
## PARAMETERS |
||||
|
|
||||
|
### -DisableInheritance |
||||
|
{{ Fill DisableInheritance Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -Path |
||||
|
{{ Fill Path Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: String[] |
||||
|
Parameter Sets: Path |
||||
|
Aliases: FullName |
||||
|
|
||||
|
Required: True |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -SecurityDescriptor |
||||
|
{{ Fill SecurityDescriptor Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: FileSystemSecurity2[] |
||||
|
Parameter Sets: SD |
||||
|
Aliases: |
||||
|
|
||||
|
Required: True |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
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 |
||||
|
|
||||
|
### System.String[] |
||||
|
|
||||
|
### Security2.FileSystemSecurity2[] |
||||
|
|
||||
|
## OUTPUTS |
||||
|
|
||||
|
### System.Object |
||||
|
## NOTES |
||||
|
|
||||
|
## RELATED LINKS |
||||
@ -0,0 +1,139 @@ |
|||||
|
--- |
||||
|
external help file: NTFSSecurity.dll-Help.xml |
||||
|
Module Name: ntfssecurity |
||||
|
online version: |
||||
|
schema: 2.0.0 |
||||
|
--- |
||||
|
|
||||
|
# Copy-Item2 |
||||
|
|
||||
|
## SYNOPSIS |
||||
|
{{ Fill in the Synopsis }} |
||||
|
|
||||
|
## SYNTAX |
||||
|
|
||||
|
``` |
||||
|
Copy-Item2 [-Path] <String[]> [-Destination] <String> [-Force] [-PassThru <Boolean>] [-WhatIf] [-Confirm] |
||||
|
[<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
## DESCRIPTION |
||||
|
{{ Fill in the Description }} |
||||
|
|
||||
|
## EXAMPLES |
||||
|
|
||||
|
### Example 1 |
||||
|
```powershell |
||||
|
PS C:\> {{ Add example code here }} |
||||
|
``` |
||||
|
|
||||
|
{{ Add example description here }} |
||||
|
|
||||
|
## PARAMETERS |
||||
|
|
||||
|
### -Confirm |
||||
|
Prompts you for confirmation before running the cmdlet. |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: cf |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -Destination |
||||
|
{{ Fill Destination Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: String |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: True |
||||
|
Position: 2 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -Force |
||||
|
{{ Fill Force Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -PassThru |
||||
|
{{ Fill PassThru Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: Boolean |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -Path |
||||
|
{{ Fill Path Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: String[] |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: FullName |
||||
|
|
||||
|
Required: True |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -WhatIf |
||||
|
Shows what would happen if the cmdlet runs. |
||||
|
The cmdlet is not run. |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: wi |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
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 |
||||
|
|
||||
|
### System.String[] |
||||
|
|
||||
|
### System.String |
||||
|
|
||||
|
## OUTPUTS |
||||
|
|
||||
|
### System.Object |
||||
|
## NOTES |
||||
|
|
||||
|
## RELATED LINKS |
||||
@ -0,0 +1,115 @@ |
|||||
|
--- |
||||
|
external help file: NTFSSecurity.dll-Help.xml |
||||
|
Module Name: ntfssecurity |
||||
|
online version: |
||||
|
schema: 2.0.0 |
||||
|
--- |
||||
|
|
||||
|
# Disable-NTFSAccessInheritance |
||||
|
|
||||
|
## SYNOPSIS |
||||
|
{{ Fill in the Synopsis }} |
||||
|
|
||||
|
## SYNTAX |
||||
|
|
||||
|
### Path (Default) |
||||
|
``` |
||||
|
Disable-NTFSAccessInheritance [[-Path] <String[]>] [-RemoveInheritedAccessRules] [-PassThru] |
||||
|
[<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
### SecurityDescriptor |
||||
|
``` |
||||
|
Disable-NTFSAccessInheritance [-SecurityDescriptor] <FileSystemSecurity2[]> [-RemoveInheritedAccessRules] |
||||
|
[-PassThru] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
## DESCRIPTION |
||||
|
{{ Fill in the Description }} |
||||
|
|
||||
|
## EXAMPLES |
||||
|
|
||||
|
### Example 1 |
||||
|
```powershell |
||||
|
PS C:\> {{ Add example code here }} |
||||
|
``` |
||||
|
|
||||
|
{{ Add example description here }} |
||||
|
|
||||
|
## PARAMETERS |
||||
|
|
||||
|
### -PassThru |
||||
|
{{ Fill PassThru Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -Path |
||||
|
{{ Fill Path Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: String[] |
||||
|
Parameter Sets: Path |
||||
|
Aliases: FullName |
||||
|
|
||||
|
Required: False |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -RemoveInheritedAccessRules |
||||
|
{{ Fill RemoveInheritedAccessRules Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -SecurityDescriptor |
||||
|
{{ Fill SecurityDescriptor Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: FileSystemSecurity2[] |
||||
|
Parameter Sets: SecurityDescriptor |
||||
|
Aliases: |
||||
|
|
||||
|
Required: True |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
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 |
||||
|
|
||||
|
### System.String[] |
||||
|
|
||||
|
### Security2.FileSystemSecurity2[] |
||||
|
|
||||
|
## OUTPUTS |
||||
|
|
||||
|
### System.Object |
||||
|
## NOTES |
||||
|
|
||||
|
## RELATED LINKS |
||||
@ -0,0 +1,115 @@ |
|||||
|
--- |
||||
|
external help file: NTFSSecurity.dll-Help.xml |
||||
|
Module Name: ntfssecurity |
||||
|
online version: |
||||
|
schema: 2.0.0 |
||||
|
--- |
||||
|
|
||||
|
# Disable-NTFSAuditInheritance |
||||
|
|
||||
|
## SYNOPSIS |
||||
|
{{ Fill in the Synopsis }} |
||||
|
|
||||
|
## SYNTAX |
||||
|
|
||||
|
### Path (Default) |
||||
|
``` |
||||
|
Disable-NTFSAuditInheritance [[-Path] <String[]>] [-RemoveInheritedAccessRules] [-PassThru] |
||||
|
[<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
### SecurityDescriptor |
||||
|
``` |
||||
|
Disable-NTFSAuditInheritance [-SecurityDescriptor] <FileSystemSecurity2[]> [-RemoveInheritedAccessRules] |
||||
|
[-PassThru] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
## DESCRIPTION |
||||
|
{{ Fill in the Description }} |
||||
|
|
||||
|
## EXAMPLES |
||||
|
|
||||
|
### Example 1 |
||||
|
```powershell |
||||
|
PS C:\> {{ Add example code here }} |
||||
|
``` |
||||
|
|
||||
|
{{ Add example description here }} |
||||
|
|
||||
|
## PARAMETERS |
||||
|
|
||||
|
### -PassThru |
||||
|
{{ Fill PassThru Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -Path |
||||
|
{{ Fill Path Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: String[] |
||||
|
Parameter Sets: Path |
||||
|
Aliases: FullName |
||||
|
|
||||
|
Required: False |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -RemoveInheritedAccessRules |
||||
|
{{ Fill RemoveInheritedAccessRules Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -SecurityDescriptor |
||||
|
{{ Fill SecurityDescriptor Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: FileSystemSecurity2[] |
||||
|
Parameter Sets: SecurityDescriptor |
||||
|
Aliases: |
||||
|
|
||||
|
Required: True |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
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 |
||||
|
|
||||
|
### System.String[] |
||||
|
|
||||
|
### Security2.FileSystemSecurity2[] |
||||
|
|
||||
|
## OUTPUTS |
||||
|
|
||||
|
### System.Object |
||||
|
## NOTES |
||||
|
|
||||
|
## RELATED LINKS |
||||
@ -0,0 +1,61 @@ |
|||||
|
--- |
||||
|
external help file: NTFSSecurity.dll-Help.xml |
||||
|
Module Name: ntfssecurity |
||||
|
online version: |
||||
|
schema: 2.0.0 |
||||
|
--- |
||||
|
|
||||
|
# Disable-Privileges |
||||
|
|
||||
|
## SYNOPSIS |
||||
|
{{ Fill in the Synopsis }} |
||||
|
|
||||
|
## SYNTAX |
||||
|
|
||||
|
``` |
||||
|
Disable-Privileges [-PassThru] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
## DESCRIPTION |
||||
|
{{ Fill in the Description }} |
||||
|
|
||||
|
## EXAMPLES |
||||
|
|
||||
|
### Example 1 |
||||
|
```powershell |
||||
|
PS C:\> {{ Add example code here }} |
||||
|
``` |
||||
|
|
||||
|
{{ Add example description here }} |
||||
|
|
||||
|
## PARAMETERS |
||||
|
|
||||
|
### -PassThru |
||||
|
{{ Fill PassThru Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
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 |
||||
|
|
||||
|
### None |
||||
|
|
||||
|
## OUTPUTS |
||||
|
|
||||
|
### ProcessPrivileges.PrivilegeAndAttributes |
||||
|
|
||||
|
## NOTES |
||||
|
|
||||
|
## RELATED LINKS |
||||
@ -0,0 +1,114 @@ |
|||||
|
--- |
||||
|
external help file: NTFSSecurity.dll-Help.xml |
||||
|
Module Name: ntfssecurity |
||||
|
online version: |
||||
|
schema: 2.0.0 |
||||
|
--- |
||||
|
|
||||
|
# Enable-NTFSAccessInheritance |
||||
|
|
||||
|
## SYNOPSIS |
||||
|
{{ Fill in the Synopsis }} |
||||
|
|
||||
|
## SYNTAX |
||||
|
|
||||
|
### Path (Default) |
||||
|
``` |
||||
|
Enable-NTFSAccessInheritance [[-Path] <String[]>] [-PassThru] [-RemoveExplicitAccessRules] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
### SecurityDescriptor |
||||
|
``` |
||||
|
Enable-NTFSAccessInheritance [-SecurityDescriptor] <FileSystemSecurity2[]> [-PassThru] |
||||
|
[-RemoveExplicitAccessRules] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
## DESCRIPTION |
||||
|
{{ Fill in the Description }} |
||||
|
|
||||
|
## EXAMPLES |
||||
|
|
||||
|
### Example 1 |
||||
|
```powershell |
||||
|
PS C:\> {{ Add example code here }} |
||||
|
``` |
||||
|
|
||||
|
{{ Add example description here }} |
||||
|
|
||||
|
## PARAMETERS |
||||
|
|
||||
|
### -PassThru |
||||
|
{{ Fill PassThru Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -Path |
||||
|
{{ Fill Path Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: String[] |
||||
|
Parameter Sets: Path |
||||
|
Aliases: FullName |
||||
|
|
||||
|
Required: False |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -RemoveExplicitAccessRules |
||||
|
{{ Fill RemoveExplicitAccessRules Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -SecurityDescriptor |
||||
|
{{ Fill SecurityDescriptor Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: FileSystemSecurity2[] |
||||
|
Parameter Sets: SecurityDescriptor |
||||
|
Aliases: |
||||
|
|
||||
|
Required: True |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
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 |
||||
|
|
||||
|
### System.String[] |
||||
|
|
||||
|
### Security2.FileSystemSecurity2[] |
||||
|
|
||||
|
## OUTPUTS |
||||
|
|
||||
|
### System.Object |
||||
|
## NOTES |
||||
|
|
||||
|
## RELATED LINKS |
||||
@ -0,0 +1,114 @@ |
|||||
|
--- |
||||
|
external help file: NTFSSecurity.dll-Help.xml |
||||
|
Module Name: ntfssecurity |
||||
|
online version: |
||||
|
schema: 2.0.0 |
||||
|
--- |
||||
|
|
||||
|
# Enable-NTFSAuditInheritance |
||||
|
|
||||
|
## SYNOPSIS |
||||
|
{{ Fill in the Synopsis }} |
||||
|
|
||||
|
## SYNTAX |
||||
|
|
||||
|
### Path (Default) |
||||
|
``` |
||||
|
Enable-NTFSAuditInheritance [[-Path] <String[]>] [-PassThru] [-RemoveExplicitAccessRules] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
### SecurityDescriptor |
||||
|
``` |
||||
|
Enable-NTFSAuditInheritance [-SecurityDescriptor] <FileSystemSecurity2[]> [-PassThru] |
||||
|
[-RemoveExplicitAccessRules] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
## DESCRIPTION |
||||
|
{{ Fill in the Description }} |
||||
|
|
||||
|
## EXAMPLES |
||||
|
|
||||
|
### Example 1 |
||||
|
```powershell |
||||
|
PS C:\> {{ Add example code here }} |
||||
|
``` |
||||
|
|
||||
|
{{ Add example description here }} |
||||
|
|
||||
|
## PARAMETERS |
||||
|
|
||||
|
### -PassThru |
||||
|
{{ Fill PassThru Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -Path |
||||
|
{{ Fill Path Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: String[] |
||||
|
Parameter Sets: Path |
||||
|
Aliases: FullName |
||||
|
|
||||
|
Required: False |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -RemoveExplicitAccessRules |
||||
|
{{ Fill RemoveExplicitAccessRules Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -SecurityDescriptor |
||||
|
{{ Fill SecurityDescriptor Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: FileSystemSecurity2[] |
||||
|
Parameter Sets: SecurityDescriptor |
||||
|
Aliases: |
||||
|
|
||||
|
Required: True |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
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 |
||||
|
|
||||
|
### System.String[] |
||||
|
|
||||
|
### Security2.FileSystemSecurity2[] |
||||
|
|
||||
|
## OUTPUTS |
||||
|
|
||||
|
### System.Object |
||||
|
## NOTES |
||||
|
|
||||
|
## RELATED LINKS |
||||
@ -0,0 +1,61 @@ |
|||||
|
--- |
||||
|
external help file: NTFSSecurity.dll-Help.xml |
||||
|
Module Name: ntfssecurity |
||||
|
online version: |
||||
|
schema: 2.0.0 |
||||
|
--- |
||||
|
|
||||
|
# Enable-Privileges |
||||
|
|
||||
|
## SYNOPSIS |
||||
|
{{ Fill in the Synopsis }} |
||||
|
|
||||
|
## SYNTAX |
||||
|
|
||||
|
``` |
||||
|
Enable-Privileges [-PassThru] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
## DESCRIPTION |
||||
|
{{ Fill in the Description }} |
||||
|
|
||||
|
## EXAMPLES |
||||
|
|
||||
|
### Example 1 |
||||
|
```powershell |
||||
|
PS C:\> {{ Add example code here }} |
||||
|
``` |
||||
|
|
||||
|
{{ Add example description here }} |
||||
|
|
||||
|
## PARAMETERS |
||||
|
|
||||
|
### -PassThru |
||||
|
{{ Fill PassThru Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
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 |
||||
|
|
||||
|
### None |
||||
|
|
||||
|
## OUTPUTS |
||||
|
|
||||
|
### ProcessPrivileges.PrivilegeAndAttributes |
||||
|
|
||||
|
## NOTES |
||||
|
|
||||
|
## RELATED LINKS |
||||
@ -0,0 +1,246 @@ |
|||||
|
--- |
||||
|
external help file: NTFSSecurity.dll-Help.xml |
||||
|
Module Name: ntfssecurity |
||||
|
online version: |
||||
|
schema: 2.0.0 |
||||
|
--- |
||||
|
|
||||
|
# Get-ChildItem2 |
||||
|
|
||||
|
## SYNOPSIS |
||||
|
{{ Fill in the Synopsis }} |
||||
|
|
||||
|
## SYNTAX |
||||
|
|
||||
|
``` |
||||
|
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 |
||||
|
PS C:\> {{ Add example code here }} |
||||
|
``` |
||||
|
|
||||
|
{{ Add example description here }} |
||||
|
|
||||
|
## PARAMETERS |
||||
|
|
||||
|
### -Attributes |
||||
|
{{ Fill Attributes Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: FileAttributes |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
Accepted values: ReadOnly, Hidden, System, Directory, Archive, Device, Normal, Temporary, SparseFile, ReparsePoint, Compressed, Offline, NotContentIndexed, Encrypted, IntegrityStream, NoScrubData |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -Depth |
||||
|
{{ Fill Depth Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: Int32 |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -Directory |
||||
|
{{ Fill Directory Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -File |
||||
|
{{ Fill File Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -Filter |
||||
|
{{ Fill Filter Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: String |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: 2 |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -Force |
||||
|
{{ Fill Force Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -Hidden |
||||
|
{{ Fill Hidden Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -Path |
||||
|
{{ Fill Path Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: String[] |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: FullName |
||||
|
|
||||
|
Required: False |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -ReadOnly |
||||
|
{{ Fill ReadOnly Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -Recurse |
||||
|
{{ Fill Recurse Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -SkipMountPoints |
||||
|
{{ Fill SkipMountPoints Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -SkipSymbolicLinks |
||||
|
{{ Fill SkipSymbolicLinks Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -System |
||||
|
{{ Fill System Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
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 |
||||
|
|
||||
|
### System.String[] |
||||
|
|
||||
|
## OUTPUTS |
||||
|
|
||||
|
### Alphaleonis.Win32.Filesystem.FileInfo |
||||
|
|
||||
|
### Alphaleonis.Win32.Filesystem.DirectoryInfo |
||||
|
|
||||
|
## NOTES |
||||
|
|
||||
|
## RELATED LINKS |
||||
@ -0,0 +1,61 @@ |
|||||
|
--- |
||||
|
external help file: NTFSSecurity.dll-Help.xml |
||||
|
Module Name: ntfssecurity |
||||
|
online version: |
||||
|
schema: 2.0.0 |
||||
|
--- |
||||
|
|
||||
|
# Get-DiskSpace |
||||
|
|
||||
|
## SYNOPSIS |
||||
|
{{ Fill in the Synopsis }} |
||||
|
|
||||
|
## SYNTAX |
||||
|
|
||||
|
``` |
||||
|
Get-DiskSpace [[-DriveLetter] <String[]>] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
## DESCRIPTION |
||||
|
{{ Fill in the Description }} |
||||
|
|
||||
|
## EXAMPLES |
||||
|
|
||||
|
### Example 1 |
||||
|
```powershell |
||||
|
PS C:\> {{ Add example code here }} |
||||
|
``` |
||||
|
|
||||
|
{{ Add example description here }} |
||||
|
|
||||
|
## PARAMETERS |
||||
|
|
||||
|
### -DriveLetter |
||||
|
{{ Fill DriveLetter Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: String[] |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
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 |
||||
|
|
||||
|
### None |
||||
|
|
||||
|
## OUTPUTS |
||||
|
|
||||
|
### Alphaleonis.Win32.Filesystem.DiskSpaceInfo |
||||
|
|
||||
|
## NOTES |
||||
|
|
||||
|
## RELATED LINKS |
||||
@ -0,0 +1,79 @@ |
|||||
|
--- |
||||
|
external help file: NTFSSecurity.dll-Help.xml |
||||
|
Module Name: ntfssecurity |
||||
|
online version: |
||||
|
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 |
||||
|
PS C:\> {{ Add example code here }} |
||||
|
``` |
||||
|
|
||||
|
{{ Add example description here }} |
||||
|
|
||||
|
## PARAMETERS |
||||
|
|
||||
|
### -Algorithm |
||||
|
{{ Fill Algorithm Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: HashAlgorithms |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
Accepted values: SHA1, SHA256, SHA384, SHA512, MACTripleDES, MD5, RIPEMD160 |
||||
|
|
||||
|
Required: False |
||||
|
Position: 2 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -Path |
||||
|
{{ Fill Path Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: String[] |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: FullName |
||||
|
|
||||
|
Required: True |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
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 |
||||
|
|
||||
|
### System.String[] |
||||
|
|
||||
|
### Security2.FileSystem.FileInfo.HashAlgorithms |
||||
|
|
||||
|
## OUTPUTS |
||||
|
|
||||
|
### Security2.FileSystemAccessRule2 |
||||
|
|
||||
|
## NOTES |
||||
|
|
||||
|
## RELATED LINKS |
||||
@ -0,0 +1,63 @@ |
|||||
|
--- |
||||
|
external help file: NTFSSecurity.dll-Help.xml |
||||
|
Module Name: ntfssecurity |
||||
|
online version: |
||||
|
schema: 2.0.0 |
||||
|
--- |
||||
|
|
||||
|
# Get-Item2 |
||||
|
|
||||
|
## SYNOPSIS |
||||
|
{{ Fill in the Synopsis }} |
||||
|
|
||||
|
## SYNTAX |
||||
|
|
||||
|
``` |
||||
|
Get-Item2 [[-Path] <String[]>] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
## DESCRIPTION |
||||
|
{{ Fill in the Description }} |
||||
|
|
||||
|
## EXAMPLES |
||||
|
|
||||
|
### Example 1 |
||||
|
```powershell |
||||
|
PS C:\> {{ Add example code here }} |
||||
|
``` |
||||
|
|
||||
|
{{ Add example description here }} |
||||
|
|
||||
|
## PARAMETERS |
||||
|
|
||||
|
### -Path |
||||
|
{{ Fill Path Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: String[] |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: FullName |
||||
|
|
||||
|
Required: False |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
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 |
||||
|
|
||||
|
### System.String[] |
||||
|
|
||||
|
## OUTPUTS |
||||
|
|
||||
|
### Alphaleonis.Win32.Filesystem.FileInfo |
||||
|
|
||||
|
### Alphaleonis.Win32.Filesystem.DirectoryInfo |
||||
|
|
||||
|
## NOTES |
||||
|
|
||||
|
## RELATED LINKS |
||||
@ -0,0 +1,133 @@ |
|||||
|
--- |
||||
|
external help file: NTFSSecurity.dll-Help.xml |
||||
|
Module Name: ntfssecurity |
||||
|
online version: |
||||
|
schema: 2.0.0 |
||||
|
--- |
||||
|
|
||||
|
# Get-NTFSAccess |
||||
|
|
||||
|
## SYNOPSIS |
||||
|
{{ Fill in the Synopsis }} |
||||
|
|
||||
|
## SYNTAX |
||||
|
|
||||
|
### Path (Default) |
||||
|
``` |
||||
|
Get-NTFSAccess [[-Path] <String[]>] [-Account <IdentityReference2>] [-ExcludeExplicit] [-ExcludeInherited] |
||||
|
[<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
### SD |
||||
|
``` |
||||
|
Get-NTFSAccess [-SecurityDescriptor] <FileSystemSecurity2[]> [-Account <IdentityReference2>] [-ExcludeExplicit] |
||||
|
[-ExcludeInherited] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
## DESCRIPTION |
||||
|
{{ Fill in the Description }} |
||||
|
|
||||
|
## EXAMPLES |
||||
|
|
||||
|
### Example 1 |
||||
|
```powershell |
||||
|
PS C:\> {{ Add example code here }} |
||||
|
``` |
||||
|
|
||||
|
{{ Add example description here }} |
||||
|
|
||||
|
## PARAMETERS |
||||
|
|
||||
|
### -Account |
||||
|
{{ Fill Account Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: IdentityReference2 |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: IdentityReference, ID |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -ExcludeExplicit |
||||
|
{{ Fill ExcludeExplicit Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -ExcludeInherited |
||||
|
{{ Fill ExcludeInherited Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -Path |
||||
|
{{ Fill Path Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: String[] |
||||
|
Parameter Sets: Path |
||||
|
Aliases: FullName |
||||
|
|
||||
|
Required: False |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -SecurityDescriptor |
||||
|
{{ Fill SecurityDescriptor Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: FileSystemSecurity2[] |
||||
|
Parameter Sets: SD |
||||
|
Aliases: |
||||
|
|
||||
|
Required: True |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
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 |
||||
|
|
||||
|
### System.String[] |
||||
|
|
||||
|
### Security2.FileSystemSecurity2[] |
||||
|
|
||||
|
### Security2.IdentityReference2 |
||||
|
|
||||
|
## OUTPUTS |
||||
|
|
||||
|
### Security2.FileSystemAccessRule2 |
||||
|
|
||||
|
## NOTES |
||||
|
|
||||
|
## RELATED LINKS |
||||
@ -0,0 +1,133 @@ |
|||||
|
--- |
||||
|
external help file: NTFSSecurity.dll-Help.xml |
||||
|
Module Name: ntfssecurity |
||||
|
online version: |
||||
|
schema: 2.0.0 |
||||
|
--- |
||||
|
|
||||
|
# Get-NTFSAudit |
||||
|
|
||||
|
## SYNOPSIS |
||||
|
{{ Fill in the Synopsis }} |
||||
|
|
||||
|
## SYNTAX |
||||
|
|
||||
|
### Path |
||||
|
``` |
||||
|
Get-NTFSAudit [[-Path] <String[]>] [-Account <IdentityReference2>] [-ExcludeExplicit] [-ExcludeInherited] |
||||
|
[<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
### SD |
||||
|
``` |
||||
|
Get-NTFSAudit [-SecurityDescriptor] <FileSystemSecurity2[]> [-Account <IdentityReference2>] [-ExcludeExplicit] |
||||
|
[-ExcludeInherited] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
## DESCRIPTION |
||||
|
{{ Fill in the Description }} |
||||
|
|
||||
|
## EXAMPLES |
||||
|
|
||||
|
### Example 1 |
||||
|
```powershell |
||||
|
PS C:\> {{ Add example code here }} |
||||
|
``` |
||||
|
|
||||
|
{{ Add example description here }} |
||||
|
|
||||
|
## PARAMETERS |
||||
|
|
||||
|
### -Account |
||||
|
{{ Fill Account Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: IdentityReference2 |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: IdentityReference, ID |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -ExcludeExplicit |
||||
|
{{ Fill ExcludeExplicit Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -ExcludeInherited |
||||
|
{{ Fill ExcludeInherited Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -Path |
||||
|
{{ Fill Path Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: String[] |
||||
|
Parameter Sets: Path |
||||
|
Aliases: FullName |
||||
|
|
||||
|
Required: False |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -SecurityDescriptor |
||||
|
{{ Fill SecurityDescriptor Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: FileSystemSecurity2[] |
||||
|
Parameter Sets: SD |
||||
|
Aliases: |
||||
|
|
||||
|
Required: True |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
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 |
||||
|
|
||||
|
### System.String[] |
||||
|
|
||||
|
### Security2.FileSystemSecurity2[] |
||||
|
|
||||
|
### Security2.IdentityReference2 |
||||
|
|
||||
|
## OUTPUTS |
||||
|
|
||||
|
### Security2.FileSystemAuditRule2 |
||||
|
|
||||
|
## NOTES |
||||
|
|
||||
|
## RELATED LINKS |
||||
@ -0,0 +1,133 @@ |
|||||
|
--- |
||||
|
external help file: NTFSSecurity.dll-Help.xml |
||||
|
Module Name: ntfssecurity |
||||
|
online version: |
||||
|
schema: 2.0.0 |
||||
|
--- |
||||
|
|
||||
|
# Get-NTFSEffectiveAccess |
||||
|
|
||||
|
## SYNOPSIS |
||||
|
{{ Fill in the Synopsis }} |
||||
|
|
||||
|
## SYNTAX |
||||
|
|
||||
|
### Path (Default) |
||||
|
``` |
||||
|
Get-NTFSEffectiveAccess [[-Path] <String[]>] [[-Account] <IdentityReference2>] [-ServerName <String>] |
||||
|
[-ExcludeNoneAccessEntries] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
### SecurityDescriptor |
||||
|
``` |
||||
|
Get-NTFSEffectiveAccess [-SecurityDescriptor] <FileSystemSecurity2[]> [[-Account] <IdentityReference2>] |
||||
|
[-ServerName <String>] [-ExcludeNoneAccessEntries] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
## DESCRIPTION |
||||
|
{{ Fill in the Description }} |
||||
|
|
||||
|
## EXAMPLES |
||||
|
|
||||
|
### Example 1 |
||||
|
```powershell |
||||
|
PS C:\> {{ Add example code here }} |
||||
|
``` |
||||
|
|
||||
|
{{ Add example description here }} |
||||
|
|
||||
|
## PARAMETERS |
||||
|
|
||||
|
### -Account |
||||
|
{{ Fill Account Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: IdentityReference2 |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: NTAccount, IdentityReference |
||||
|
|
||||
|
Required: False |
||||
|
Position: 2 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -ExcludeNoneAccessEntries |
||||
|
{{ Fill ExcludeNoneAccessEntries Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -Path |
||||
|
{{ Fill Path Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: String[] |
||||
|
Parameter Sets: Path |
||||
|
Aliases: FullName |
||||
|
|
||||
|
Required: False |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -SecurityDescriptor |
||||
|
{{ Fill SecurityDescriptor Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: FileSystemSecurity2[] |
||||
|
Parameter Sets: SecurityDescriptor |
||||
|
Aliases: |
||||
|
|
||||
|
Required: True |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -ServerName |
||||
|
{{ Fill ServerName Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: String |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
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 |
||||
|
|
||||
|
### System.String[] |
||||
|
|
||||
|
### Security2.FileSystemSecurity2[] |
||||
|
|
||||
|
### Security2.IdentityReference2 |
||||
|
|
||||
|
## OUTPUTS |
||||
|
|
||||
|
### Security2.FileSystemAccessRule2 |
||||
|
|
||||
|
## NOTES |
||||
|
|
||||
|
## RELATED LINKS |
||||
@ -0,0 +1,63 @@ |
|||||
|
--- |
||||
|
external help file: NTFSSecurity.dll-Help.xml |
||||
|
Module Name: ntfssecurity |
||||
|
online version: |
||||
|
schema: 2.0.0 |
||||
|
--- |
||||
|
|
||||
|
# Get-NTFSHardLink |
||||
|
|
||||
|
## SYNOPSIS |
||||
|
{{ Fill in the Synopsis }} |
||||
|
|
||||
|
## SYNTAX |
||||
|
|
||||
|
``` |
||||
|
Get-NTFSHardLink [[-Path] <String[]>] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
## DESCRIPTION |
||||
|
{{ Fill in the Description }} |
||||
|
|
||||
|
## EXAMPLES |
||||
|
|
||||
|
### Example 1 |
||||
|
```powershell |
||||
|
PS C:\> {{ Add example code here }} |
||||
|
``` |
||||
|
|
||||
|
{{ Add example description here }} |
||||
|
|
||||
|
## PARAMETERS |
||||
|
|
||||
|
### -Path |
||||
|
{{ Fill Path Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: String[] |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: FullName |
||||
|
|
||||
|
Required: False |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
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 |
||||
|
|
||||
|
### System.String[] |
||||
|
|
||||
|
## OUTPUTS |
||||
|
|
||||
|
### Alphaleonis.Win32.Filesystem.FileInfo |
||||
|
|
||||
|
### Alphaleonis.Win32.Filesystem.DirectoryInfo |
||||
|
|
||||
|
## NOTES |
||||
|
|
||||
|
## RELATED LINKS |
||||
@ -0,0 +1,84 @@ |
|||||
|
--- |
||||
|
external help file: NTFSSecurity.dll-Help.xml |
||||
|
Module Name: ntfssecurity |
||||
|
online version: |
||||
|
schema: 2.0.0 |
||||
|
--- |
||||
|
|
||||
|
# Get-NTFSInheritance |
||||
|
|
||||
|
## SYNOPSIS |
||||
|
{{ Fill in the Synopsis }} |
||||
|
|
||||
|
## SYNTAX |
||||
|
|
||||
|
### Path (Default) |
||||
|
``` |
||||
|
Get-NTFSInheritance [[-Path] <String[]>] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
### SecurityDescriptor |
||||
|
``` |
||||
|
Get-NTFSInheritance [-SecurityDescriptor] <FileSystemSecurity2[]> [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
## DESCRIPTION |
||||
|
{{ Fill in the Description }} |
||||
|
|
||||
|
## EXAMPLES |
||||
|
|
||||
|
### Example 1 |
||||
|
```powershell |
||||
|
PS C:\> {{ Add example code here }} |
||||
|
``` |
||||
|
|
||||
|
{{ Add example description here }} |
||||
|
|
||||
|
## PARAMETERS |
||||
|
|
||||
|
### -Path |
||||
|
{{ Fill Path Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: String[] |
||||
|
Parameter Sets: Path |
||||
|
Aliases: FullName |
||||
|
|
||||
|
Required: False |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -SecurityDescriptor |
||||
|
{{ Fill SecurityDescriptor Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: FileSystemSecurity2[] |
||||
|
Parameter Sets: SecurityDescriptor |
||||
|
Aliases: |
||||
|
|
||||
|
Required: True |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
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 |
||||
|
|
||||
|
### System.String[] |
||||
|
|
||||
|
### Security2.FileSystemSecurity2[] |
||||
|
|
||||
|
## OUTPUTS |
||||
|
|
||||
|
### Security2.FileSystemInheritanceInfo |
||||
|
|
||||
|
## NOTES |
||||
|
|
||||
|
## RELATED LINKS |
||||
@ -0,0 +1,133 @@ |
|||||
|
--- |
||||
|
external help file: NTFSSecurity.dll-Help.xml |
||||
|
Module Name: ntfssecurity |
||||
|
online version: |
||||
|
schema: 2.0.0 |
||||
|
--- |
||||
|
|
||||
|
# Get-NTFSOrphanedAccess |
||||
|
|
||||
|
## SYNOPSIS |
||||
|
{{ Fill in the Synopsis }} |
||||
|
|
||||
|
## SYNTAX |
||||
|
|
||||
|
### Path |
||||
|
``` |
||||
|
Get-NTFSOrphanedAccess [[-Path] <String[]>] [-Account <IdentityReference2>] [-ExcludeExplicit] |
||||
|
[-ExcludeInherited] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
### SD |
||||
|
``` |
||||
|
Get-NTFSOrphanedAccess [-SecurityDescriptor] <FileSystemSecurity2[]> [-Account <IdentityReference2>] |
||||
|
[-ExcludeExplicit] [-ExcludeInherited] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
## DESCRIPTION |
||||
|
{{ Fill in the Description }} |
||||
|
|
||||
|
## EXAMPLES |
||||
|
|
||||
|
### Example 1 |
||||
|
```powershell |
||||
|
PS C:\> {{ Add example code here }} |
||||
|
``` |
||||
|
|
||||
|
{{ Add example description here }} |
||||
|
|
||||
|
## PARAMETERS |
||||
|
|
||||
|
### -Account |
||||
|
{{ Fill Account Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: IdentityReference2 |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: IdentityReference, ID |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -ExcludeExplicit |
||||
|
{{ Fill ExcludeExplicit Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -ExcludeInherited |
||||
|
{{ Fill ExcludeInherited Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -Path |
||||
|
{{ Fill Path Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: String[] |
||||
|
Parameter Sets: Path |
||||
|
Aliases: FullName |
||||
|
|
||||
|
Required: False |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -SecurityDescriptor |
||||
|
{{ Fill SecurityDescriptor Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: FileSystemSecurity2[] |
||||
|
Parameter Sets: SD |
||||
|
Aliases: |
||||
|
|
||||
|
Required: True |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
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 |
||||
|
|
||||
|
### System.String[] |
||||
|
|
||||
|
### Security2.FileSystemSecurity2[] |
||||
|
|
||||
|
### Security2.IdentityReference2 |
||||
|
|
||||
|
## OUTPUTS |
||||
|
|
||||
|
### Security2.FileSystemAccessRule2 |
||||
|
|
||||
|
## NOTES |
||||
|
|
||||
|
## RELATED LINKS |
||||
@ -0,0 +1,133 @@ |
|||||
|
--- |
||||
|
external help file: NTFSSecurity.dll-Help.xml |
||||
|
Module Name: ntfssecurity |
||||
|
online version: |
||||
|
schema: 2.0.0 |
||||
|
--- |
||||
|
|
||||
|
# Get-NTFSOrphanedAudit |
||||
|
|
||||
|
## SYNOPSIS |
||||
|
{{ Fill in the Synopsis }} |
||||
|
|
||||
|
## SYNTAX |
||||
|
|
||||
|
### Path |
||||
|
``` |
||||
|
Get-NTFSOrphanedAudit [[-Path] <String[]>] [-Account <IdentityReference2>] [-ExcludeExplicit] |
||||
|
[-ExcludeInherited] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
### SD |
||||
|
``` |
||||
|
Get-NTFSOrphanedAudit [-SecurityDescriptor] <FileSystemSecurity2[]> [-Account <IdentityReference2>] |
||||
|
[-ExcludeExplicit] [-ExcludeInherited] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
## DESCRIPTION |
||||
|
{{ Fill in the Description }} |
||||
|
|
||||
|
## EXAMPLES |
||||
|
|
||||
|
### Example 1 |
||||
|
```powershell |
||||
|
PS C:\> {{ Add example code here }} |
||||
|
``` |
||||
|
|
||||
|
{{ Add example description here }} |
||||
|
|
||||
|
## PARAMETERS |
||||
|
|
||||
|
### -Account |
||||
|
{{ Fill Account Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: IdentityReference2 |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: IdentityReference, ID |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -ExcludeExplicit |
||||
|
{{ Fill ExcludeExplicit Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -ExcludeInherited |
||||
|
{{ Fill ExcludeInherited Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -Path |
||||
|
{{ Fill Path Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: String[] |
||||
|
Parameter Sets: Path |
||||
|
Aliases: FullName |
||||
|
|
||||
|
Required: False |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -SecurityDescriptor |
||||
|
{{ Fill SecurityDescriptor Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: FileSystemSecurity2[] |
||||
|
Parameter Sets: SD |
||||
|
Aliases: |
||||
|
|
||||
|
Required: True |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
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 |
||||
|
|
||||
|
### System.String[] |
||||
|
|
||||
|
### Security2.FileSystemSecurity2[] |
||||
|
|
||||
|
### Security2.IdentityReference2 |
||||
|
|
||||
|
## OUTPUTS |
||||
|
|
||||
|
### Security2.FileSystemAuditRule2 |
||||
|
|
||||
|
## NOTES |
||||
|
|
||||
|
## RELATED LINKS |
||||
@ -0,0 +1,84 @@ |
|||||
|
--- |
||||
|
external help file: NTFSSecurity.dll-Help.xml |
||||
|
Module Name: ntfssecurity |
||||
|
online version: |
||||
|
schema: 2.0.0 |
||||
|
--- |
||||
|
|
||||
|
# Get-NTFSOwner |
||||
|
|
||||
|
## SYNOPSIS |
||||
|
{{ Fill in the Synopsis }} |
||||
|
|
||||
|
## SYNTAX |
||||
|
|
||||
|
### Path (Default) |
||||
|
``` |
||||
|
Get-NTFSOwner [[-Path] <String[]>] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
### SecurityDescriptor |
||||
|
``` |
||||
|
Get-NTFSOwner [-SecurityDescriptor] <FileSystemSecurity2[]> [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
## DESCRIPTION |
||||
|
{{ Fill in the Description }} |
||||
|
|
||||
|
## EXAMPLES |
||||
|
|
||||
|
### Example 1 |
||||
|
```powershell |
||||
|
PS C:\> {{ Add example code here }} |
||||
|
``` |
||||
|
|
||||
|
{{ Add example description here }} |
||||
|
|
||||
|
## PARAMETERS |
||||
|
|
||||
|
### -Path |
||||
|
{{ Fill Path Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: String[] |
||||
|
Parameter Sets: Path |
||||
|
Aliases: FullName |
||||
|
|
||||
|
Required: False |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -SecurityDescriptor |
||||
|
{{ Fill SecurityDescriptor Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: FileSystemSecurity2[] |
||||
|
Parameter Sets: SecurityDescriptor |
||||
|
Aliases: |
||||
|
|
||||
|
Required: True |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
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 |
||||
|
|
||||
|
### System.String[] |
||||
|
|
||||
|
### Security2.FileSystemSecurity2[] |
||||
|
|
||||
|
## OUTPUTS |
||||
|
|
||||
|
### Security2.FileSystemOwner |
||||
|
|
||||
|
## NOTES |
||||
|
|
||||
|
## RELATED LINKS |
||||
@ -0,0 +1,61 @@ |
|||||
|
--- |
||||
|
external help file: NTFSSecurity.dll-Help.xml |
||||
|
Module Name: ntfssecurity |
||||
|
online version: |
||||
|
schema: 2.0.0 |
||||
|
--- |
||||
|
|
||||
|
# Get-NTFSSecurityDescriptor |
||||
|
|
||||
|
## SYNOPSIS |
||||
|
{{ Fill in the Synopsis }} |
||||
|
|
||||
|
## SYNTAX |
||||
|
|
||||
|
``` |
||||
|
Get-NTFSSecurityDescriptor [[-Path] <String[]>] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
## DESCRIPTION |
||||
|
{{ Fill in the Description }} |
||||
|
|
||||
|
## EXAMPLES |
||||
|
|
||||
|
### Example 1 |
||||
|
```powershell |
||||
|
PS C:\> {{ Add example code here }} |
||||
|
``` |
||||
|
|
||||
|
{{ Add example description here }} |
||||
|
|
||||
|
## PARAMETERS |
||||
|
|
||||
|
### -Path |
||||
|
{{ Fill Path Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: String[] |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: FullName |
||||
|
|
||||
|
Required: False |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
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 |
||||
|
|
||||
|
### System.String[] |
||||
|
|
||||
|
## OUTPUTS |
||||
|
|
||||
|
### Security2.FileSystemSecurity2 |
||||
|
|
||||
|
## NOTES |
||||
|
|
||||
|
## RELATED LINKS |
||||
@ -0,0 +1,148 @@ |
|||||
|
--- |
||||
|
external help file: NTFSSecurity.dll-Help.xml |
||||
|
Module Name: ntfssecurity |
||||
|
online version: |
||||
|
schema: 2.0.0 |
||||
|
--- |
||||
|
|
||||
|
# Get-NTFSSimpleAccess |
||||
|
|
||||
|
## SYNOPSIS |
||||
|
{{ Fill in the Synopsis }} |
||||
|
|
||||
|
## SYNTAX |
||||
|
|
||||
|
### Path |
||||
|
``` |
||||
|
Get-NTFSSimpleAccess [-IncludeRootFolder] [[-Path] <String[]>] [-Account <IdentityReference2>] |
||||
|
[-ExcludeExplicit] [-ExcludeInherited] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
### SD |
||||
|
``` |
||||
|
Get-NTFSSimpleAccess [-IncludeRootFolder] [-SecurityDescriptor] <FileSystemSecurity2[]> |
||||
|
[-Account <IdentityReference2>] [-ExcludeExplicit] [-ExcludeInherited] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
## DESCRIPTION |
||||
|
{{ Fill in the Description }} |
||||
|
|
||||
|
## EXAMPLES |
||||
|
|
||||
|
### Example 1 |
||||
|
```powershell |
||||
|
PS C:\> {{ Add example code here }} |
||||
|
``` |
||||
|
|
||||
|
{{ Add example description here }} |
||||
|
|
||||
|
## PARAMETERS |
||||
|
|
||||
|
### -Account |
||||
|
{{ Fill Account Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: IdentityReference2 |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: IdentityReference, ID |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -ExcludeExplicit |
||||
|
{{ Fill ExcludeExplicit Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -ExcludeInherited |
||||
|
{{ Fill ExcludeInherited Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -IncludeRootFolder |
||||
|
{{ Fill IncludeRootFolder Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -Path |
||||
|
{{ Fill Path Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: String[] |
||||
|
Parameter Sets: Path |
||||
|
Aliases: FullName |
||||
|
|
||||
|
Required: False |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -SecurityDescriptor |
||||
|
{{ Fill SecurityDescriptor Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: FileSystemSecurity2[] |
||||
|
Parameter Sets: SD |
||||
|
Aliases: |
||||
|
|
||||
|
Required: True |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
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 |
||||
|
|
||||
|
### System.String[] |
||||
|
|
||||
|
### Security2.FileSystemSecurity2[] |
||||
|
|
||||
|
### Security2.IdentityReference2 |
||||
|
|
||||
|
## OUTPUTS |
||||
|
|
||||
|
### Security2.SimpleFileSystemAccessRule |
||||
|
|
||||
|
## NOTES |
||||
|
|
||||
|
## RELATED LINKS |
||||
@ -0,0 +1,46 @@ |
|||||
|
--- |
||||
|
external help file: NTFSSecurity.dll-Help.xml |
||||
|
Module Name: ntfssecurity |
||||
|
online version: |
||||
|
schema: 2.0.0 |
||||
|
--- |
||||
|
|
||||
|
# Get-Privileges |
||||
|
|
||||
|
## SYNOPSIS |
||||
|
{{ Fill in the Synopsis }} |
||||
|
|
||||
|
## SYNTAX |
||||
|
|
||||
|
``` |
||||
|
Get-Privileges [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
## DESCRIPTION |
||||
|
{{ Fill in the Description }} |
||||
|
|
||||
|
## EXAMPLES |
||||
|
|
||||
|
### Example 1 |
||||
|
```powershell |
||||
|
PS C:\> {{ Add example code here }} |
||||
|
``` |
||||
|
|
||||
|
{{ Add example description 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 |
||||
|
|
||||
|
### None |
||||
|
|
||||
|
## OUTPUTS |
||||
|
|
||||
|
### ProcessPrivileges.PrivilegeAndAttributes |
||||
|
|
||||
|
## NOTES |
||||
|
|
||||
|
## RELATED LINKS |
||||
@ -0,0 +1,139 @@ |
|||||
|
--- |
||||
|
external help file: NTFSSecurity.dll-Help.xml |
||||
|
Module Name: ntfssecurity |
||||
|
online version: |
||||
|
schema: 2.0.0 |
||||
|
--- |
||||
|
|
||||
|
# Move-Item2 |
||||
|
|
||||
|
## SYNOPSIS |
||||
|
{{ Fill in the Synopsis }} |
||||
|
|
||||
|
## SYNTAX |
||||
|
|
||||
|
``` |
||||
|
Move-Item2 [-Path] <String[]> [-Destination] <String> [-Force] [-PassThru <Boolean>] [-WhatIf] [-Confirm] |
||||
|
[<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
## DESCRIPTION |
||||
|
{{ Fill in the Description }} |
||||
|
|
||||
|
## EXAMPLES |
||||
|
|
||||
|
### Example 1 |
||||
|
```powershell |
||||
|
PS C:\> {{ Add example code here }} |
||||
|
``` |
||||
|
|
||||
|
{{ Add example description here }} |
||||
|
|
||||
|
## PARAMETERS |
||||
|
|
||||
|
### -Confirm |
||||
|
Prompts you for confirmation before running the cmdlet. |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: cf |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -Destination |
||||
|
{{ Fill Destination Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: String |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: True |
||||
|
Position: 2 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -Force |
||||
|
{{ Fill Force Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -PassThru |
||||
|
{{ Fill PassThru Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: Boolean |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -Path |
||||
|
{{ Fill Path Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: String[] |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: FullName |
||||
|
|
||||
|
Required: True |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -WhatIf |
||||
|
Shows what would happen if the cmdlet runs. |
||||
|
The cmdlet is not run. |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: wi |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
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 |
||||
|
|
||||
|
### System.String[] |
||||
|
|
||||
|
### System.String |
||||
|
|
||||
|
## OUTPUTS |
||||
|
|
||||
|
### System.Object |
||||
|
## NOTES |
||||
|
|
||||
|
## RELATED LINKS |
||||
@ -0,0 +1,93 @@ |
|||||
|
--- |
||||
|
external help file: NTFSSecurity.dll-Help.xml |
||||
|
Module Name: ntfssecurity |
||||
|
online version: |
||||
|
schema: 2.0.0 |
||||
|
--- |
||||
|
|
||||
|
# New-NTFSHardLink |
||||
|
|
||||
|
## SYNOPSIS |
||||
|
{{ Fill in the Synopsis }} |
||||
|
|
||||
|
## SYNTAX |
||||
|
|
||||
|
``` |
||||
|
New-NTFSHardLink [[-Path] <String>] [[-Target] <String>] [-PassThru] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
## DESCRIPTION |
||||
|
{{ Fill in the Description }} |
||||
|
|
||||
|
## EXAMPLES |
||||
|
|
||||
|
### Example 1 |
||||
|
```powershell |
||||
|
PS C:\> {{ Add example code here }} |
||||
|
``` |
||||
|
|
||||
|
{{ Add example description here }} |
||||
|
|
||||
|
## PARAMETERS |
||||
|
|
||||
|
### -PassThru |
||||
|
{{ Fill PassThru Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -Path |
||||
|
{{ Fill Path Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: String |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: FullName |
||||
|
|
||||
|
Required: False |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -Target |
||||
|
{{ Fill Target Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: String |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: 2 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
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 |
||||
|
|
||||
|
### System.String |
||||
|
|
||||
|
## OUTPUTS |
||||
|
|
||||
|
### Alphaleonis.Win32.Filesystem.FileInfo |
||||
|
|
||||
|
### Alphaleonis.Win32.Filesystem.DirectoryInfo |
||||
|
|
||||
|
## NOTES |
||||
|
|
||||
|
## RELATED LINKS |
||||
@ -0,0 +1,93 @@ |
|||||
|
--- |
||||
|
external help file: NTFSSecurity.dll-Help.xml |
||||
|
Module Name: ntfssecurity |
||||
|
online version: |
||||
|
schema: 2.0.0 |
||||
|
--- |
||||
|
|
||||
|
# New-NTFSSymbolicLink |
||||
|
|
||||
|
## SYNOPSIS |
||||
|
{{ Fill in the Synopsis }} |
||||
|
|
||||
|
## SYNTAX |
||||
|
|
||||
|
``` |
||||
|
New-NTFSSymbolicLink [[-Path] <String>] [[-Target] <String>] [-PassThru] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
## DESCRIPTION |
||||
|
{{ Fill in the Description }} |
||||
|
|
||||
|
## EXAMPLES |
||||
|
|
||||
|
### Example 1 |
||||
|
```powershell |
||||
|
PS C:\> {{ Add example code here }} |
||||
|
``` |
||||
|
|
||||
|
{{ Add example description here }} |
||||
|
|
||||
|
## PARAMETERS |
||||
|
|
||||
|
### -PassThru |
||||
|
{{ Fill PassThru Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -Path |
||||
|
{{ Fill Path Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: String |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: FullName |
||||
|
|
||||
|
Required: False |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -Target |
||||
|
{{ Fill Target Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: String |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: 2 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
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 |
||||
|
|
||||
|
### System.String |
||||
|
|
||||
|
## OUTPUTS |
||||
|
|
||||
|
### Alphaleonis.Win32.Filesystem.FileInfo |
||||
|
|
||||
|
### Alphaleonis.Win32.Filesystem.DirectoryInfo |
||||
|
|
||||
|
## NOTES |
||||
|
|
||||
|
## RELATED LINKS |
||||
@ -0,0 +1,136 @@ |
|||||
|
--- |
||||
|
external help file: NTFSSecurity.dll-Help.xml |
||||
|
Module Name: ntfssecurity |
||||
|
online version: |
||||
|
schema: 2.0.0 |
||||
|
--- |
||||
|
|
||||
|
# Remove-Item2 |
||||
|
|
||||
|
## SYNOPSIS |
||||
|
{{ Fill in the Synopsis }} |
||||
|
|
||||
|
## SYNTAX |
||||
|
|
||||
|
``` |
||||
|
Remove-Item2 [[-Path] <String[]>] [-Force] [-Recurse] [-PassThur] [-WhatIf] [-Confirm] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
## DESCRIPTION |
||||
|
{{ Fill in the Description }} |
||||
|
|
||||
|
## EXAMPLES |
||||
|
|
||||
|
### Example 1 |
||||
|
```powershell |
||||
|
PS C:\> {{ Add example code here }} |
||||
|
``` |
||||
|
|
||||
|
{{ Add example description here }} |
||||
|
|
||||
|
## PARAMETERS |
||||
|
|
||||
|
### -Confirm |
||||
|
Prompts you for confirmation before running the cmdlet. |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: cf |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -Force |
||||
|
{{ Fill Force Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -PassThur |
||||
|
{{ Fill PassThur Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -Path |
||||
|
{{ Fill Path Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: String[] |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: FullName |
||||
|
|
||||
|
Required: False |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -Recurse |
||||
|
{{ Fill Recurse Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -WhatIf |
||||
|
Shows what would happen if the cmdlet runs. |
||||
|
The cmdlet is not run. |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: wi |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
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 |
||||
|
|
||||
|
### System.String[] |
||||
|
|
||||
|
## OUTPUTS |
||||
|
|
||||
|
### System.Object |
||||
|
## NOTES |
||||
|
|
||||
|
## RELATED LINKS |
||||
@ -0,0 +1,223 @@ |
|||||
|
--- |
||||
|
external help file: NTFSSecurity.dll-Help.xml |
||||
|
Module Name: ntfssecurity |
||||
|
online version: |
||||
|
schema: 2.0.0 |
||||
|
--- |
||||
|
|
||||
|
# Remove-NTFSAccess |
||||
|
|
||||
|
## SYNOPSIS |
||||
|
{{ Fill in the Synopsis }} |
||||
|
|
||||
|
## SYNTAX |
||||
|
|
||||
|
### PathComplex (Default) |
||||
|
``` |
||||
|
Remove-NTFSAccess [-Path] <String[]> [-Account] <IdentityReference2[]> [-AccessRights] <FileSystemRights2> |
||||
|
[-AccessType <AccessControlType>] [-InheritanceFlags <InheritanceFlags>] |
||||
|
[-PropagationFlags <PropagationFlags>] [-PassThru] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
### PathSimple |
||||
|
``` |
||||
|
Remove-NTFSAccess [-Path] <String[]> [-Account] <IdentityReference2[]> [-AccessRights] <FileSystemRights2> |
||||
|
[-AccessType <AccessControlType>] [-AppliesTo <ApplyTo>] [-PassThru] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
### SDSimple |
||||
|
``` |
||||
|
Remove-NTFSAccess [-SecurityDescriptor] <FileSystemSecurity2[]> [-Account] <IdentityReference2[]> |
||||
|
[-AccessRights] <FileSystemRights2> [-AccessType <AccessControlType>] [-AppliesTo <ApplyTo>] [-PassThru] |
||||
|
[<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
### SDComplex |
||||
|
``` |
||||
|
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 |
||||
|
PS C:\> {{ Add example code here }} |
||||
|
``` |
||||
|
|
||||
|
{{ Add example description here }} |
||||
|
|
||||
|
## PARAMETERS |
||||
|
|
||||
|
### -AccessRights |
||||
|
{{ Fill AccessRights Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: FileSystemRights2 |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: FileSystemRights |
||||
|
Accepted values: None, ReadData, ListDirectory, WriteData, CreateFiles, AppendData, CreateDirectories, ReadExtendedAttributes, WriteExtendedAttributes, ExecuteFile, Traverse, DeleteSubdirectoriesAndFiles, ReadAttributes, WriteAttributes, Write, Delete, ReadPermissions, Read, ReadAndExecute, Modify, ChangePermissions, TakeOwnership, Synchronize, FullControl, GenericAll, GenericExecute, GenericWrite, GenericRead |
||||
|
|
||||
|
Required: True |
||||
|
Position: 3 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -AccessType |
||||
|
{{ Fill AccessType Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: AccessControlType |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: AccessControlType |
||||
|
Accepted values: Allow, Deny |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -Account |
||||
|
{{ Fill Account Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: IdentityReference2[] |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: IdentityReference, ID |
||||
|
|
||||
|
Required: True |
||||
|
Position: 2 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -AppliesTo |
||||
|
{{ Fill AppliesTo Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: ApplyTo |
||||
|
Parameter Sets: PathSimple, SDSimple |
||||
|
Aliases: |
||||
|
Accepted values: ThisFolderOnly, ThisFolderSubfoldersAndFiles, ThisFolderAndSubfolders, ThisFolderAndFiles, SubfoldersAndFilesOnly, SubfoldersOnly, FilesOnly, ThisFolderSubfoldersAndFilesOneLevel, ThisFolderAndSubfoldersOneLevel, ThisFolderAndFilesOneLevel, SubfoldersAndFilesOnlyOneLevel, SubfoldersOnlyOneLevel, FilesOnlyOneLevel |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -InheritanceFlags |
||||
|
{{ Fill InheritanceFlags Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: InheritanceFlags |
||||
|
Parameter Sets: PathComplex, SDComplex |
||||
|
Aliases: |
||||
|
Accepted values: None, ContainerInherit, ObjectInherit |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -PassThru |
||||
|
{{ Fill PassThru Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -Path |
||||
|
{{ Fill Path Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: String[] |
||||
|
Parameter Sets: PathComplex, PathSimple |
||||
|
Aliases: FullName |
||||
|
|
||||
|
Required: True |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -PropagationFlags |
||||
|
{{ Fill PropagationFlags Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: PropagationFlags |
||||
|
Parameter Sets: PathComplex, SDComplex |
||||
|
Aliases: |
||||
|
Accepted values: None, NoPropagateInherit, InheritOnly |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -SecurityDescriptor |
||||
|
{{ Fill SecurityDescriptor Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: FileSystemSecurity2[] |
||||
|
Parameter Sets: SDSimple, SDComplex |
||||
|
Aliases: |
||||
|
|
||||
|
Required: True |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
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 |
||||
|
|
||||
|
### System.String[] |
||||
|
|
||||
|
### Security2.FileSystemSecurity2[] |
||||
|
|
||||
|
### Security2.IdentityReference2[] |
||||
|
|
||||
|
### Security2.FileSystemRights2 |
||||
|
|
||||
|
### System.Security.AccessControl.AccessControlType |
||||
|
|
||||
|
### System.Security.AccessControl.InheritanceFlags |
||||
|
|
||||
|
### System.Security.AccessControl.PropagationFlags |
||||
|
|
||||
|
### Security2.ApplyTo |
||||
|
|
||||
|
## OUTPUTS |
||||
|
|
||||
|
### Security2.FileSystemAccessRule2 |
||||
|
|
||||
|
## NOTES |
||||
|
|
||||
|
## RELATED LINKS |
||||
@ -0,0 +1,223 @@ |
|||||
|
--- |
||||
|
external help file: NTFSSecurity.dll-Help.xml |
||||
|
Module Name: ntfssecurity |
||||
|
online version: |
||||
|
schema: 2.0.0 |
||||
|
--- |
||||
|
|
||||
|
# Remove-NTFSAudit |
||||
|
|
||||
|
## SYNOPSIS |
||||
|
{{ Fill in the Synopsis }} |
||||
|
|
||||
|
## SYNTAX |
||||
|
|
||||
|
### PathComplex (Default) |
||||
|
``` |
||||
|
Remove-NTFSAudit [-Path] <String[]> [-Account] <IdentityReference2[]> [-AccessRights] <FileSystemRights2> |
||||
|
[-AuditFlags <AuditFlags>] [-InheritanceFlags <InheritanceFlags>] [-PropagationFlags <PropagationFlags>] |
||||
|
[-PassThru] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
### PathSimple |
||||
|
``` |
||||
|
Remove-NTFSAudit [-Path] <String[]> [-Account] <IdentityReference2[]> [-AccessRights] <FileSystemRights2> |
||||
|
[-AuditFlags <AuditFlags>] [-AppliesTo <ApplyTo>] [-PassThru] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
### SDSimple |
||||
|
``` |
||||
|
Remove-NTFSAudit [-SecurityDescriptor] <FileSystemSecurity2[]> [-Account] <IdentityReference2[]> |
||||
|
[-AccessRights] <FileSystemRights2> [-AuditFlags <AuditFlags>] [-AppliesTo <ApplyTo>] [-PassThru] |
||||
|
[<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
### SDComplex |
||||
|
``` |
||||
|
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 |
||||
|
PS C:\> {{ Add example code here }} |
||||
|
``` |
||||
|
|
||||
|
{{ Add example description here }} |
||||
|
|
||||
|
## PARAMETERS |
||||
|
|
||||
|
### -AccessRights |
||||
|
{{ Fill AccessRights Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: FileSystemRights2 |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: FileSystemRights |
||||
|
Accepted values: None, ReadData, ListDirectory, WriteData, CreateFiles, AppendData, CreateDirectories, ReadExtendedAttributes, WriteExtendedAttributes, ExecuteFile, Traverse, DeleteSubdirectoriesAndFiles, ReadAttributes, WriteAttributes, Write, Delete, ReadPermissions, Read, ReadAndExecute, Modify, ChangePermissions, TakeOwnership, Synchronize, FullControl, GenericAll, GenericExecute, GenericWrite, GenericRead |
||||
|
|
||||
|
Required: True |
||||
|
Position: 3 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -Account |
||||
|
{{ Fill Account Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: IdentityReference2[] |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: IdentityReference, ID |
||||
|
|
||||
|
Required: True |
||||
|
Position: 2 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -AppliesTo |
||||
|
{{ Fill AppliesTo Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: ApplyTo |
||||
|
Parameter Sets: PathSimple, SDSimple |
||||
|
Aliases: |
||||
|
Accepted values: ThisFolderOnly, ThisFolderSubfoldersAndFiles, ThisFolderAndSubfolders, ThisFolderAndFiles, SubfoldersAndFilesOnly, SubfoldersOnly, FilesOnly, ThisFolderSubfoldersAndFilesOneLevel, ThisFolderAndSubfoldersOneLevel, ThisFolderAndFilesOneLevel, SubfoldersAndFilesOnlyOneLevel, SubfoldersOnlyOneLevel, FilesOnlyOneLevel |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -AuditFlags |
||||
|
{{ Fill AuditFlags Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: AuditFlags |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
Accepted values: None, Success, Failure |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -InheritanceFlags |
||||
|
{{ Fill InheritanceFlags Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: InheritanceFlags |
||||
|
Parameter Sets: PathComplex, SDComplex |
||||
|
Aliases: |
||||
|
Accepted values: None, ContainerInherit, ObjectInherit |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -PassThru |
||||
|
{{ Fill PassThru Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -Path |
||||
|
{{ Fill Path Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: String[] |
||||
|
Parameter Sets: PathComplex, PathSimple |
||||
|
Aliases: FullName |
||||
|
|
||||
|
Required: True |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -PropagationFlags |
||||
|
{{ Fill PropagationFlags Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: PropagationFlags |
||||
|
Parameter Sets: PathComplex, SDComplex |
||||
|
Aliases: |
||||
|
Accepted values: None, NoPropagateInherit, InheritOnly |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -SecurityDescriptor |
||||
|
{{ Fill SecurityDescriptor Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: FileSystemSecurity2[] |
||||
|
Parameter Sets: SDSimple, SDComplex |
||||
|
Aliases: |
||||
|
|
||||
|
Required: True |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
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 |
||||
|
|
||||
|
### System.String[] |
||||
|
|
||||
|
### Security2.FileSystemSecurity2[] |
||||
|
|
||||
|
### Security2.IdentityReference2[] |
||||
|
|
||||
|
### Security2.FileSystemRights2 |
||||
|
|
||||
|
### System.Security.AccessControl.AuditFlags |
||||
|
|
||||
|
### System.Security.AccessControl.InheritanceFlags |
||||
|
|
||||
|
### System.Security.AccessControl.PropagationFlags |
||||
|
|
||||
|
### Security2.ApplyTo |
||||
|
|
||||
|
## OUTPUTS |
||||
|
|
||||
|
### Security2.FileSystemAccessRule2 |
||||
|
|
||||
|
## NOTES |
||||
|
|
||||
|
## RELATED LINKS |
||||
@ -0,0 +1,132 @@ |
|||||
|
--- |
||||
|
external help file: NTFSSecurity.dll-Help.xml |
||||
|
Module Name: ntfssecurity |
||||
|
online version: |
||||
|
schema: 2.0.0 |
||||
|
--- |
||||
|
|
||||
|
# Set-NTFSInheritance |
||||
|
|
||||
|
## SYNOPSIS |
||||
|
{{ Fill in the Synopsis }} |
||||
|
|
||||
|
## SYNTAX |
||||
|
|
||||
|
### Path (Default) |
||||
|
``` |
||||
|
Set-NTFSInheritance [[-Path] <String[]>] [-AccessInheritanceEnabled <Boolean>] |
||||
|
[-AuditInheritanceEnabled <Boolean>] [-PassThru] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
### SecurityDescriptor |
||||
|
``` |
||||
|
Set-NTFSInheritance [-SecurityDescriptor] <FileSystemSecurity2[]> [-AccessInheritanceEnabled <Boolean>] |
||||
|
[-AuditInheritanceEnabled <Boolean>] [-PassThru] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
## DESCRIPTION |
||||
|
{{ Fill in the Description }} |
||||
|
|
||||
|
## EXAMPLES |
||||
|
|
||||
|
### Example 1 |
||||
|
```powershell |
||||
|
PS C:\> {{ Add example code here }} |
||||
|
``` |
||||
|
|
||||
|
{{ Add example description here }} |
||||
|
|
||||
|
## PARAMETERS |
||||
|
|
||||
|
### -AccessInheritanceEnabled |
||||
|
{{ Fill AccessInheritanceEnabled Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: Boolean |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -AuditInheritanceEnabled |
||||
|
{{ Fill AuditInheritanceEnabled Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: Boolean |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -PassThru |
||||
|
{{ Fill PassThru Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -Path |
||||
|
{{ Fill Path Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: String[] |
||||
|
Parameter Sets: Path |
||||
|
Aliases: FullName |
||||
|
|
||||
|
Required: False |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -SecurityDescriptor |
||||
|
{{ Fill SecurityDescriptor Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: FileSystemSecurity2[] |
||||
|
Parameter Sets: SecurityDescriptor |
||||
|
Aliases: |
||||
|
|
||||
|
Required: True |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
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 |
||||
|
|
||||
|
### System.String[] |
||||
|
|
||||
|
### Security2.FileSystemSecurity2[] |
||||
|
|
||||
|
### System.Nullable`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] |
||||
|
|
||||
|
## OUTPUTS |
||||
|
|
||||
|
### System.Object |
||||
|
## NOTES |
||||
|
|
||||
|
## RELATED LINKS |
||||
@ -0,0 +1,117 @@ |
|||||
|
--- |
||||
|
external help file: NTFSSecurity.dll-Help.xml |
||||
|
Module Name: ntfssecurity |
||||
|
online version: |
||||
|
schema: 2.0.0 |
||||
|
--- |
||||
|
|
||||
|
# Set-NTFSOwner |
||||
|
|
||||
|
## SYNOPSIS |
||||
|
{{ Fill in the Synopsis }} |
||||
|
|
||||
|
## SYNTAX |
||||
|
|
||||
|
### Path (Default) |
||||
|
``` |
||||
|
Set-NTFSOwner [[-Path] <String[]>] [-Account] <IdentityReference2> [-PassThru] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
### SecurityDescriptor |
||||
|
``` |
||||
|
Set-NTFSOwner [-SecurityDescriptor] <FileSystemSecurity2[]> [-Account] <IdentityReference2> [-PassThru] |
||||
|
[<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
## DESCRIPTION |
||||
|
{{ Fill in the Description }} |
||||
|
|
||||
|
## EXAMPLES |
||||
|
|
||||
|
### Example 1 |
||||
|
```powershell |
||||
|
PS C:\> {{ Add example code here }} |
||||
|
``` |
||||
|
|
||||
|
{{ Add example description here }} |
||||
|
|
||||
|
## PARAMETERS |
||||
|
|
||||
|
### -Account |
||||
|
{{ Fill Account Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: IdentityReference2 |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: True |
||||
|
Position: 2 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -PassThru |
||||
|
{{ Fill PassThru Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -Path |
||||
|
{{ Fill Path Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: String[] |
||||
|
Parameter Sets: Path |
||||
|
Aliases: FullName |
||||
|
|
||||
|
Required: False |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -SecurityDescriptor |
||||
|
{{ Fill SecurityDescriptor Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: FileSystemSecurity2[] |
||||
|
Parameter Sets: SecurityDescriptor |
||||
|
Aliases: |
||||
|
|
||||
|
Required: True |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
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 |
||||
|
|
||||
|
### System.String[] |
||||
|
|
||||
|
### Security2.FileSystemSecurity2[] |
||||
|
|
||||
|
### Security2.IdentityReference2 |
||||
|
|
||||
|
## OUTPUTS |
||||
|
|
||||
|
### Security2.FileSystemOwner |
||||
|
|
||||
|
## NOTES |
||||
|
|
||||
|
## RELATED LINKS |
||||
@ -0,0 +1,76 @@ |
|||||
|
--- |
||||
|
external help file: NTFSSecurity.dll-Help.xml |
||||
|
Module Name: ntfssecurity |
||||
|
online version: |
||||
|
schema: 2.0.0 |
||||
|
--- |
||||
|
|
||||
|
# Set-NTFSSecurityDescriptor |
||||
|
|
||||
|
## SYNOPSIS |
||||
|
{{ Fill in the Synopsis }} |
||||
|
|
||||
|
## SYNTAX |
||||
|
|
||||
|
``` |
||||
|
Set-NTFSSecurityDescriptor [-SecurityDescriptor] <FileSystemSecurity2[]> [-PassThru] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
## DESCRIPTION |
||||
|
{{ Fill in the Description }} |
||||
|
|
||||
|
## EXAMPLES |
||||
|
|
||||
|
### Example 1 |
||||
|
```powershell |
||||
|
PS C:\> {{ Add example code here }} |
||||
|
``` |
||||
|
|
||||
|
{{ Add example description here }} |
||||
|
|
||||
|
## PARAMETERS |
||||
|
|
||||
|
### -PassThru |
||||
|
{{ Fill PassThru Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: SwitchParameter |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: False |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -SecurityDescriptor |
||||
|
{{ Fill SecurityDescriptor Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: FileSystemSecurity2[] |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
|
||||
|
Required: True |
||||
|
Position: 2 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
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 |
||||
|
|
||||
|
### Security2.FileSystemSecurity2[] |
||||
|
|
||||
|
## OUTPUTS |
||||
|
|
||||
|
### Security2.FileSystemSecurity2 |
||||
|
|
||||
|
## NOTES |
||||
|
|
||||
|
## RELATED LINKS |
||||
@ -0,0 +1,81 @@ |
|||||
|
--- |
||||
|
external help file: NTFSSecurity.dll-Help.xml |
||||
|
Module Name: ntfssecurity |
||||
|
online version: |
||||
|
schema: 2.0.0 |
||||
|
--- |
||||
|
|
||||
|
# Test-Path2 |
||||
|
|
||||
|
## SYNOPSIS |
||||
|
{{ Fill in the Synopsis }} |
||||
|
|
||||
|
## SYNTAX |
||||
|
|
||||
|
``` |
||||
|
Test-Path2 [-Path] <String[]> [-PathType <TestPathType>] [<CommonParameters>] |
||||
|
``` |
||||
|
|
||||
|
## DESCRIPTION |
||||
|
{{ Fill in the Description }} |
||||
|
|
||||
|
## EXAMPLES |
||||
|
|
||||
|
### Example 1 |
||||
|
```powershell |
||||
|
PS C:\> {{ Add example code here }} |
||||
|
``` |
||||
|
|
||||
|
{{ Add example description here }} |
||||
|
|
||||
|
## PARAMETERS |
||||
|
|
||||
|
### -Path |
||||
|
{{ Fill Path Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: String[] |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: FullName |
||||
|
|
||||
|
Required: True |
||||
|
Position: 1 |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName, ByValue) |
||||
|
Accept wildcard characters: False |
||||
|
``` |
||||
|
|
||||
|
### -PathType |
||||
|
{{ Fill PathType Description }} |
||||
|
|
||||
|
```yaml |
||||
|
Type: TestPathType |
||||
|
Parameter Sets: (All) |
||||
|
Aliases: |
||||
|
Accepted values: Any, Container, Leaf |
||||
|
|
||||
|
Required: False |
||||
|
Position: Named |
||||
|
Default value: None |
||||
|
Accept pipeline input: True (ByPropertyName) |
||||
|
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 |
||||
|
|
||||
|
### System.String[] |
||||
|
|
||||
|
### NTFSSecurity.TestPathType |
||||
|
|
||||
|
## OUTPUTS |
||||
|
|
||||
|
### Alphaleonis.Win32.Filesystem.FileInfo |
||||
|
|
||||
|
### Alphaleonis.Win32.Filesystem.DirectoryInfo |
||||
|
|
||||
|
## NOTES |
||||
|
|
||||
|
## RELATED LINKS |
||||
Loading…
Reference in new issue