Skip to content

Instantly share code, notes, and snippets.

@Terabyte1385
Last active February 28, 2026 00:01
Show Gist options
  • Select an option

  • Save Terabyte1385/dd9af4ed6d15e3f6a0c598d7a96895f0 to your computer and use it in GitHub Desktop.

Select an option

Save Terabyte1385/dd9af4ed6d15e3f6a0c598d7a96895f0 to your computer and use it in GitHub Desktop.
Disable Apple Creator Studio update popup in iWork (Keynote, Pages, Numbers)
defaults write com.apple.iWork.Pages TSADisableUpdateNotifications -bool yes
defaults write com.apple.iWork.Keynote TSADisableUpdateNotifications -bool yes
defaults write com.apple.iWork.Numbers TSADisableUpdateNotifications -bool yes
@Terabyte1385
Copy link
Author

Or, in a one-liner:

defaults write com.apple.iWork.Pages TSADisableUpdateNotifications -bool yes; defaults write com.apple.iWork.Keynote TSADisableUpdateNotifications -bool yes; defaults write com.apple.iWork.Numbers TSADisableUpdateNotifications -bool yes

@Terabyte1385
Copy link
Author

Terabyte1385 commented Feb 6, 2026

If you are seeing one of the following pop-ups when opening Keynote, Pages or Numbers 14:

New Version of Keynote Available

This version will no longer be updated. To get the latest features, download Keynote 15 or later from the App Store.

New Version of Pages Available

This version will no longer be updated. To get the latest features, download Pages 15 or later from the App Store.

New Version of Numbers Available

This version will no longer be updated. To get the latest features, download Numbers 15 or later from the App Store.

... and wanna get rid of it, use this script.

This sets the value of a key Apple uses in these 3 iWork apps to explicitly not let you know the new versions are available to true. Therefore, no more alerts.

It's unclear what Apple intended these keys be used for, but they're available to use via these commands.

This is especially useful if you don't want the Apple Creator Studio versions of iWork, which are riddled with the subscription and so much useless bloat.

(yes, I wrote this entire thing to have this page show up higher on Google - hopefully)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment