Create pack and unpack batch files

<< Click to Display Table of Contents >>

Navigation:  White Papers > Workflow with Vault and PlantTools >

Create pack and unpack batch files

Previous pageReturn to chapter overviewNext page

Next we need two batch files to pack and unpack the PlantTools configuration files.

Let's call the packing batch file PT_Pack.bat. You can use a different file name.

With the following lines the ACPlantTools folder with all its files will be compressed into one ACPlantTools.zip file.

WorkFlow with Vault and PlantTools 015

 

@echo off

if exist "ACPlantTools.zip" del "ACPlantTools.zip"

powershell -command "Compress-Archive -Path '..\ACPlantTools\*' -DestinationPath 'ACPlantTools.zip'"

If you run the PT_Pack.bat from the Related Files folder you get a command prompt dialog and the compression will be executed.

When all files are compressed into the ACPLantTools.zip file the command prompt closes.

We then see the zip file in the Related Files folder.

WorkFlow with Vault and PlantTools 017

Last we need an unpack batch file to unpack the zip file to get the PlantTools configuration files.

The first part deletes any existing configuration files and folders and the last line expands the files from the ACPlantTools.zip file again.

WorkFlow with Vault and PlantTools 019

 

@echo off

del "..\ACPlantTools\*.*" /s /q > NUL

rmdir "..\ACPlantTools" /s /q > NUL

powershell -command "Expand-Archive -Path 'ACPlantTools.zip' -DestinationPath '..\ACPlantTools' -Force"

Next Chapter: Copy and Link files to project and check in (Admin)