Adding a system administrator through SQL Server

Source: Internet
Author: User
server| Administrator

If we have administrator privileges on a server SQL Server, we can easily add system administrator users to this server if the server does not have special restrictions.

method, open Query Analyzer, connect to the master library of server SQL Servers, and execute the following SQL statement

xp_cmdshell ' net user Mmcgzs 123qwe!@#/add '
xp_cmdshell ' net localgroup Administrators Mmcgzs/add '


Delete after use

xp_cmdshell ' net localgroup Administrators Mmcgzs/delete '
xp_cmdshell ' Net user mmcgzs/delete '

View existing system users

xp_cmdshell ' Net user '


xp_cmdshell is an extension of SQL that stored procedures, used to execute a command-line statement, we use Net User/add to add a user, and then use the net localgroup command to add this user to the Administrators group, as simple as that.



Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.