Skip to content

Instantly share code, notes, and snippets.

@progzone122
Created July 20, 2026 02:53
Show Gist options
  • Select an option

  • Save progzone122/cb820749dc670ab4b160691ab4e87f3c to your computer and use it in GitHub Desktop.

Select an option

Save progzone122/cb820749dc670ab4b160691ab4e87f3c to your computer and use it in GitHub Desktop.
MacOS disable AI and Siri
# Credit: https://www.reddit.com/r/MacOSBeta/comments/1u9jg61/comment/osgrs6u/
# Target the core enterprise application restriction domain
DOMAIN="com.apple.applicationaccess"
# Kill localized writing, editing, and summary engines
defaults write $DOMAIN allowWritingTools -bool false
defaults write $DOMAIN allowMailSummary -bool false
defaults write $DOMAIN allowNotesTranscriptionSummary -bool false
# Kill the localized creative generation pipelines
defaults write $DOMAIN allowGenmoji -bool false
defaults write $DOMAIN allowImagePlayground -bool false
defaults write $DOMAIN allowImageWand -bool false
# Kill contextual integration features and background system captures
defaults write $DOMAIN allowCallRecording -bool false
defaults write $DOMAIN allowAssistant -bool false
# Terminate external AI hooks and sign-ins (like ChatGPT)
defaults write $DOMAIN allowExternalIntelligenceIntegrations -bool false
defaults write $DOMAIN allowExternalIntelligenceIntegrationsSignIn -bool false
# Force the system configuration cache to reload changes
killall cfprefsd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment