I have to call SSIS deployment wizard on clicking on manifest file but instead execute SSIS wizard is opening
how to change wizard in below code of powershell, I mean to say here, when I run this code it is calling "executing package utility" I don't want to call this utility but want to call "SSIS Package installation wizard" by clcking on *.manifest file
I don't want to execute SSIS but Deploy SSIS on deployment server , please modify below powershell script
#call SSIS package installation wizard
$ManifestFile = get-childitem "D:\Deployments\ssis_folder\Deployment_todaydate\*.SSISDeploymentManifest"
$baseFolder = [System.IO.Path]::GetDirectoryName($ManifestFile)
[xml] $list = Get-Content $ManifestFile
foreach($package in $list.DTSDeploymentManifest.Package){
$basePackage = [System.IO.Path]::GetFileNameWithoutExtension($package)
# This might need to be a relative path
$fullyQualifiedPackage = [System.IO.Path]::Combine($baseFolder, $package)
$cmd = [string]::Format($format, $fullyQualifiedPackage, $destinationServer, $basePackage)
cmd /c $cmd
}
#package installer wizard code of SSIS end