MS SQL PowerShell
Я хочу выполнить скрипт powershell в студии управления Microsoft. Но я получаю ошибку. Смотрите ниже для более подробной информации:
EXEC master..xp_cmdshell '%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\powershell.exe -ExecutionPolicy unrestricted -command "C:\tmp_es\test.ps1"'
C:\tmp_es\test.ps1 : The term 'C:\tmp_es\test.ps1' is not recognized as the
name of a cmdlet, function, script file, or operable program. Check the
spelling of the name, or if a path was included, verify that the path is
correct and try again.
1 ответ
Изменить -Command
в -File
EXEC master..xp_cmdshell '%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\powershell.exe -ExecutionPolicy unrestricted -File "C:\tmp_es\test.ps1"'