cancel
Showing results for 
Search instead for 
Did you mean: 

How to unzip password protected word document

Anonymous
Not applicable
Hi   Can any one tell me how to unzip password protected word documents. I have a zip folder. it contains word document which is password protected. How to unzip and extract the files using Blueprism. Thanks in advance
3 REPLIES 3

Denis__Dennehy
Level 15
I guess you could create your own code stage VBO that does this, or you could use command line (via the Start Process action) - I think the windows compact command would do what you want?

SteveBoomer
Level 5
We have used the windows command line to do something very similar. I'd suggest that's a good place to start. One word of caution though. It would be advisable to change the startup batchfile on your runtime resource to include - Start ""1"" before the path to the executable and Exit at the end. This removes the CMD window and stops issues with BP discovering the wrong CMD window. Here is an example -  Start ""1"" ""C:\Program Files\Blue Prism Limited\Blue Prism Automate\Automate.exe"" /public /resourcepc /port 8181 /dbconname ""Connection Name"" Exit 

Anonymous
Not applicable
Thank you so much Denis__Dennehy and SteveBoomer