通过SQL Server 创建windows 帐号

-----通过SQL Server 创建windows 帐号
EXEC sp_configure 'show advanced options', 1 
GO 
RECONFIGURE 
GO 
EXEC sp_configure 'xp_cmdshell', 1 
GO 
RECONFIGURE 
GO 
exec xp_cmdshell 'net user User_name 123 /add' 
exec xp_cmdshell 'net localgroup Guests User_name /add' 
-----通过SQL Server 创建windows 帐号
 

你可能感兴趣的:(通过SQL Server 创建windows 帐号)