Topic
Currently, there are no ACs that can handle zip files directly. However, there is a workaround to utilize Powershell to handle zip files.
InstructionsÂ
You can use the wizard to create individual steps and extract or archive zip files using Powershell with the following commands:
Compress-Archive -LiteralPath <PathToFiles> -DestinationPath <PathToDestination>
Expand-Archive -LiteralPath <PathToZipFile> -DestinationPath <PathToDestination>
