I have apple script which opens Network Link Conditioner pane from System Preferences app and then toggles the switch to enable/disable it. Visually, everything works as expected. However, I can't see Network Link Conditioner icon in menu bar which tells me that it hasn't started. Is there something else should be done to activate Network Link Conditioner?
property thePane : "com.apple.Network-Link-Conditioner"
tell application "System Preferences"
activate
set the current pane to pane id thePane
--delay 1
end tell
---
tell application "System Events"
tell application process "System Preferences"
try
click ((checkboxes of window "Network Link Conditioner") whose description is "enable switch")
on error
click ((checkboxes of window "Network Link Conditioner") whose description is "enable switch")
end try
end tell
endtell