Home > Net >  CMD installation in quiet mode keeps showing prompt to click install
CMD installation in quiet mode keeps showing prompt to click install

Time:01-06

I'm trying to install Microsoft DataTools IntegrationServices (ssis) for VS 2022 and i want to do it using CMD in quiet mode so it should be automatically !

i tried 2 CMD but i still always see the prompt asks me to click 'install' !

CMD 1:

[`start /wait cmd.exe /c C:\Temp\Download\SqlDataTools\Microsoft.DataTools.IntegrationServices.exe /INSTALLALL /passive /norestart /log c:\vs2022_ssis.log`][1]

CMD 2 :

 C:\Temp\Download\SqlDataTools\Microsoft.DataTools.IntegrationServices.exe /x /INSTALLALL /quiet /norestart /log c:\vs2022_ssis.log

Prompt i get in both CMD : enter image description here

Prompt for /? :

enter image description here

CodePudding user response:

the solution was to use the version 0.1 of SQL Server Integration Services Projects SSIS (enter image description here

  • Related