I’ve been trying to create a script to install a IBMi driver for Azure Data Factory Integration Runtime SSIS Lift and Shift
The driver is named ACS Windows App Pkg English (64bit)
https://www.ibm.com/resources/mrs/assets/DownloadList?source=swg-ia&lang=en_US
I’ve managed to install another driver (OLE DB Driver 19) for this but this driver doesn’t seem to work
I’ve created following script:
“%~dp0Image64aISSetupPrerequisites{827DEC3D-1589-41F9-9188-C6BE5CADF691}vcredist_x86_2013.exe” /silent /norestart
“%~dp0Image64aISSetupPrerequisites{5219AC36-EB02-4668-B6E4-711E10D95833}vcredist_x64_2013.exe” /silent /norestart
“%~dp0Image64aISSetupPrerequisites{2D5DF45C-F87F-49CA-9104-467740CC3FB8}vcredist_x86_2015.exe” /silent /norestart
“%~dp0Image64aISSetupPrerequisites{25E2F1F0-09A7-4C6A-ADC7-CA620D43574E}vcredist_x64_2015.exe” /silent /norestart
“%~dp0Image64asetup.exe” /s /v”/quiet ACCEPTEULA=1 /norestart”
First part installs 4 Redistributables that the setup needs as depedencies
Second part is running the setup itself in a silent way
This script seems to work locally (on my machine) to install desired driver and it works but as soon as I add it to a Blob Storage – create a SAS URI and feed it into the Azure IR it throws the error that the script isn’t good.
I’ve tried multiple iterations of the script
- with /silent instead of /s
- with /quiet instead of /s
- with /noreboot instead of /norestart
- with no pathway at all
- feeding the setup.exe /v parameters into the Reddistributabbles
Nothing seems to work
Any adivce is appreciated
Thanks
I’ve tried multiple iterations of the script
- with /silent instead of /s
- with /quiet instead of /s
- with /noreboot instead of /norestart
- with no pathway at all
- feeding the setup.exe /v parameters into the Reddistributabbles
Cyp is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.