Skip to main content
Nintex Community Menu Bar
Knowledge Base

Using Powershell to handle .zip files in Kryon/Nintex RPA

  • June 5, 2024
  • 0 replies
  • 50 views

Forum|alt.badge.img

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>