I 'm using High Sierra and tried to use a terminal command to hide apps in the Mac App store I do not want to see among my updates but that I'm still using. Tried to hide the receipts, not working. After everything I've done , I restarted the iMac but no success
The Terminal command could be the wrong one, any idea of how to fix it?
where xxx is the app name
The only thing that works is how to hide the annoying notification that popups everyday and where there is no:
"Stop Annoying Me" to click. Just Install now or remind me tomorrow sigh
I removed it this way
Paste the following command in the Terminal window and hit Enter on
the keyboard:
The command requires administrative privileges so you need to authenticate by providing your Mac user accountʼs password.
3) Restart the computer to have the change take effect.
To revert the command and receive upgrade notifications again, execute the following command in Terminal and restart your Mac so that changes take effect:
The Terminal method temporarily moves “OSXNotification.bundle” from its original location in the /Library/Bundles/ folder to your user accountʼs default Documents folder.
“OSXNotification.bundle” is a small Apple-signed bundle that controls macOS upgrade notifications. Reverting the change puts the file back in its original location.
The Terminal command could be the wrong one, any idea of how to fix it?
Code:
sudo softwareupdate --ignore "xxx"
where xxx is the app name
The only thing that works is how to hide the annoying notification that popups everyday and where there is no:
"Stop Annoying Me" to click. Just Install now or remind me tomorrow sigh
I removed it this way
Paste the following command in the Terminal window and hit Enter on
the keyboard:
Code:
sudo mv /Library/Bundles/OSXNotification.bundle ~/Documents/
The command requires administrative privileges so you need to authenticate by providing your Mac user accountʼs password.
3) Restart the computer to have the change take effect.
To revert the command and receive upgrade notifications again, execute the following command in Terminal and restart your Mac so that changes take effect:
Code:
sudo mv ~/Documents/OSXNotification.bundle /Library/Bundles/
The Terminal method temporarily moves “OSXNotification.bundle” from its original location in the /Library/Bundles/ folder to your user accountʼs default Documents folder.
“OSXNotification.bundle” is a small Apple-signed bundle that controls macOS upgrade notifications. Reverting the change puts the file back in its original location.