利用sql server 重启电脑
发布网友
发布时间:2022-04-21 07:32
我来回答
共1个回答
热心网友
时间:2022-04-07 22:45
1/8
打开运行窗口,输入“regedit”,回车
2/8
进入注册表编辑器
3/8
展开“HKEY_LOCAL_MACHINE”
4/8
再展开“SOFTWARE"
5/8
再展开“Microsoft”
6/8
再展开“Microsoft SQL Server”
7/8
右键“MSSQLServer”,点击“删除”
8/8
在确认项删除中点击“是”即可
/*
重新启动SQLServer服务,要求操作者具有相应权限
--vivianfdlpw 2005.9 引用请保留此信息
*/
--创建重启脚本
declare @o int,@f int,@t int,@ret int
exec sp_oacreate 'scripting.filesystemobject',@o out
exec sp_oamethod @o,'createtextfile',@f out,'c:/restart.bat',1
exec @ret=sp_oamethod @f,'writeline',NULL,'net stop mssqlserver'
exec @ret=sp_oamethod @f,'writeline',NULL,'net start mssqlserver'
--执行重启脚本
exec master..xp_cmdshell 'c:/restart.bat'
/*
如果重新启动计算机,请确认mssqlserver账户在管理员账户下运行(非本地系统账户)
--vivianfdlpw 2005.9 引用请保留此信息
*/
exec master..xp_cmdshell 'shutdown /r /f'
在开始->运行中输入regedit(注册表编辑器)
KEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\
在右边窗口右击PendingFileRenameOperations,选择删除,然后确认
注意事项
操作系统用户的密码不能为空,否则安装过程中,用户授权时会提示密码不能为空。