ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login

    what is automation? How does it work?

    IT Discussion
    wrcombs automation how-to
    5
    15
    1.1k
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • DashrenderD
      Dashrender
      last edited by

      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).

      WrCombsW 1 Reply Last reply Reply Quote 0
      • DashrenderD
        Dashrender
        last edited by

        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.

        1 Reply Last reply Reply Quote 0
        • WrCombsW
          WrCombs @Dashrender
          last edited by

          @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.

          scottalanmillerS 3 Replies Last reply Reply Quote 0
          • scottalanmillerS
            scottalanmiller @WrCombs
            last edited by

            @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.

            WrCombsW DashrenderD 2 Replies Last reply Reply Quote 2
            • scottalanmillerS
              scottalanmiller @WrCombs
              last edited by

              @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.)

              WrCombsW 1 Reply Last reply Reply Quote 0
              • scottalanmillerS
                scottalanmiller @WrCombs
                last edited by

                @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.

                1 Reply Last reply Reply Quote 0
                • WrCombsW
                  WrCombs @scottalanmiller
                  last edited by

                  @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.

                  1 Reply Last reply Reply Quote 0
                  • 1
                    1337
                    last edited by 1337

                    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.

                    1 Reply Last reply Reply Quote 0
                    • WrCombsW
                      WrCombs @scottalanmiller
                      last edited by

                      @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.

                      DashrenderD 1 Reply Last reply Reply Quote 0
                      • DashrenderD
                        Dashrender @scottalanmiller
                        last edited by

                        @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.

                        1 Reply Last reply Reply Quote 0
                        • DashrenderD
                          Dashrender @WrCombs
                          last edited by

                          @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.

                          1 Reply Last reply Reply Quote 0
                          • 1 / 1
                          • First post
                            Last post