命令提示符中的 Powershell 脚本 运行

Powershell script run in Command Prompt

我想知道如何将 Powershell 脚本 运行 成功实施到命令行中?

实际上,我尝试 运行 它并显示如下错误消息:

Basic : The term 'Basic' 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.

任何人都可以帮助我吗?谢谢

Powershell 脚本

Invoke-WebRequest -Uri "http://XX.XX.XX.XXX/123.cgi" -Headers @{ "Authorization"="Basic WjVfb3AljjFkjZluOm7hAE9pbjQx"} -OutFile '123.csv'

猜猜你的问题到底是什么,也许你最喜欢的问题就足够了:

%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe -NoProfile -NoLogo -Command "Invoke-WebRequest -Uri \"http://XX.XX.XX.XXX/123.cgi\" -Headers @{ \"Authorization\" = \"Basic WjVfb3AljjFkjZluOm7hAE9pbjQx\" } -OutFile \"123.csv"\"
%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe -NoProfile -NoLogo -Command "Invoke-WebRequest -Uri 'http://XX.XX.XX.XXX/123.cgi' -Headers @{ 'Authorization' = 'Basic WjVfb3AljjFkjZluOm7hAE9pbjQx' } -OutFile '123.csv'"

请注意,这和您的一样,没有为输出的 CSV 文件提供完整路径,因此将使用您当前的工作目录。