Get-DSPamScanConfiguration
2025-02-17
Get-DSPamScanConfiguration
SYNOPSIS
Get the PAM scan configurations
SYNTAX
Name
Get-DSPamScanConfiguration [[-Name] <string>] [-CaseSensitive] [<CommonParameters>]
Literal
Get-DSPamScanConfiguration [-LiteralName] <string> [-CaseSensitive] [<CommonParameters>]
ALIASES
This cmdlet has the following aliases,
DESCRIPTION
Get the PAM scan configurations, which can be filtered by name. Use the 'Name' parameter for wildcard searches, and the 'LiteralName' parameter for exact matches as it doesn't interpret characters as wildcards.
EXAMPLES
EXAMPLE 1
PS C:> $configurations = Get-DSPamScanConfiguration -Name 'Config*'
Get all PAM scan configurations with names starting with 'Config'
EXAMPLE 2
PS C:> $configuration = Get-DSPamScanConfiguration -LiteralName 'Config [A]'
Get the PAM scan configuration named 'Config [A]'. The 'LiteralName' parameter ensures that the characters '[' and ']' are not treated as wildcards.
PARAMETERS
-CaseSensitive
Case sensitive search
Type: System.Management.Automation.SwitchParameter
DefaultValue: ''
SupportsWildcards: false
ParameterValue: []
Aliases: []
ParameterSets:
- Name: (All)
Position: Named
IsRequired: false
ValueFromPipeline: false
ValueFromPipelineByPropertyName: false
ValueFromRemainingArguments: false
DontShow: false
AcceptedValues: []
HelpMessage: ''
-LiteralName
Filter the scan configurations by their name. No characters will be interpreted as wildcards.
Type: System.String
DefaultValue: ''
SupportsWildcards: false
ParameterValue: []
Aliases: []
ParameterSets:
- Name: Literal
Position: 1
IsRequired: true
ValueFromPipeline: false
ValueFromPipelineByPropertyName: false
ValueFromRemainingArguments: false
DontShow: false
AcceptedValues: []
HelpMessage: ''
-Name
Filter the scan configurations by their name
Type: System.String
DefaultValue: ''
SupportsWildcards: false
ParameterValue: []
Aliases: []
ParameterSets:
- Name: Name
Position: 1
IsRequired: false
ValueFromPipeline: false
ValueFromPipelineByPropertyName: false
ValueFromRemainingArguments: false
DontShow: false
AcceptedValues: []
HelpMessage: ''
CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
INPUTS
OUTPUTS
Devolutions.Server.NetworkDiscovery.Dto.ScanConfigurationDto
NOTES
For more information, type "Get-Help Get-DSPamScanConfiguration -detailed". For technical information, type "Get-Help Get-DSPamScanConfiguration -full".