Azure devops powershell task issue

1.5k Views Asked by At

Could someone help me with how to zip multiple files using powershell task? I am using a windows vm ..hence couldn't use zip command.

I have multiple files which need to be zipped to a particular folder with different name.

I tried to do as below, but I'm getting an error on the second line.

Error:

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


Finishing: PowerShell Script

pipeline:

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
1

There are 1 best solutions below

0
On

It worked..I just had to add a semicolon in between the lines.