How To Use Automator On Mac | Build Fast Mac Shortcuts

Automator on Mac lets you chain actions into workflows so you can run repetitive tasks with a single click or shortcut.

Automator sits quietly in your Applications folder, but it can save hours once you learn how to use it. The app strings small actions together into a workflow so your Mac can rename files, resize images, move documents, or run scripts while you sit back and watch the progress bar.

Shortcuts is now the star of automation on recent macOS versions, yet Automator still gives you deep access to Finder, classic apps, and long-standing actions that have been around for years. Learning how to use Automator on Mac turns boring clicks into a repeatable routine you can fire with a menu item, a keyboard shortcut, or a double-click.

What Automator On Mac Can Do

Automator is a visual tool for automation. You do not write code. You pick actions from a library, drop them into a workflow, and pass data from one step to the next. Automator talks to Finder, Safari, Calendar, Contacts, and many other apps, including some third-party tools that ship ready-made actions.

Here are common ways people use Automator on macOS:

  • Rename Batches Of Files — Clean up long camera file names, add dates, or apply a project prefix to hundreds of items at once.
  • Resize And Convert Images — Scale photos for the web, convert formats, or create thumbnails without opening an editor.
  • Move And Sort Documents — Watch a folder and move anything new into dated subfolders or archive locations.
  • Create Quick PDFs — Turn a pile of images or text files into a single PDF ready to send or store.
  • Run Scripts Safely — Wrap AppleScript or shell steps inside a simple Mac app that you can trigger when needed.

If you want the official reference for every action and concept, Apple maintains an Automator guide for macOS that pairs well with the practical steps in this article.

Using Automator On Mac For Everyday Tasks

Before you build anything fancy, you need a feel for the Automator window. The layout always follows the same pattern: library on the left, details in the middle, and your workflow on the right. Actions drop in from left to right so you can read them like a story.

Know The Main Workflow Types

When you choose File > New in Automator, you see a panel with different workflow types. Picking the right one tells macOS where your automation will show up.

Workflow Type Where It Appears Best Use
Workflow Runs inside Automator Testing and one-off tasks
Application Standalone .app you can double-click Tasks you start by hand from Finder or Dock
Quick Action Finder right-click menu, Services menu, Touch Bar Short tools tied to selected files or text
Folder Action Runs when items land in a specific folder Download sorting, auto-archiving, intake folders
Calendar Alarm Triggered from a Calendar event Scheduled clean-ups and reminders
Print Plugin Print dialog PDF drop-down Standard tasks when you print documents

Create A Simple Workflow Step By Step

This first workflow stays basic so you can see each part clearly.

  1. Open Automator — Use Spotlight, type Automator, then press Return.
  2. Create A New Document — Choose File > New, or press Command-N.
  3. Pick The Workflow Type — Select Workflow for testing, then click Choose.
  4. Browse The Library — In the Library column, pick a category such as Files & Folders, or type a name into the search box.
  5. Add An Action — Double-click an action, or drag it into the empty workflow area on the right.
  6. Chain More Steps — Keep adding actions so the output from one step feeds into the next.
  7. Run The Workflow — Click the Run button in the top-right corner to test your setup.
  8. Save Your Work — Choose File > Save and pick a name and location so you can reopen it later.

Automator shows a log at the bottom of the window as each step runs. If a step fails, the log line turns red and gives you a short message about what went wrong.

Building Your First Automator Workflow

A practical starter project helps the whole concept click. A classic example is a Quick Action that renames a group of files straight from Finder. You can adapt this pattern later for photos, downloads, and documents.

Example 1: Quick Action To Batch Rename Files

  1. Create A Quick Action — In Automator, choose File > New, select Quick Action, then click Choose.
  2. Set The Input — At the top of the workflow, set Workflow receives to “files or folders” and choose “Finder” from the menu on the right.
  3. Add Get Selected Finder Items — Search for “Get Selected Finder Items” and drag it into the workflow so the Quick Action always works on what you have highlighted.
  4. Add Rename Finder Items — Drag in “Rename Finder Items”. When macOS asks whether to add “Copy Finder Items” so you keep originals, pick the option that matches how safe you want to be.
  5. Choose The Rename Pattern — In the Rename action, pick an option such as “Add Date or Time” or “Make Sequential”, then adjust the fields to match your naming style.
  6. Test The Action — Click Run, pick some test files when asked, and watch the new names appear.
  7. Save And Name It — Choose File > Save and give the Quick Action a short, clear name like “Rename Photos With Date”.
  8. Use It In Finder — In Finder, select a batch of files, right-click, and look under the Quick Actions or Services menu for your new tool.

Once this Automator Quick Action works, you have a repeatable rename tool that lives in Finder and runs in a couple of clicks.

Example 2: Resize Images For The Web

This Quick Action resizes copies of your images to a standard width while leaving the originals alone.

  1. Create Another Quick Action — Make a new Quick Action and again set Workflow receives to “image files” in “Finder”.
  2. Copy Files To A Safe Place — Add “Copy Finder Items” and pick a folder such as a “Web Exports” folder on your desktop.
  3. Add Scale Images — Search for “Scale Images” and drag it after Copy Finder Items.
  4. Pick A Target Size — Set a pixel width such as 1600 so the images look sharp but not heavy.
  5. Run A Trial — Use Run on a few pictures and check the resized results inside your export folder.
  6. Save For Regular Use — Save the Quick Action with a short name like “Resize For Web”.

Apple also documents similar projects in its Automator help pages if you want another reference while you build your first tools.

Running Automator Workflows On Mac

Once you know how to use Automator on Mac to build a workflow, the next step is learning where and how to run it. The method changes slightly based on the workflow type you chose.

  • Run From Inside Automator — Open the workflow, click Run, and watch the log to confirm each step finished.
  • Run A Quick Action — Select files or text, right-click in Finder or an app, then choose your Quick Action from the context or Services menu.
  • Use A Keyboard Shortcut — Open System Settings > Keyboard > Keyboard Shortcuts, find your Quick Action under Services, and assign a key combo.
  • Launch An Application Workflow — Save the workflow as an Application and double-click the .app file, or keep it in the Dock.
  • Trigger A Calendar Alarm — When you save a Calendar Alarm, Calendar runs it at the scheduled time as long as your Mac is awake.

Some workflows need permission to control your Mac, send keystrokes, or access files in protected locations. When macOS asks for permission, approve only workflows you created or that come from trusted sources.

Power Features In Automator On Mac

Simple chains of two or three actions already pay off, but Automator also hides deeper tricks. These options help when you grow past basic renaming and image scaling.

Use Variables To Reuse Values

Variables in Automator hold values such as folder paths, dates, or text so you do not type the same thing more than once. Click the Variables button at the top of the window, drag a variable into your workflow, and Automator adds a “Get Value of Variable” action so later steps receive that value.

  • Store Common Folders — Keep a Downloads archive path or project root in a variable and reuse it across steps.
  • Reuse Text Snippets — Feed a block of text into a variable and pass it into rename actions or scripts.
  • Combine With User Input — Ask for text or files at run time and mix that data with stored variables.

Repeat Actions With The Loop Step

The Loop action repeats part of a workflow as many times as you tell it to. Place Loop near the end of a group of actions, set how long or how many times it should repeat, and Automator keeps cycling until that limit is reached.

  • Process Large Folders In Batches — Run through a portion of files at a time instead of locking your Mac for one huge pass.
  • Check A Folder Regularly — Pair Loop with a folder step so actions run again while new items appear.

Extend Automator With Scripts

When the built-in actions do not cover a task, you can drop in “Run Shell Script” or “Run AppleScript” actions. These steps let you call command-line tools or AppleScript code while still keeping a friendly visual wrapper around your workflow.

  • Call Command-Line Tools — Use shell scripts for tasks such as git commands, video conversions, or text processing.
  • Drive Scriptable Apps — Reach into scriptable apps with AppleScript while Automator handles the surrounding steps.

Automator And The Shortcuts App On Mac

On modern versions of macOS, Automator lives alongside the Shortcuts app. Shortcuts is great for cross-device actions and quick sharing, while Automator still shines with older Mac apps and long-standing actions. You do not have to pick only one; Shortcuts can import many Automator workflows directly.

Import An Automator Workflow Into Shortcuts

  1. Save Your Workflow — In Automator, save the workflow so you have a .workflow file in Finder.
  2. Open Shortcuts — Launch the Shortcuts app from Applications or Launchpad.
  3. Drag The Workflow Into Shortcuts — Drag the .workflow file onto the Shortcuts window and drop it.
  4. Review The New Shortcut — Shortcuts converts most actions and shows you the new shortcut ready to edit or run.

Apple documents this handoff between apps in an Automator to Shortcuts article, which is worth a quick read if you plan to move long-term workflows into Shortcuts over time.

Troubleshooting Automator On Mac

Even simple workflows can break when permissions change, files move, or apps update. A short checklist often solves the most frequent Automator issues.

  • Check The Log — When a workflow stops, open the Log area at the bottom of Automator and look for red error lines near the failing action.
  • Test Actions One By One — Disable later actions, run the workflow on a small sample, and add steps back until you find the part that fails.
  • Confirm Input Types — Make sure each action receives the kind of data it expects, such as files, text, or images.
  • Review Permissions — In System Settings > Privacy & Security, check Automation and Accessibility entries for Automator and any helper apps.
  • Try A New Copy — If an exported Automator app refuses to run, create a fresh copy of the app from the original workflow and test again.

For stubborn errors such as blocked keystrokes or missing permissions, Mac forums and Apple discussions often share working examples and step lists you can follow. Once your workflow runs smoothly again, save a backup copy so you can restore it later if you make changes that break it.

Make Automator Part Of Your Regular Mac Use

Learning how to use Automator on Mac turns chores into repeatable steps that never change or get bored. Start with one tiny annoyance on your Mac, such as renaming exports or resizing screenshots, and turn it into a Quick Action. Each time that workflow runs, you reclaim a little more time and attention for work that actually needs you.