我已将服务器映射到 z:
因此,我尝试使用以下命令从 sql server 2005 中使用 xp_cmdshell 存储的过程断开此映射驱动器
exec sp_configure 'show advanced options', '1'
reconfigure
exec sp_configure 'xp_cmdshell','1'
reconfigure
exec xp_cmdshell 'net use z: /d /yes
我面临一个错误
network connection could not be found
但是,当我从命令提示符执行命令“net use z: /d /yes”时,它成功执行并且驱动器断开连接。
请告诉我“xp_cmd shell”存储过程有什么问题