issue
sql agent使用powershell挂载共享盘不能识别.
New-PSDrive -Persist -Name Z -Root \\ip\path
挂载的盘识别不了
solution
- 第一种
New-PSDrive -Persist -Name Z -Root \\ip\path -Scope Global
2.第二种
使用\ip\path共享目录
sql agent使用powershell挂载共享盘不能识别.
New-PSDrive -Persist -Name Z -Root \\ip\path
挂载的盘识别不了
New-PSDrive -Persist -Name Z -Root \\ip\path -Scope Global
2.第二种
使用\ip\path共享目录