You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 13, 2024. It is now read-only.
Call get-mcasfile -extension "jpg" works, but would be useful to have multiple extensions in a single get.
get-mcasfile -extension "jpg", "docx" etc. (similar to fileType)
Limits the results to items with the specified file extensions, such as 'jpg', 'txt'.
[Parameter(ParameterSetName='List', Mandatory=$false)]
[ValidateNotNullOrEmpty()]
[string]$Extension,
# Limits the results to items without the specified file extensions, such as 'jpg', 'txt'.
[Parameter(ParameterSetName='List', Mandatory=$false)]
[ValidateNotNullOrEmpty()]
[string]$ExtensionNot,