Create Automate Task on Windows 10 with download and search in PDF

0

I want to create an Automate Task to hourly download a PDF from a specific URL and then search for certain text like "6256896" and then if there was the text inside the PDF,notifies me for example with an email.

Is it possible to do this without programming? and If yes How?

DSaad

Posted 2015-09-17T23:27:41.027

Reputation: 337

Only if you have a tool that can perform a search automatically. Downloading from a fixed URL can be accomplished with any number of tools, but I don't know of a good one to search a PDF with a simple command. Does it have to be PDF? This would be much easier with text/HTML. – CBHacking – 2015-09-17T23:31:11.460

@CBHacking I don't provide the PDF file and I don't have another Option. – DSaad – 2015-09-17T23:34:05.880

That's unfortunate. I don't know of a tool that can easily search a PDF and return a simple result code (the way findstr or grep can). Maybe somebody else does. – CBHacking – 2015-09-17T23:36:07.620

@CBHacking There is software but it's so expensive;

http://www.powergrep.com/

– DSaad – 2015-09-17T23:36:15.013

Pdfgrep is a tool to search text in PDF files. It works similar to grep. A windows version can be found at http://soft.rubypdf.com/software/pdfgrep-windows-version. It costs 10$.

– DavidPostill – 2015-09-18T09:13:17.163

No answers