I am trying to silent install SQL Server 2016 components using a configuration file from my installer using inno setup. The OS I am using is Windows Server 2012 R2.
SQL Server Management Studio (SSMS) is available as a separate installer from 2016 version on wards. So I am required to install the SQL Server first followed my SSMS executable through my installer in one shot.
The problem is, the SQL Server is installed correctly but requires a system reboot before installing the SSMS executable. I tried using /SkipRules=RebootRequiredCheck
parameter when I execute the Setup.exe
and deleting the PendingFileRenameOperations
registry entry (HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager
) after the installation of SQL Server. But it still requires a system reboot.
Is there a way to skip the system reboot or any other work around possible for my requirement.
Thanks in Advance.