Hi @Yan, Jayden,
To silently clean uninstall SQL Server 2014, you can use the following steps:
- Open a Command Prompt with administrative privileges.
- Navigate to the directory where the SQL Server 2014 setup executable is located.
- Run the following command to launch the setup program in silent mode: Setup.exe /q /ACTION=uninstall /FEATURES=SQL /INSTANCENAME=YourInstanceName /IACCEPTSQLSERVERLICENSETERMS Optionally, you can use the /QUIETSIMPLE parameter to suppress any dialog boxes that may appear during the uninstallation process.
This is a general command. However, if you have installed additional SQL Server components such as SQL Server Reporting Services or SQL Server Analysis Services, you will need to specify those components in the command line by modifying the "/FEATURES" parameter accordingly.
For example, if you have installed both the Database Engine and Reporting Services, you would modify the "/FEATURES" parameter to "/FEATURES=SQL,RS" to uninstall both components.
Please refer to this blog:
This blog contains screenshots that I think will be useful to you.
Best regards,
Seeya
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".