title | description | author | ms.author | ms.reviewer | ms.date | ms.service | ms.subservice | ms.topic |
---|---|---|---|---|---|---|---|---|
How to enable the TCP protocol using SQLPS |
Learn how to enable TCP protocols using SQLPS |
markingmyname |
maghan |
matteot |
08/06/2020 |
sql |
sql-server-powershell |
conceptual |
[!INCLUDE sql-server-powershell-version]
-
Open a command prompt and type:
C:\> SQLPS.EXE
[!TIP] If SQLPS is not found, you may need to open a new command prompt or just log-off and log back on.
-
At the PowerShell command prompt, type:
# Instantiate a ManagedComputer object which exposes primitives to control the # installation of SQL Server on this machine. $wmi = New-Object 'Microsoft.SqlServer.Management.Smo.Wmi.ManagedComputer' localhost # Enable the TCP protocol on the default instance. If the instance is named, # replace MSSQLSERVER with the instance name in the following line. $tcp = $wmi.ServerInstances['MSSQLSERVER'].ServerProtocols['Tcp'] $tcp.IsEnabled = $true $tcp.Alter() # You need to restart SQL Server for the change to persist # -Force takes care of any dependent services, like SQL Agent. # Note: if the instance is named, replace MSSQLSERVER with MSSQL$ followed by # the name of the instance (e.g. MSSQL$MYINSTANCE) Restart-Service -Name MSSQLSERVER -Force
-
Open a command prompt and type:
C:\> PowerShell.exe
-
At the PowerShell command prompt, type:
# Get access to SqlWmiManagement DLL on the machine with SQL # we are on, which is where SQL Server was installed. # Note: this is installed in the GAC by SQL Server Setup. [System.Reflection.Assembly]::LoadWithPartialName('Microsoft.SqlServer.SqlWmiManagement') # Instantiate a ManagedComputer object which exposes primitives to control the # installation of SQL Server on this machine. $wmi = New-Object 'Microsoft.SqlServer.Management.Smo.Wmi.ManagedComputer' localhost # Enable the TCP protocol on the default instance. If the instance is named, # replace MSSQLSERVER with the instance name in the following line. $tcp = $wmi.ServerInstances['MSSQLSERVER'].ServerProtocols['Tcp'] $tcp.IsEnabled = $true $tcp.Alter() # You need to restart SQL Server for the change to persist # -Force takes care of any dependent services, like SQL Agent. # Note: if the instance is named, replace MSSQLSERVER with MSSQL$ followed by # the name of the instance (e.g. MSSQL$MYINSTANCE) Restart-Service -Name MSSQLSERVER -Force