zoukankan      html  css  js  c++  java
  • 使用powershell 设置 sql server 协议

    Configuring SQL Protocols through Windows PowerShell

    Sometimes we are asked about the possibility of configuring SQL Server protocols through PowerShell.  In SQL Server 2008, the sqlps tool incorporates WMI and SMO into this powerful Windows administrator tool, making it easy to manage SQL Server protocols through PowerShell.

                    To get started, run (elevated, if on Windows Vista or Windows Server 2008) sqlps.exe, which by default is located at the %ProgramFiles%\Microsoft SQL Server\100\Tools\binn\sqlps.exe; or, if your architecture is x64, it is in the same path as above, under your Program Files (x86) directory.

                    Now that you have an Admin SQL PowerShell window, here are some example scripts that you can run to configure your SQL Server instance:

    Get the TCP, NP, and SM objects

    This script is the starting point for manipulating the protocols properties on a local default instance.  To modify this for a named instance, replace “MSSQLSERVER” with the name of your instance.

    $MachineObject = new-object ('Microsoft.SqlServer.Management.Smo.WMI.ManagedComputer') .

    $ProtocolUri = "ManagedComputer[@Name='" + (get-item env:\computername).Value + "']/ServerInstance[@Name='MSSQLSERVER']/ServerProtocol"

     

    $tcp = $MachineObject.getsmoobject($ProtocolUri + "[@Name='Tcp']")

    $np = $MachineObject.getsmoobject($ProtocolUri + "[@Name='Np']")

    $sm = $MachineObject.getsmoobject($ProtocolUri + "[@Name='Sm']")

     

    Enable remote connection protocols

    Once you have the base protocol objects, enabling remote connections is trivial:

    $np.IsEnabled = $true

    $np.alter()

    $tcp.IsEnabled = $true

    $tcp.alter()

    Calling the .alter() method commits changes you make to the registry, and you will need to restart the SQL Server instance for it to pick up these changes.

    More elaborate example: Modifying an instance’s TCP Port

    Once you have the TCP object, you can view the properties of the TCP Ports on the various IP Addresses your SQL Server instance is listening on.  For instance, this command will show the properties of the “IPAll” IP Address:

    $MachineObject.getsmoobject($tcp.urn.value + "/IPAddress[@Name='IPAll']")

    The following commands will make your server listen on the TCP port 3344, by modifying the TcpPort property of the IPAll entry and then committing those changes:

    $MachineObject.getsmoobject($tcp.urn.Value + "/IPAddress[@Name='IPAll']").IPAddressProperties[1].Value = "3344"

    $tcp.alter()

    You can now verify in the SQL Server Configuration Manager that your IPAll setting is now set to listen on TCP Port 3344, and restarting the SQL Server service will result in it now listening on the newly-specified port

  • 相关阅读:
    零基础逆向破解教程之图文!-第五课【剽窃软件】
    零基础逆向破解教程之图文!-第四课【篡改内容】
    零基础逆向破解教程之图文!-第三课【脱壳破解】
    Delphi XE3通过ADOConnection 连接 MySQL 5.5.27 数据库
    多线程数据库查询(ADO)
    delphi通过TADOConnection组件直接连接MSSQL数据库并读写数据。
    Delphi动态配置ODBC数据源--SQL Server版本
    [原创]HTML 用div模拟select下拉框
    [原创]delphi一次性批量在TScrollBox中显示N个复选框TCheckBox的源码
    php缩小png图片时,不损失透明色的办法
  • 原文地址:https://www.cnblogs.com/Amaranthus/p/2132232.html
Copyright © 2011-2022 走看看