1. 打开sqlserver数据库 xp_cmdshell功能

  -- To allow advanced options to be changed.

  EXEC sp_configure 'show advanced options', 1

  GO

  -- To update the currently configured value for advanced options.

  RECONFIGURE

  GO

  -- To enable the feature.

  EXEC sp_configure 'xp_cmdshell', 1

  GO

  -- To update the currently configured value for this feature.

  RECONFIGURE

  GO

  -- To disallow advanced options to be changed.

  EXEC sp_configure 'show advanced options', 0

  GO

  -- To update the currently configured value for advanced options.

  RECONFIGURE

  GO

2. 映射网络驱动器

  exec   master..xp_cmdshell   'net   use   z:  \\192.168.0.2  password  /user:username'

相关文章:

  • 2022-12-23
  • 2021-09-29
  • 2021-10-06
  • 2021-08-12
  • 2021-05-04
  • 2021-10-29
  • 2021-09-16
  • 2021-12-11
猜你喜欢
  • 2022-12-23
  • 2021-12-20
  • 2022-12-23
  • 2021-07-19
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案