Quantcast
Channel: rtrouton – Der Flounder
Viewing all articles
Browse latest Browse all 764

Disabling in-app review requests for apps installed from the macOS App Store

$
0
0

I was recently asked to look into how to disable in-app review requests for apps being deployed from the macOS App Store or VPP.

Screenshot 2023 07 17 at 08 10 29

After some digging, I was able to find what preference domain and key controlled this. In the macOS App Store app’s Settings, it is the In-Apps Ratings & Reviews setting.

Screenshot 2023 07 20 at 4 04 52 PM

The relevant preference domain and key are below:

  • Domain: com.apple.appstore
  • Key: InAppReviewEnabled

This setting can be managed via the following defaults command run as the logged-in user:

  • To enable the In-Apps Ratings & Reviews setting in the App Store app:



This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters


/usr/bin/defaults write com.apple.appstore InAppReviewEnabled -bool true
view raw

gistfile1.txt

hosted with ❤ by GitHub
  • To disable the In-Apps Ratings & Reviews setting in the App Store app:



This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters


/usr/bin/defaults write com.apple.appstore InAppReviewEnabled -bool false
view raw

gistfile1.txt

hosted with ❤ by GitHub

At this time, this setting does not appear to be manageable using a configuration profile. I’ve filed a bug report with Apple about this. For this who want to also report this and want a reference, it is Feedback ID FB12691822.


Viewing all articles
Browse latest Browse all 764

Trending Articles