Category filter
Script to activate remote ring on Mac
The remote ring feature has become very useful, especially for enterprises with a large number of devices to locate any misplaced device nearby. By executing custom scripts in Hexnode, you can activate the remote ring feature on Mac.
Jump To
Script for remote ring
1 2 3 4 5 6 7 8 9 |
declare -ir MAX_SECONDS=120 declare -ir TIMEOUT=$SECONDS+$MAX_SECONDS while (( $SECONDS < $TIMEOUT )); do afplay /System/Library/Sounds/Submarine.aiff Done |
- MAX_SECONDS sets the maximum time (in seconds) for the device to ring. This value can be altered based on the requirement.
Need more help?