For Basic Tools:
setup.exe /q /ACTION=INSTALL /FEATURES=SSMS /IAcceptSQLServerLicenseTerms=TRUE
For Advanced Tools:
setup.exe /q /ACTION=INSTALL /FEATURES=ADV_SSMS /IAcceptSQLServerLicenseTerms=TRUE
-->
Useful information for Windows System Admins
setup.exe /q /ACTION=INSTALL /FEATURES=SSMS /IAcceptSQLServerLicenseTerms=TRUE
setup.exe /q /ACTION=INSTALL /FEATURES=ADV_SSMS /IAcceptSQLServerLicenseTerms=TRUE
SELECT CONVERT (varchar, SERVERPROPERTY('collation'));
It will return the collation setting, for example: SQL_Latin1_General_CP1_CI_AS
echo %logonserver%
sp_dropserver OldServerName
go
sp_addserver NewServerName, local
go
Import-Module ServerManager
|