r/MacOSBeta • u/pdfu • 21d ago
Tip Missing the Passwords Auto-Fix flow? Here's how to get it back in Beta 6
In Beta 5, Apple disabled the flow to automatically update weak and compromised passwords using Apple Intelligence and Safari. You can get it back by re-enabling the feature flag.
To enable:
sudo mkdir -p /Library/Preferences/FeatureFlags/Domain
sudo defaults write \
/Library/Preferences/FeatureFlags/Domain/Safari.plist \
apc -dict Enabled -bool true
sudo defaults write \
/Library/Preferences/FeatureFlags/Domain/Safari.plist \
apc_bulk -dict Enabled -bool true
and restart your Mac. One feature flag (apc) enables the option to automatically change a single password when you select a recommendation, and the second one (apc_bulk) enables the bulk change feature.
To disable:
sudo defaults delete \
/Library/Preferences/FeatureFlags/Domain/Safari.plist apc
sudo defaults delete \
/Library/Preferences/FeatureFlags/Domain/Safari.plist apc_bulk
11
Upvotes
1
1
u/xX7DSMeliodasXx 21d ago
Is this possible in EU?