How to disable or uninstall iTunes under High Sierra without disabling SIP
This answer explains how to uninstall iTunes after disabling SIP. This appears to be a necessary step for uninstalling iTunes on versions of OSX starting with 10.13 High Sierra or earlier.
I'd prefer not to disable SIP, since the only reason I have to do so is to prevent iTunes from launching in response to various unknown stimuli.
Is there a way to prevent iTunes from starting up without needing to disable SIP? I just want to prevent it from start up, I don't need to uninstall it. Most importantly I want to stop it from occasionally commencing to play music for no apparent reason, but ideally I would like to prevent it from running altogether. Is there some way I can disable it as the handler for some file type, for example?
itunes
add a comment |
This answer explains how to uninstall iTunes after disabling SIP. This appears to be a necessary step for uninstalling iTunes on versions of OSX starting with 10.13 High Sierra or earlier.
I'd prefer not to disable SIP, since the only reason I have to do so is to prevent iTunes from launching in response to various unknown stimuli.
Is there a way to prevent iTunes from starting up without needing to disable SIP? I just want to prevent it from start up, I don't need to uninstall it. Most importantly I want to stop it from occasionally commencing to play music for no apparent reason, but ideally I would like to prevent it from running altogether. Is there some way I can disable it as the handler for some file type, for example?
itunes
1
Not an answer to your question exactly, but IMO If it's just a one time thing, you could just disable it, remove iTunes and then enable it again.
– DisplayName
yesterday
1
can't you just dosudo chmod -x /path/to/itunes.bin
? (idk what the MacOS version of sudo is, butsu root
)
– hanshenrik
yesterday
@hanshenrik The Mac version of sudo is just sudo. (: Also, it'll be/Applications/iTunes.app/Contents/MacOS/iTunes
. ...I should probably post this as an answer.
– SilverWolf
yesterday
add a comment |
This answer explains how to uninstall iTunes after disabling SIP. This appears to be a necessary step for uninstalling iTunes on versions of OSX starting with 10.13 High Sierra or earlier.
I'd prefer not to disable SIP, since the only reason I have to do so is to prevent iTunes from launching in response to various unknown stimuli.
Is there a way to prevent iTunes from starting up without needing to disable SIP? I just want to prevent it from start up, I don't need to uninstall it. Most importantly I want to stop it from occasionally commencing to play music for no apparent reason, but ideally I would like to prevent it from running altogether. Is there some way I can disable it as the handler for some file type, for example?
itunes
This answer explains how to uninstall iTunes after disabling SIP. This appears to be a necessary step for uninstalling iTunes on versions of OSX starting with 10.13 High Sierra or earlier.
I'd prefer not to disable SIP, since the only reason I have to do so is to prevent iTunes from launching in response to various unknown stimuli.
Is there a way to prevent iTunes from starting up without needing to disable SIP? I just want to prevent it from start up, I don't need to uninstall it. Most importantly I want to stop it from occasionally commencing to play music for no apparent reason, but ideally I would like to prevent it from running altogether. Is there some way I can disable it as the handler for some file type, for example?
itunes
itunes
asked yesterday
intuitedintuited
502719
502719
1
Not an answer to your question exactly, but IMO If it's just a one time thing, you could just disable it, remove iTunes and then enable it again.
– DisplayName
yesterday
1
can't you just dosudo chmod -x /path/to/itunes.bin
? (idk what the MacOS version of sudo is, butsu root
)
– hanshenrik
yesterday
@hanshenrik The Mac version of sudo is just sudo. (: Also, it'll be/Applications/iTunes.app/Contents/MacOS/iTunes
. ...I should probably post this as an answer.
– SilverWolf
yesterday
add a comment |
1
Not an answer to your question exactly, but IMO If it's just a one time thing, you could just disable it, remove iTunes and then enable it again.
– DisplayName
yesterday
1
can't you just dosudo chmod -x /path/to/itunes.bin
? (idk what the MacOS version of sudo is, butsu root
)
– hanshenrik
yesterday
@hanshenrik The Mac version of sudo is just sudo. (: Also, it'll be/Applications/iTunes.app/Contents/MacOS/iTunes
. ...I should probably post this as an answer.
– SilverWolf
yesterday
1
1
Not an answer to your question exactly, but IMO If it's just a one time thing, you could just disable it, remove iTunes and then enable it again.
– DisplayName
yesterday
Not an answer to your question exactly, but IMO If it's just a one time thing, you could just disable it, remove iTunes and then enable it again.
– DisplayName
yesterday
1
1
can't you just do
sudo chmod -x /path/to/itunes.bin
? (idk what the MacOS version of sudo is, but su root
)– hanshenrik
yesterday
can't you just do
sudo chmod -x /path/to/itunes.bin
? (idk what the MacOS version of sudo is, but su root
)– hanshenrik
yesterday
@hanshenrik The Mac version of sudo is just sudo. (: Also, it'll be
/Applications/iTunes.app/Contents/MacOS/iTunes
. ...I should probably post this as an answer.– SilverWolf
yesterday
@hanshenrik The Mac version of sudo is just sudo. (: Also, it'll be
/Applications/iTunes.app/Contents/MacOS/iTunes
. ...I should probably post this as an answer.– SilverWolf
yesterday
add a comment |
2 Answers
2
active
oldest
votes
I wasn't able to find a list of all the file types iTunes handles, but if you are willing to operate piecemeal, any time you open a file and iTunes launches, you can
Select the file in Finder
Get Info (⌘ + i)
select the app you want to use in the "Open With:" dropdown
then click "Change All..."
In the future that type of file will open in your alternate application. After a while you will have opened all the types of files you will open that iTunes handles.
Another method that you may find easier:
Right Click (or control click) the offending file in Finder
Select "Open With > Other..." (even if you see the app you want to use in the list)
Select your App (e.g. Audacity)
Check "Always Open With"
Click "Open"
It just depends on which way you find easier.
2
Currently, the visual instructions would lead me to have iTunes selected and then click Change_All, accomplishing nothing. Perhaps a 2nd pic with an alternative selected app could make this visually clearer?
– LangLangC
yesterday
add a comment |
boot up the system in "macOS Recovery HD" where SIP restrictions are not enforced (according to @user3439894 ) , and basically run in a terminal
sudo find '/Volumes/Macintosh HD/Applications/iTunes.app' -depth -print0 | sudo xargs -0 chmod a-x
and reboot into mac. it basically recursively remove the executable flag on every file in /Applications/iTunes.app , which should stop MacOS from ever starting iTunes (the normal way), which effectively makes iTunes disabled.
boot up the system in an Ubuntu CD/usb drive, and basically run in a terminal
sudo su
mkdir /mount
mount /dev/nvme0n1p1 /mount
find /mount/Applications/iTunes.app/ -depth -print0 | xargs -0 chmod a-x
and reboot into mac. it basically recursively remove the executable flag on every file in /Applications/iTunes.app , which should stop MacOS from ever starting iTunes (the normal way), which effectively makes iTunes disabled.
you have to change
/dev/nvme0n1p1
with wherever the root partition is, and if you don't know, you can launch gparted with the commandsudo gparted
which can help you find out by matching the size of your MacOS root partition with every partition in the system. but if you're using an NVMe disk, it's probably/dev/nvme0n1p1
- this probably won't work if your MacOS partition is encrypted..
- this probably won't work if your MacOS partition is encrypted..
New contributor
3
You do not need to boot an Ubuntu CD/usb drive. The system can be booted to the macOS Recovery HD where SIP restrictions are not enforced on the e.g. Macintosh HD volume because it's not the Startup Disk at that point, and make changes directly from macOS. While the OP doesn't want to disable SIP, he may also not want to have to boot to the Recovery HD to do this either.
– user3439894
yesterday
1
@user3439894 that sounds like an even better idea indeed
– hanshenrik
yesterday
1
@user3439894 updated.. thanks for the tip
– hanshenrik
yesterday
2
iTunes is not in/Applications
when booted to the macOS Recovery HD, it's in e.g.:/Volumes/Macintosh HD/Applications
– user3439894
yesterday
1
Just an FYI... One has to boot the the macOS Recovery HD in order to disable SIP to then boot back to normal mode, with e.g. Macintosh HD as the Startup Disk, to then do the same things that can be done in Terminal from macOS Recovery HD without disabling SIP. In other words, things that require SIP being disabled when done in normal mode do not require SIP to be disabled when done from macOS Recovery HD in Terminal.
– user3439894
yesterday
|
show 1 more comment
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "118"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fapple.stackexchange.com%2fquestions%2f353204%2fhow-to-disable-or-uninstall-itunes-under-high-sierra-without-disabling-sip%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
I wasn't able to find a list of all the file types iTunes handles, but if you are willing to operate piecemeal, any time you open a file and iTunes launches, you can
Select the file in Finder
Get Info (⌘ + i)
select the app you want to use in the "Open With:" dropdown
then click "Change All..."
In the future that type of file will open in your alternate application. After a while you will have opened all the types of files you will open that iTunes handles.
Another method that you may find easier:
Right Click (or control click) the offending file in Finder
Select "Open With > Other..." (even if you see the app you want to use in the list)
Select your App (e.g. Audacity)
Check "Always Open With"
Click "Open"
It just depends on which way you find easier.
2
Currently, the visual instructions would lead me to have iTunes selected and then click Change_All, accomplishing nothing. Perhaps a 2nd pic with an alternative selected app could make this visually clearer?
– LangLangC
yesterday
add a comment |
I wasn't able to find a list of all the file types iTunes handles, but if you are willing to operate piecemeal, any time you open a file and iTunes launches, you can
Select the file in Finder
Get Info (⌘ + i)
select the app you want to use in the "Open With:" dropdown
then click "Change All..."
In the future that type of file will open in your alternate application. After a while you will have opened all the types of files you will open that iTunes handles.
Another method that you may find easier:
Right Click (or control click) the offending file in Finder
Select "Open With > Other..." (even if you see the app you want to use in the list)
Select your App (e.g. Audacity)
Check "Always Open With"
Click "Open"
It just depends on which way you find easier.
2
Currently, the visual instructions would lead me to have iTunes selected and then click Change_All, accomplishing nothing. Perhaps a 2nd pic with an alternative selected app could make this visually clearer?
– LangLangC
yesterday
add a comment |
I wasn't able to find a list of all the file types iTunes handles, but if you are willing to operate piecemeal, any time you open a file and iTunes launches, you can
Select the file in Finder
Get Info (⌘ + i)
select the app you want to use in the "Open With:" dropdown
then click "Change All..."
In the future that type of file will open in your alternate application. After a while you will have opened all the types of files you will open that iTunes handles.
Another method that you may find easier:
Right Click (or control click) the offending file in Finder
Select "Open With > Other..." (even if you see the app you want to use in the list)
Select your App (e.g. Audacity)
Check "Always Open With"
Click "Open"
It just depends on which way you find easier.
I wasn't able to find a list of all the file types iTunes handles, but if you are willing to operate piecemeal, any time you open a file and iTunes launches, you can
Select the file in Finder
Get Info (⌘ + i)
select the app you want to use in the "Open With:" dropdown
then click "Change All..."
In the future that type of file will open in your alternate application. After a while you will have opened all the types of files you will open that iTunes handles.
Another method that you may find easier:
Right Click (or control click) the offending file in Finder
Select "Open With > Other..." (even if you see the app you want to use in the list)
Select your App (e.g. Audacity)
Check "Always Open With"
Click "Open"
It just depends on which way you find easier.
edited yesterday
answered yesterday
dwightkdwightk
5,836113458
5,836113458
2
Currently, the visual instructions would lead me to have iTunes selected and then click Change_All, accomplishing nothing. Perhaps a 2nd pic with an alternative selected app could make this visually clearer?
– LangLangC
yesterday
add a comment |
2
Currently, the visual instructions would lead me to have iTunes selected and then click Change_All, accomplishing nothing. Perhaps a 2nd pic with an alternative selected app could make this visually clearer?
– LangLangC
yesterday
2
2
Currently, the visual instructions would lead me to have iTunes selected and then click Change_All, accomplishing nothing. Perhaps a 2nd pic with an alternative selected app could make this visually clearer?
– LangLangC
yesterday
Currently, the visual instructions would lead me to have iTunes selected and then click Change_All, accomplishing nothing. Perhaps a 2nd pic with an alternative selected app could make this visually clearer?
– LangLangC
yesterday
add a comment |
boot up the system in "macOS Recovery HD" where SIP restrictions are not enforced (according to @user3439894 ) , and basically run in a terminal
sudo find '/Volumes/Macintosh HD/Applications/iTunes.app' -depth -print0 | sudo xargs -0 chmod a-x
and reboot into mac. it basically recursively remove the executable flag on every file in /Applications/iTunes.app , which should stop MacOS from ever starting iTunes (the normal way), which effectively makes iTunes disabled.
boot up the system in an Ubuntu CD/usb drive, and basically run in a terminal
sudo su
mkdir /mount
mount /dev/nvme0n1p1 /mount
find /mount/Applications/iTunes.app/ -depth -print0 | xargs -0 chmod a-x
and reboot into mac. it basically recursively remove the executable flag on every file in /Applications/iTunes.app , which should stop MacOS from ever starting iTunes (the normal way), which effectively makes iTunes disabled.
you have to change
/dev/nvme0n1p1
with wherever the root partition is, and if you don't know, you can launch gparted with the commandsudo gparted
which can help you find out by matching the size of your MacOS root partition with every partition in the system. but if you're using an NVMe disk, it's probably/dev/nvme0n1p1
- this probably won't work if your MacOS partition is encrypted..
- this probably won't work if your MacOS partition is encrypted..
New contributor
3
You do not need to boot an Ubuntu CD/usb drive. The system can be booted to the macOS Recovery HD where SIP restrictions are not enforced on the e.g. Macintosh HD volume because it's not the Startup Disk at that point, and make changes directly from macOS. While the OP doesn't want to disable SIP, he may also not want to have to boot to the Recovery HD to do this either.
– user3439894
yesterday
1
@user3439894 that sounds like an even better idea indeed
– hanshenrik
yesterday
1
@user3439894 updated.. thanks for the tip
– hanshenrik
yesterday
2
iTunes is not in/Applications
when booted to the macOS Recovery HD, it's in e.g.:/Volumes/Macintosh HD/Applications
– user3439894
yesterday
1
Just an FYI... One has to boot the the macOS Recovery HD in order to disable SIP to then boot back to normal mode, with e.g. Macintosh HD as the Startup Disk, to then do the same things that can be done in Terminal from macOS Recovery HD without disabling SIP. In other words, things that require SIP being disabled when done in normal mode do not require SIP to be disabled when done from macOS Recovery HD in Terminal.
– user3439894
yesterday
|
show 1 more comment
boot up the system in "macOS Recovery HD" where SIP restrictions are not enforced (according to @user3439894 ) , and basically run in a terminal
sudo find '/Volumes/Macintosh HD/Applications/iTunes.app' -depth -print0 | sudo xargs -0 chmod a-x
and reboot into mac. it basically recursively remove the executable flag on every file in /Applications/iTunes.app , which should stop MacOS from ever starting iTunes (the normal way), which effectively makes iTunes disabled.
boot up the system in an Ubuntu CD/usb drive, and basically run in a terminal
sudo su
mkdir /mount
mount /dev/nvme0n1p1 /mount
find /mount/Applications/iTunes.app/ -depth -print0 | xargs -0 chmod a-x
and reboot into mac. it basically recursively remove the executable flag on every file in /Applications/iTunes.app , which should stop MacOS from ever starting iTunes (the normal way), which effectively makes iTunes disabled.
you have to change
/dev/nvme0n1p1
with wherever the root partition is, and if you don't know, you can launch gparted with the commandsudo gparted
which can help you find out by matching the size of your MacOS root partition with every partition in the system. but if you're using an NVMe disk, it's probably/dev/nvme0n1p1
- this probably won't work if your MacOS partition is encrypted..
- this probably won't work if your MacOS partition is encrypted..
New contributor
3
You do not need to boot an Ubuntu CD/usb drive. The system can be booted to the macOS Recovery HD where SIP restrictions are not enforced on the e.g. Macintosh HD volume because it's not the Startup Disk at that point, and make changes directly from macOS. While the OP doesn't want to disable SIP, he may also not want to have to boot to the Recovery HD to do this either.
– user3439894
yesterday
1
@user3439894 that sounds like an even better idea indeed
– hanshenrik
yesterday
1
@user3439894 updated.. thanks for the tip
– hanshenrik
yesterday
2
iTunes is not in/Applications
when booted to the macOS Recovery HD, it's in e.g.:/Volumes/Macintosh HD/Applications
– user3439894
yesterday
1
Just an FYI... One has to boot the the macOS Recovery HD in order to disable SIP to then boot back to normal mode, with e.g. Macintosh HD as the Startup Disk, to then do the same things that can be done in Terminal from macOS Recovery HD without disabling SIP. In other words, things that require SIP being disabled when done in normal mode do not require SIP to be disabled when done from macOS Recovery HD in Terminal.
– user3439894
yesterday
|
show 1 more comment
boot up the system in "macOS Recovery HD" where SIP restrictions are not enforced (according to @user3439894 ) , and basically run in a terminal
sudo find '/Volumes/Macintosh HD/Applications/iTunes.app' -depth -print0 | sudo xargs -0 chmod a-x
and reboot into mac. it basically recursively remove the executable flag on every file in /Applications/iTunes.app , which should stop MacOS from ever starting iTunes (the normal way), which effectively makes iTunes disabled.
boot up the system in an Ubuntu CD/usb drive, and basically run in a terminal
sudo su
mkdir /mount
mount /dev/nvme0n1p1 /mount
find /mount/Applications/iTunes.app/ -depth -print0 | xargs -0 chmod a-x
and reboot into mac. it basically recursively remove the executable flag on every file in /Applications/iTunes.app , which should stop MacOS from ever starting iTunes (the normal way), which effectively makes iTunes disabled.
you have to change
/dev/nvme0n1p1
with wherever the root partition is, and if you don't know, you can launch gparted with the commandsudo gparted
which can help you find out by matching the size of your MacOS root partition with every partition in the system. but if you're using an NVMe disk, it's probably/dev/nvme0n1p1
- this probably won't work if your MacOS partition is encrypted..
- this probably won't work if your MacOS partition is encrypted..
New contributor
boot up the system in "macOS Recovery HD" where SIP restrictions are not enforced (according to @user3439894 ) , and basically run in a terminal
sudo find '/Volumes/Macintosh HD/Applications/iTunes.app' -depth -print0 | sudo xargs -0 chmod a-x
and reboot into mac. it basically recursively remove the executable flag on every file in /Applications/iTunes.app , which should stop MacOS from ever starting iTunes (the normal way), which effectively makes iTunes disabled.
boot up the system in an Ubuntu CD/usb drive, and basically run in a terminal
sudo su
mkdir /mount
mount /dev/nvme0n1p1 /mount
find /mount/Applications/iTunes.app/ -depth -print0 | xargs -0 chmod a-x
and reboot into mac. it basically recursively remove the executable flag on every file in /Applications/iTunes.app , which should stop MacOS from ever starting iTunes (the normal way), which effectively makes iTunes disabled.
you have to change
/dev/nvme0n1p1
with wherever the root partition is, and if you don't know, you can launch gparted with the commandsudo gparted
which can help you find out by matching the size of your MacOS root partition with every partition in the system. but if you're using an NVMe disk, it's probably/dev/nvme0n1p1
- this probably won't work if your MacOS partition is encrypted..
- this probably won't work if your MacOS partition is encrypted..
New contributor
edited yesterday
New contributor
answered yesterday
hanshenrikhanshenrik
1414
1414
New contributor
New contributor
3
You do not need to boot an Ubuntu CD/usb drive. The system can be booted to the macOS Recovery HD where SIP restrictions are not enforced on the e.g. Macintosh HD volume because it's not the Startup Disk at that point, and make changes directly from macOS. While the OP doesn't want to disable SIP, he may also not want to have to boot to the Recovery HD to do this either.
– user3439894
yesterday
1
@user3439894 that sounds like an even better idea indeed
– hanshenrik
yesterday
1
@user3439894 updated.. thanks for the tip
– hanshenrik
yesterday
2
iTunes is not in/Applications
when booted to the macOS Recovery HD, it's in e.g.:/Volumes/Macintosh HD/Applications
– user3439894
yesterday
1
Just an FYI... One has to boot the the macOS Recovery HD in order to disable SIP to then boot back to normal mode, with e.g. Macintosh HD as the Startup Disk, to then do the same things that can be done in Terminal from macOS Recovery HD without disabling SIP. In other words, things that require SIP being disabled when done in normal mode do not require SIP to be disabled when done from macOS Recovery HD in Terminal.
– user3439894
yesterday
|
show 1 more comment
3
You do not need to boot an Ubuntu CD/usb drive. The system can be booted to the macOS Recovery HD where SIP restrictions are not enforced on the e.g. Macintosh HD volume because it's not the Startup Disk at that point, and make changes directly from macOS. While the OP doesn't want to disable SIP, he may also not want to have to boot to the Recovery HD to do this either.
– user3439894
yesterday
1
@user3439894 that sounds like an even better idea indeed
– hanshenrik
yesterday
1
@user3439894 updated.. thanks for the tip
– hanshenrik
yesterday
2
iTunes is not in/Applications
when booted to the macOS Recovery HD, it's in e.g.:/Volumes/Macintosh HD/Applications
– user3439894
yesterday
1
Just an FYI... One has to boot the the macOS Recovery HD in order to disable SIP to then boot back to normal mode, with e.g. Macintosh HD as the Startup Disk, to then do the same things that can be done in Terminal from macOS Recovery HD without disabling SIP. In other words, things that require SIP being disabled when done in normal mode do not require SIP to be disabled when done from macOS Recovery HD in Terminal.
– user3439894
yesterday
3
3
You do not need to boot an Ubuntu CD/usb drive. The system can be booted to the macOS Recovery HD where SIP restrictions are not enforced on the e.g. Macintosh HD volume because it's not the Startup Disk at that point, and make changes directly from macOS. While the OP doesn't want to disable SIP, he may also not want to have to boot to the Recovery HD to do this either.
– user3439894
yesterday
You do not need to boot an Ubuntu CD/usb drive. The system can be booted to the macOS Recovery HD where SIP restrictions are not enforced on the e.g. Macintosh HD volume because it's not the Startup Disk at that point, and make changes directly from macOS. While the OP doesn't want to disable SIP, he may also not want to have to boot to the Recovery HD to do this either.
– user3439894
yesterday
1
1
@user3439894 that sounds like an even better idea indeed
– hanshenrik
yesterday
@user3439894 that sounds like an even better idea indeed
– hanshenrik
yesterday
1
1
@user3439894 updated.. thanks for the tip
– hanshenrik
yesterday
@user3439894 updated.. thanks for the tip
– hanshenrik
yesterday
2
2
iTunes is not in
/Applications
when booted to the macOS Recovery HD, it's in e.g.: /Volumes/Macintosh HD/Applications
– user3439894
yesterday
iTunes is not in
/Applications
when booted to the macOS Recovery HD, it's in e.g.: /Volumes/Macintosh HD/Applications
– user3439894
yesterday
1
1
Just an FYI... One has to boot the the macOS Recovery HD in order to disable SIP to then boot back to normal mode, with e.g. Macintosh HD as the Startup Disk, to then do the same things that can be done in Terminal from macOS Recovery HD without disabling SIP. In other words, things that require SIP being disabled when done in normal mode do not require SIP to be disabled when done from macOS Recovery HD in Terminal.
– user3439894
yesterday
Just an FYI... One has to boot the the macOS Recovery HD in order to disable SIP to then boot back to normal mode, with e.g. Macintosh HD as the Startup Disk, to then do the same things that can be done in Terminal from macOS Recovery HD without disabling SIP. In other words, things that require SIP being disabled when done in normal mode do not require SIP to be disabled when done from macOS Recovery HD in Terminal.
– user3439894
yesterday
|
show 1 more comment
Thanks for contributing an answer to Ask Different!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fapple.stackexchange.com%2fquestions%2f353204%2fhow-to-disable-or-uninstall-itunes-under-high-sierra-without-disabling-sip%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Not an answer to your question exactly, but IMO If it's just a one time thing, you could just disable it, remove iTunes and then enable it again.
– DisplayName
yesterday
1
can't you just do
sudo chmod -x /path/to/itunes.bin
? (idk what the MacOS version of sudo is, butsu root
)– hanshenrik
yesterday
@hanshenrik The Mac version of sudo is just sudo. (: Also, it'll be
/Applications/iTunes.app/Contents/MacOS/iTunes
. ...I should probably post this as an answer.– SilverWolf
yesterday