$packages = Get-ChildItem "C:\DEV\SSISProject\" -Filter *.dtsx
foreach ($package in $packages)
{
Write-Host $package.Name
}
NOTE: Change the filter to read the document type of your choice.
foreach ($package in $packages)
{
Write-Host $package.Name
}
NOTE: Change the filter to read the document type of your choice.