Search notes:

System.Management.Automation.Provider.ProviderCapabilities (enum)

System.Management.Automation.Provider.ProviderCapabilities lists the possible capabilites that a PowerShell provider might implement.
Credentials 32 Credentials are supported (which are passed to the provider)
Exclude 2 -exclude ?
ExpandWildcards 8 The provider, not the Monad engine, does the wildcard matching. See the (overridden) ExpandPath() method of System.Management.Automation.Provider.ItemCmdletProvider.
Filter 4 The provider can take a provider specific filter string.
Include 1 -include parameter is implemented. The Monad engine does not filter on behalf the provider.
None 0 No additional capabilities, only those that are already provided by the Monad engine.
ShouldProcess 16 The provider supports ShouldProcess and the -whatIf and -confirm parameters become available.
Transactions 64 The provider is able to participate in a transaction

See also

The Capabilities member of the System.Management.Automation.ProviderInfo object.

Index