You upgraded to macOS 27 Golden Gate, and suddenly your screenshot app shows black images, your window manager stopped moving windows, your menu bar tool asks for Screen Recording, and your DisplayLink dock went dark. Or an app keeps asking for the same permission no matter how many times you click Allow.

Some of this is macOS working as designed. Some of it is a permission record that no longer matches the app. The two need different fixes, so it's worth knowing which one you're dealing with.

How Mac permissions work, briefly

macOS stores your privacy decisions in a database managed by a system called TCC (Transparency, Consent, and Control). It covers categories like Screen Recording, Accessibility, Full Disk Access, Camera, Microphone, Input Monitoring, Automation, and Local Network.

Three details explain most permission frustration:

  1. Permissions are tied to the app's identity: its bundle identifier and code signature, and in some cases its location. If an app is updated with a different signature, moved, or duplicated, macOS may treat it as a new app.
  2. A running app doesn't pick up a new permission. macOS evaluates access for a process when it starts. Grant a permission while the app is open, and it keeps behaving as if it has none until you quit it completely and reopen it.
  3. Some permissions expire on purpose. Since macOS Sequoia, apps that record the screen must be re-confirmed periodically.

"It asks every month": that's by design

Since macOS Sequoia, apps with Screen Recording access get a recurring prompt asking you to confirm they should keep it. In Sequoia's early betas it was weekly; Apple changed it to monthly before release after criticism.

The reasoning is that Screen Recording access lets an app see everything on your display, including password managers, private messages, and confidential documents. Periodic confirmation removes access from tools you stopped using years ago.

What you can do:

  • Nothing supported will make it permanent for personal Macs. Workarounds that circulate disable parts of the privacy system for every app, which is a much worse trade than a monthly click.
  • On managed Macs, organizations can pre-approve certain permissions through device management. Golden Gate adds a consolidated consent prompt that lets IT bundle an app's default privacy permissions into a single approval.
  • Use the prompt as an audit. Open System Settings > Privacy & Security, go to the screen recording category, and remove anything you don't recognize or no longer use.

If an app asks far more often than monthly, that's not the design. It usually means the app is being re-signed frequently, isn't properly notarized, or has a stale permission record. Keep reading.

After the upgrade: apps that need permission again

A major upgrade can invalidate some permissions, and apps that updated for macOS 27 may have new signatures or new helper processes that need their own approval. Launch-week examples:

  • DisplayLink Manager may need Screen Recording approved again before docks drive monitors.
  • Menu bar managers rebuilt for Golden Gate check Screen Recording differently, and may prompt again.
  • Window managers, mouse utilities, and automation tools often need Accessibility re-enabled.
  • Video call and screen sharing apps may need Screen Recording or Camera re-approved.

The clean way to re-grant:

  1. Quit the app completely with Command-Q. For apps that keep running in the menu bar, quit from their menu. Check Activity Monitor that no process for the app remains.
  2. Open System Settings > Privacy & Security and the relevant category.
  3. If the app is listed and switched on but doesn't work, switch it off, then on again.
  4. If it isn't listed, click the add button and select the app from Applications.
  5. Reopen the app.

Step 1 is the one people skip, and it's why "I allowed it and nothing changed" is so common.

"I click Allow and it asks again": reset the stale record

When toggling doesn't help, reset the permission for that app so macOS forgets the old record and asks fresh.

Find the app's bundle identifier:

osascript -e 'id of app "AppName"'

Replace AppName with the app's name as it appears in Applications.

Reset one permission for one app:

tccutil reset ScreenCapture com.example.appname

Common service names for tccutil:

Permission Service name
Screen Recording ScreenCapture
Accessibility Accessibility
Full Disk Access SystemPolicyAllFiles
Camera Camera
Microphone Microphone
Input Monitoring ListenEvent
Automation AppleEvents

Then restart the Mac, open the app, and approve the prompt when it appears.

Resetting a whole category (every app loses that permission and asks again):

tccutil reset Accessibility

Resetting everything (tccutil reset All) is a last resort. It doesn't touch your files or apps, but every app will ask for every permission again, which on a well-configured Mac means an afternoon of prompts.

Other causes of repeated prompts

The app isn't in Applications. Running apps from Downloads, a disk image, or a duplicate copy confuses permission records. Move the app to Applications, delete other copies, and grant permission again.

Electron and multi-process apps. Some apps use separate helper processes that each need access. If an app still fails after approval, check Activity Monitor for helper processes with the app's name and whether they appear in the permission list.

Screen Time restrictions. Content & Privacy restrictions in System Settings > Screen Time can block camera, microphone, and other access regardless of Privacy settings.

Device management. On a work Mac, a management profile may enforce permissions. Golden Gate lets users turn off Accessibility access that was granted through management, and shows a notification for apps granted it that way, so settings can change after the upgrade. Ask IT before resetting anything.

An outdated app version. Apps built before the new release may re-ask indefinitely until updated. Update first, then troubleshoot.

Keep permissions tidy

  • Grant permissions only when an app needs them, and only to apps you trust.
  • Review Privacy & Security every few months, especially Screen Recording, Accessibility, and Full Disk Access.
  • Keep apps in Applications, and don't rename or duplicate app bundles.
  • Uninstall properly. Removing an app doesn't always remove its permission entries; clear stale ones with the switch or tccutil.

The short version

  • Monthly Screen Recording prompts are by design since Sequoia. Use them to audit, not fight them.
  • After upgrading, some apps need permissions granted again. Quit the app fully before and after granting.
  • If a prompt keeps returning, reset that app's record with tccutil reset, restart, and approve fresh.
  • Move apps to Applications, remove duplicates, and update to macOS 27 versions before deeper troubleshooting.