Quantcast
Channel: The Official Scripting Guys Forum! forum
Viewing all articles
Browse latest Browse all 15028

how to call ssis package installation wizard

$
0
0

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







Viewing all articles
Browse latest Browse all 15028

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>