I am having trouble figuring out the ideal way to accomplish this goal:
Our campuses use UDP addresses to launch video announcements streams through VLC player. Up until now we had been putting bookmarks in Jamf Self-service with the udp address to pretty good results, but management wants to for us to deploy desktop shortcuts to achieve the same thing.
A shell script like below would accomplish the goal, but we have terminal.app locked out to all end-users.
#!/bin/bash
open "udp://@192.168.0.1:1234"
I could make an .app to run that command through Automator, drop it in the /Applications folder or another directory, and have a script use the "ln" command to make an alias on the user's desktop, but is there not something similar to .webloc that could be used for a UDP address that's an all-in-one type solution?
I feel like there is a very simple solution to this staring me in the face but I am being unintentionally obtuse.... help?
