I want to apply multiple filter
in PowerShell script as of now I am able to add only single filter
like below
Get-Childitem "D:\SourceFolder" -recurse -filter "*kps.jpg"
| Copy-Item -Destination "D:\DestFolder"
From the above query I able to to copy only one file kps.jpg
from SourceFolder
to DestFolder
, how can I pass multiple names to copy more than one file?