Automation Software?

Syringer

Lifer
Aug 2, 2001
19,333
2
71
What we need is a solution to automate a lot of tasks which include:

-d/ling files from HTTP pages
-running MS Access + Excel files
-deleting/renaming certain files

Among others, and need them to be done on a daily basis. I've tried Automize 8 which worked for a while but the interface is terrible. Does anyone have any alternatives?
 

Miramonti

Lifer
Aug 26, 2000
28,653
100
106
Well, the best easy to use yet highly capable software is probably Automate, but its priced these days ridiculously high, mainly for corporate users. I got my licenses a while ago when it was cheaper and I've become completely dependent on it to do a ton of various things during work.
 

Ken g6

Programming Moderator, Elite Member
Moderator
Dec 11, 1999
16,609
4,530
75
-deleting/renaming certain files
This may be the toughest. What are the rules for the deletion/renaming? Personally, I'd just use Perl for this. To delete, use "unlink".

-d/ling files from HTTP pages
You can use Perl for this (LWP::Simple). Or you can use WGet.

-running MS Access + Excel files
I'd use VBA for stuff within Microsoft products. That's what they put it there for. :)

Anything else you need automated?
 

Zorba

Lifer
Oct 22, 1999
15,613
11,255
136
You could use VBA at least the last two. I am pretty sure that you could use VBA for downloading the files also.

File renaming/deletion is very easy in VBA.