0

有人可以帮助我如何使用 powershell 任务压缩多个文件吗?我正在使用 Windows vm ..因此无法使用 zip 命令。

我有多个文件需要压缩到具有不同名称的特定文件夹中。

我尝试按以下方式进行操作,但在第二行出现错误。

错误:

        + CategoryInfo          : InvalidArgument: (:) [Get-ChildItem], ParentContainsErrorRecordException
        + FullyQualifiedErrorId : NamedParameterNotFound,Microsoft.PowerShell.Commands.GetChildItemCommand
##[error]PowerShell exited with code '1'.


Finishing: PowerShell Script

管道:

Compress-Archive -Path 'FR1PHPPRDAPP1V\*' -DestinationPath 'Output\APP1V.zip'
Compress-Archive -Path 'FR1PHPPRDAPP4V\*' -DestinationPath 'Output\APP4V.zip'
Compress-Archive -Path 'FR1PHPPRDAPP5V\*' -DestinationPath 'Output\APP5V.zip
Compress-Archive -Path 'FR1PHPPRDSRE1V\*' -DestinationPath 'Output\SRE1V.zip
Compress-Archive -Path 'FR1PHPPRDAPP7V\*' -DestinationPath 'Output\APP7V.zip
4

1 回答 1

0

它起作用了..我只需要在两行之间添加一个分号。

于 2020-11-26T13:35:45.473 回答