A Microsoft platform for building enterprise-level data integration and data transformations solutions.
Hi @Siji, Merlin ,
Looking at your logs closely, this isn't really a compatibility issue between SQL Server 2019 and Windows Server 2025 they're officially supported together. The real culprit is much simpler.
Your VSTA 2017 bootstrapper is trying to make a network call during installation, and since your VM has no internet, that request times out and crashes the installer. That's the -2147024664 error. The reason redo works is that the first failed attempt already downloaded and cached the VSTA payload locally, so the second run skips that network call entirely.
The cleanest fix no redo needed.
Before running your SQL Server installer, manually pre-stage the VSTA package cache. After your first failed installation attempt, you'll find this file already on the machine:
C:\ProgramData\Package Cache\594F3B71F90160F473DBB77001D3EE6EA4EAC343\
packages\Microsoft.VisualStudio.Tools.Applications.vsix
Just make sure this path and file exist before your next fresh installation. If you're doing this on a brand new VM, copy that folder over from a previously failed install on another machine first, then run the installer it'll find the payload pre-cached and sail right through SSIS/VSTA without needing any network access.
No architecture changes, no SQL Server 2022 upgrade needed. Hope this saves you some time.
Thanks,
Akhil.