As macOS Tahoe will be release on 15 September 2025, I installed on my Macs with the latest Sequoia the profile to defer Tahoe for 90 days:
Defer90.mobileconfig
along with a profile to prevent automatic download and installation of updates:
SoftwareUpdate.mobileconfig
Profiles created with the free App Store app iMazing Profile Editor https://apps.apple.com/app/imazing-profile-editor/id1487860882
How to install profiles video https://forums.macrumors.com/thread...ore-sequoia-for-90-days.2436999/post-33491789 Note: On Sequoia, profiles are now in System Settings- General - Device Management
Change Device Management settings on Mac https://support.apple.com/guide/mac-help/change-device-management-settings-mh35474/mac
As Apple has depreciated enforcedSoftwareUpdateMajorOSDeferredInstallDelay and SoftwareUpdate, it is unclear at the moment if the profiles will work and prevent Tahoe for being shown in Software Update on Macs running Sequoia.
enforcedSoftwareUpdateMajorOSDeferredInstallDelay
https://developer.apple.com/documentation/devicemanagement/restrictions
AutomaticallyInstallMacOSUpdates
https://developer.apple.com/documentation/devicemanagement/restrictions
Apple's related documentation:
Manage software updates in your organization https://developer.apple.com/videos/play/wwdc2021/10129/
Installing and enforcing software updates for Apple devices https://support.apple.com/guide/dep...d-enforcing-software-updates-depd30715cbb/web
Last year's thread "Ignore Sequoia for 90 days" https://forums.macrumors.com/threads/no-longer-possible-ignore-sequoia-for-90-days.2436999/
iMazing configuration of profile to defer for 90 days

iMazing configuration of profile for Software Updates

Defer90.mobileconfig
Code:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>PayloadContent</key>
<array>
<dict>
<key>PayloadDisplayName</key>
<string>Restrictions</string>
<key>PayloadIdentifier</key>
<string>com.apple.applicationaccess.EBD7C59B-61CE-4602-B287-2779E580807D</string>
<key>PayloadType</key>
<string>com.apple.applicationaccess</string>
<key>PayloadUUID</key>
<string>EBD7C59B-61CE-4602-B287-2779E580807D</string>
<key>PayloadVersion</key>
<integer>1</integer>
<key>enforcedSoftwareUpdateMajorOSDeferredInstallDelay</key>
<integer>90</integer>
<key>forceDelayedMajorSoftwareUpdates</key>
<true/>
</dict>
</array>
<key>PayloadDisplayName</key>
<string>Defer90</string>
<key>PayloadIdentifier</key>
<string>Mac.880DF8DC-ECB6-4FA2-A00B-BA671494C830</string>
<key>PayloadScope</key>
<string>System</string>
<key>PayloadType</key>
<string>Configuration</string>
<key>PayloadUUID</key>
<string>880DF8DC-ECB6-4FA2-A00B-BA671494C830</string>
<key>PayloadVersion</key>
<integer>1</integer>
<key>TargetDeviceType</key>
<integer>5</integer>
</dict>
</plist>
along with a profile to prevent automatic download and installation of updates:
SoftwareUpdate.mobileconfig
Code:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>PayloadContent</key>
<array>
<dict>
<key>AutomaticDownload</key>
<false/>
<key>AutomaticallyInstallAppUpdates</key>
<false/>
<key>AutomaticallyInstallMacOSUpdates</key>
<false/>
<key>PayloadDisplayName</key>
<string>Software Update</string>
<key>PayloadIdentifier</key>
<string>com.apple.SoftwareUpdate.ADF49245-EA04-4883-A342-0FC43F30C9D2</string>
<key>PayloadType</key>
<string>com.apple.SoftwareUpdate</string>
<key>PayloadUUID</key>
<string>ADF49245-EA04-4883-A342-0FC43F30C9D2</string>
<key>PayloadVersion</key>
<integer>1</integer>
</dict>
</array>
<key>PayloadDisplayName</key>
<string>SoftwareUpdate</string>
<key>PayloadIdentifier</key>
<string>Mac.1AAA312C-7658-4823-81F6-A49A659A3F74</string>
<key>PayloadScope</key>
<string>System</string>
<key>PayloadType</key>
<string>Configuration</string>
<key>PayloadUUID</key>
<string>1AAA312C-7658-4823-81F6-A49A659A3F74</string>
<key>PayloadVersion</key>
<integer>1</integer>
<key>TargetDeviceType</key>
<integer>5</integer>
</dict>
</plist>
Profiles created with the free App Store app iMazing Profile Editor https://apps.apple.com/app/imazing-profile-editor/id1487860882
How to install profiles video https://forums.macrumors.com/thread...ore-sequoia-for-90-days.2436999/post-33491789 Note: On Sequoia, profiles are now in System Settings- General - Device Management
Change Device Management settings on Mac https://support.apple.com/guide/mac-help/change-device-management-settings-mh35474/mac
As Apple has depreciated enforcedSoftwareUpdateMajorOSDeferredInstallDelay and SoftwareUpdate, it is unclear at the moment if the profiles will work and prevent Tahoe for being shown in Software Update on Macs running Sequoia.
enforcedSoftwareUpdateMajorOSDeferredInstallDelay
https://developer.apple.com/documentation/devicemanagement/restrictions
AutomaticallyInstallMacOSUpdates
https://developer.apple.com/documentation/devicemanagement/restrictions
Apple's related documentation:
Manage software updates in your organization https://developer.apple.com/videos/play/wwdc2021/10129/
Installing and enforcing software updates for Apple devices https://support.apple.com/guide/dep...d-enforcing-software-updates-depd30715cbb/web
Last year's thread "Ignore Sequoia for 90 days" https://forums.macrumors.com/threads/no-longer-possible-ignore-sequoia-for-90-days.2436999/
iMazing configuration of profile to defer for 90 days

iMazing configuration of profile for Software Updates
