Search code examples
windowsvisual-studiocmdssisvisual-studio-2022

CMD installation in quiet mode keeps showing prompt to click install


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


Solution

  • the solution was to use the version 0.1 of SQL Server Integration Services Projects SSIS (link) because i fund out that the 0.2 version don't support /quiet installation for now !

    you can check this Q&A link enter image description here