Labels

Thursday, June 9, 2016

Read the List of SSIS Packages from the directory using Powershell

$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.