I thought I had already posted this, but it's no where to be found. I use a bash script which kills Zoom Rooms and forces a restart. Unfortunately this script doesn't leave any evidence of running, likely because it restarts before the script actually finishes. Is there a way to get Jamf to write to any server log via a command, such as the 3rd line below.
```
! /bin/zsh
killall ZoomPresence
jamf writelogentry
shutdown -r now
exit 0```