I am a beginner of UiPath. I would like to work out a workflow to protect different PDF(100+ PDF)’s indicated in a folder with different passwords indicated in a Excel file.
Can anyone help?
Thanks.
I am a beginner of UiPath. I would like to work out a workflow to protect different PDF(100+ PDF)’s indicated in a folder with different passwords indicated in a Excel file.
Can anyone help?
Thanks.
Install
UiPath.PDF.Activities package
Steps to Create the Workflow
Use Worbook read range activity to read your excel and generate DataTable
for each file in folder activity to go through each pdf (in filter fill with “*.pdf” and create a index variable
Use the Protect PDF Document activity from UiPath.PDF.Activities to apply the password to the PDF file passing you datatable password cell like this
dt_Passwords.Rows(indexVariable).item(“column_name”).ToString
Hi
Thanks in advance.
Do you know why I can’t install the UiPath.PDF.Activities package? Any website to download it instead? Thanks.
Click in All Packages and type UiPath.PDF and it will appear
Cheers
Install Pdf packages from manage package
dtPasswords
)dtPasswords
)pdfPath
= row("PDFPath").ToString
(assuming your Excel has a column named “PDFPath” for PDF file locations)pdfPassword
= row("Password").ToString
(assuming there’s a “Password” column for passwords)pdfPath
pdfPassword
Hope this helps
Let me try.
Thanks in advance.
from your image, the studio encountered a error for one feed
Are you connected in a enterprise network or using VPN?
And could you share a screenshot for “Settings” showing Studio feeds
Hi
Can I know what should I input regarding the screencap below?
And for item 2, can I know if the PDFPath can be a folder path instead of a pdf file path? Thanks.