Powershell不会识别脚本

时间:2017-01-02 07:41:16

标签: shell powershell permissions

我已经为我公司的用户创建了一个脚本,以便与powershell ise一起使用,当我使用F5在那里运行时,它正在运行。

我已将executionpolicy设置为不受限制。

后来我试图用powershell.exe打开这个脚本,因为我需要它直接为用户运行,并且它给出了错误:

术语" C:\ users \ ofir \ Script \ Json未被识别为cmdlet,函数,脚本文件或可操作程序。

可能是什么问题?谢谢,Ofir。

1 个答案:

答案 0 :(得分:1)

由于我怀疑你运行像powershell.exe -file C:\Users\What\Not\Json File.ps1这样的文件,我可以想到缺少引号。

尝试

  Powershell.exe -file "Path\To\File"