I was going to try that but was worried it would somehow mess with the laptop. So force shutdown is a safe option?
Quit all other apps, that can be quit before doing the force shot down.
If you hold down the power button to frce a shut down some apps may be left in an inconsistent state, because they may not be able to close the documents and files properly. You will minimise the risk by first closing all apps that can be closed.
To force a single application to quit, you can send signals from the Terminal.
- Launch the Terminal.app from the Applications folder.
- Enter the text below and hit return:
killall Photos
That is essentially the same command as Force Quit.
If that does not help, try this modification:
killall Photos -KILL
The "kill" command sends a signal to the process to be terminated. Without a signal name as parameter, it is the "TERM" signal, the same as "Force Quit" will send. This request can be ignored. The "KILL" signal is the ultimate killer, it is not catchable and cannot be ignored.
KILL (non-catchable, non-ignorable kill)