1

我正在尝试从我的 Powershell 脚本开始:

Import-Csv -Path $filecur -Delimiter ";" | Export-Csv -Path $filenext -Delimiter ";" -NoTypeInformation -Encoding Unicode -UseQuotes Never

但在执行 Powershell 脚本命令 promt 后显示下一个文本:

Export-Csv : A parameter cannot be found that matches parameter name 'UseQuotes'.
At C:\Users\vad\Desktop\QuatesDeleter.ps1:4 char:116
+ ... ilenext -Delimiter ";" -notypeinfo -Encoding Unicode -UseQuotes Never
+                                                          ~~~~~~~~~~
    + CategoryInfo          : InvalidArgument: (:) [Export-Csv], ParameterBindingException
    + FullyQualifiedErrorId : NamedParameterNotFound,Microsoft.PowerShell.Commands.ExportCsvCommand

我怎么解决这个问题?我的电脑在 Windows 7、SP1、X64 下运行,PowerShell 版本是 5.1.14409.1005。

在 Microsoft 文档中,我找不到有关此问题的一些信息

链接在这里

4

1 回答 1

3

必须安装 PowerShell 版本 7.x (PowerShell Core)。

于 2020-03-19T09:19:29.420 回答