-----通过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 帐号
最新推荐文章于 2024-07-12 18:48:20 发布