What you will achieve
Create Finder Quick Actions with Automator for repetitive file tasks without full apps.
Automator Quick Actions appear in Finder context menus for one-click workflows — resize images, rename batches, run scripts. They bridge GUI automation without full Shortcuts programming. Permissions for file access must be granted on first run per workflow.
1) New Quick Action workflow
- Open Automator → New Document → Quick Action.
- Set “Workflow receives” to files or folders in Finder.
- Add actions from library — e.g. Rename, Resize Images, Run Shell Script.
2) Example: resize images
Add Scale Images → set width 1920 → Save as “Resize for web”. Appears in Finder right-click → Quick Actions.
3) Shell script action
for f in "$@"
do
/usr/bin/tag -a "Processed" "$f"
done
Pass input as arguments; test on copies first.
4) Shortcuts migration
macOS Ventura+ integrates Shortcuts — many Quick Actions can move to Shortcuts app for iCloud sync across Macs.
5) Permissions
Scripts touching Desktop or Downloads need Privacy → Files & Folders or Full Disk Access for Automator/Shortcuts.
6) Finder Sync vs Quick Action
Quick Actions appear in right-click; Folder Actions run automatically on add to folder — pick correct Automator document type. Mixing them confuses users who expect manual trigger.
7) Sign with Developer ID
Quick Actions containing shell scripts may need Privacy permissions on each Mac — document steps for coworkers if sharing workflow file.
8) Example PDF combine
PDFs → New PDF from images → Save to Desktop — save as service, assign keyboard shortcut in System Settings → Keyboard → Shortcuts → Services.
Verify
Quick Action appears in Finder context menu; runs on sample files without errors.
Additional troubleshooting notes
If steps above do not resolve the issue on the first attempt, reboot once, confirm System Settings → General → Software Update is current, and retry with a second administrator account to rule out profile or keychain corruption in your daily user. Document exact error text from Console.app with timestamp — vague “it still fails” without logs wastes support time. On Apple Silicon, re-test after full shutdown (not just restart) because firmware and Thunderbolt controllers reset only on cold boot. Intel Macs should repeat test in Safe Mode to bypass third-party login items. Before erase or keychain reset, verify Time Machine or clone backup completed — batch 3 guides assume Monterey/Ventura/Sonoma/Sequoia paths in System Settings; search Spotlight for renamed panes if your macOS version labels differ slightly.