如何运行PowerShell脚本?

我有一个名为myscript.ps1的脚本 我已经安装了所有必要的框架 我设置了执行策略 我已经按照MSDN帮助页上的说明进行了操作 我试着这样运行它: powershell.exe“C: \ my_path \ yada_yada \ run_import_script。Ps1 '(有或没有——没有出口)

除了文件名是output之外,它什么也不返回。

没有错误,没有消息,什么都没有。哦,当我添加-noexit时,同样的事情发生了,但我仍然在PowerShell中,必须手动退出。

.ps1文件应该运行一个程序,并根据该程序的输出返回错误级别。但我很确定我还没到那一步。

我做错了什么?


当前回答

使用适当的执行策略,您应该能够直接调用该文件,Windows将它与PowerShell关联

C:\my_path\yada_yada\run_import_script.ps1

这在论点上不太管用。你的问题的真正答案是你缺少&来表示“执行这个”

powershell.exe '& C:\my_path\yada_yada\run_import_script.ps1'

其他回答

一个简单的方法是使用PowerShell ISE,打开脚本,运行和调用你的脚本,函数…

给出脚本的路径,即通过cmd进行路径设置: $ >。c: \ \ prog.ps1程序文件 运行PowerShell的入口点函数: 例如,$> add或entry_func或main

如果您使用的是PowerShell 2.0,请使用PowerShell.exe的-File参数从另一个环境(如cmd.exe)调用脚本。例如:

Powershell.exe -File C:\my_path\yada_yada\run_import_script.ps1

我刚刚找到了微软的方法,当我们右键单击ps1脚本,然后单击“使用PowerShell运行”:

"C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe" "-Command" "if((Get-ExecutionPolicy ) -ne 'AllSigned') { Set-ExecutionPolicy -Scope Process Bypass }; & 'C:\Users\USERNAME\Desktop\MYSCRIPT.ps1'"

类型:

powershell -executionpolicy bypass -File .\Test.ps1

注意:这里是测试。ps1为PowerShell脚本。