Windows PowerShell导出Csv无法使用UseQuotes参数

Windows PowerShell导出Csv无法使用UseQuotes参数,windows,windows-7,powershell-5.0,export-csv,Windows,Windows 7,Powershell 5.0,Export Csv,我正在尝试从我的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 matche

我正在尝试从我的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文档中,我找不到有关此问题的一些信息


有必要安装PowerShell 7.x版PowerShell核心