what is automation? How does it work?
-
Someone will still have to make the replacement files. Let's say your going to have a daily special that is the same every monday, and another every Tuesday, etc... you'll have 5 specials files
spec-m
spec-t
spec-w
...you could have a script that copies the above file over the top of the file that's part of the POS to have the information. You'll be super in luck if it's just a whole file like this to replace.
If you have to inject code into an existing file, it will take more work, but can still likely be done. -
@Dashrender said in what is automation? How does it work?:
There are multiple ways to get automation. Simplest might be to write a script that copies files and execute that script using Task Scheduler (a windows service that allows you to execute tasks based upon a specific schedule).
Thanks - Got more information now:
I need to be able to automatically send a folder to compressed zip.
Then automate the import and publish.The more information I get the more confused I become about all of this.
-
@WrCombs said in what is automation? How does it work?:
@Dashrender said in what is automation? How does it work?:
There are multiple ways to get automation. Simplest might be to write a script that copies files and execute that script using Task Scheduler (a windows service that allows you to execute tasks based upon a specific schedule).
Thanks - Got more information now:
I need to be able to automatically send a folder to compressed zip.
Then automate the import and publish.The more information I get the more confused I become about all of this.
The first step to automating a task is defining how you would do it manually. Start there. That doesn't mean the automation will just copy that, but it helps to understand what you are doing today, before you figure out how to do it automatically tomorrow.
-
@WrCombs said in what is automation? How does it work?:
I need to be able to automatically send a folder to compressed zip.
Is it already zipped? If not, you need to automate zipping it too (very easy.)
-
@WrCombs said in what is automation? How does it work?:
The more information I get the more confused I become about all of this.
I think it's a few steps, but sounds like a pretty basic task. Can you find who does this today and have them show you the process? After that, I bet that this is very easy.
-
@scottalanmiller said in what is automation? How does it work?:
@WrCombs said in what is automation? How does it work?:
I need to be able to automatically send a folder to compressed zip.
Is it already zipped? If not, you need to automate zipping it too (very easy.)
It would not be zipped already.
-
To automate something is just to make it happen automatically instead of manually.
As @scottalanmiller said, just do it manually first and then use that as a starting point.The real difference between manual and automated is how you handle problems, errors etc.
I suggest making a flow chart for this to visualize it. -
@scottalanmiller said in what is automation? How does it work?:
@WrCombs said in what is automation? How does it work?:
@Dashrender said in what is automation? How does it work?:
There are multiple ways to get automation. Simplest might be to write a script that copies files and execute that script using Task Scheduler (a windows service that allows you to execute tasks based upon a specific schedule).
Thanks - Got more information now:
I need to be able to automatically send a folder to compressed zip.
Then automate the import and publish.The more information I get the more confused I become about all of this.
The first step to automating a task is defining how you would do it manually. Start there. That doesn't mean the automation will just copy that, but it helps to understand what you are doing today, before you figure out how to do it automatically tomorrow.
Do it here?
I mean, That's fine with me. -
@scottalanmiller said in what is automation? How does it work?:
@WrCombs said in what is automation? How does it work?:
@Dashrender said in what is automation? How does it work?:
There are multiple ways to get automation. Simplest might be to write a script that copies files and execute that script using Task Scheduler (a windows service that allows you to execute tasks based upon a specific schedule).
Thanks - Got more information now:
I need to be able to automatically send a folder to compressed zip.
Then automate the import and publish.The more information I get the more confused I become about all of this.
The first step to automating a task is defining how you would do it manually. Start there. That doesn't mean the automation will just copy that, but it helps to understand what you are doing today, before you figure out how to do it automatically tomorrow.
Ug - I was thinking exactly this, but obviously couldn't get my fingers to type it out.
As Scott said - get the full manual process first. This is tedious, but you need every tiny little step.
-
@WrCombs said in what is automation? How does it work?:
@scottalanmiller said in what is automation? How does it work?:
@WrCombs said in what is automation? How does it work?:
@Dashrender said in what is automation? How does it work?:
There are multiple ways to get automation. Simplest might be to write a script that copies files and execute that script using Task Scheduler (a windows service that allows you to execute tasks based upon a specific schedule).
Thanks - Got more information now:
I need to be able to automatically send a folder to compressed zip.
Then automate the import and publish.The more information I get the more confused I become about all of this.
The first step to automating a task is defining how you would do it manually. Start there. That doesn't mean the automation will just copy that, but it helps to understand what you are doing today, before you figure out how to do it automatically tomorrow.
Do it here?
I mean, That's fine with me.I would make a new thread about that specific task, and you could toss a link in here to that.