10-29-2021 12:11 AM - edited 10-29-2021 12:12 AM
I created a policy which executes the following command
'/Applications/Install macOS Monterey.app/Contents/Resources/startosinstall' --agreetolicense --nointeraction --forcequitapps
via the Files and Processes --> Execute Command field on Macs which are capable of Monterey and do have the installer downloaded.
Although the command is correct AND the Macs did the upgrade the logged result of the command is:
/bin/sh: /Applications/Install macOS Monterey.app/Contents/Resources/startosinstall: No such file or directory
Does anybody have an idea why?
It is misleading that the log shows "No such file or directory" although the command is run properly.
11-02-2021 07:02 AM - edited 11-02-2021 07:02 AM
What happens if you change it to:
/Applications/Install\ macOS\ Monterey.app/Contents/Resources/startosinstall
Posted on 11-02-2021 08:50 AM
Always drag your path into terminal and copy that output into your script/ exececute command.
Posted on 11-02-2021 09:15 AM
@bwoods You recommend this to get rid off formatted text, right?
Posted on 11-03-2021 08:14 AM
Correct.
11-02-2021 09:13 AM - edited 11-02-2021 09:13 AM
I haven't tested that yet but I will. Thank you.
Posted on 11-03-2021 04:37 PM
I cannot execute any command :(, sorry you will have the command you use in the MDM.
Posted on 11-05-2021 10:43 AM
I tested changing it but the error message is exactly the same.
Posted on 11-08-2021 09:42 AM
try removing the single quotes from your path.
Posted on 11-08-2021 11:01 PM
I did that like @AtillaTheC suggested but that did not help.
Posted on 11-09-2021 12:30 PM
Are you dragging the startosinstall into terminal directly and then pasting the path into your script/command?
Posted on 11-16-2021 01:04 AM
I did that, yes.
Posted on 11-16-2021 07:04 AM
check a reply I made to another post with a working script
11-15-2021 01:05 PM - edited 11-15-2021 01:33 PM
EDIT