β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