आप Applescript मेनू में इस Applescript की तरह कुछ रख सकते हैं और इसका उपयोग आप पसंदीदा नेटवर्क को सूचीबद्ध करने, चुनने और इससे जुड़ने के लिए कर सकते हैं।
set the getList to paragraphs of (do shell script "networksetup -listpreferredwirelessnetworks en0")
set title to item 1 of getList
set wifi_list to items 2 thru -1 of getList
set the chosen_newtwork to choose from list the wifi_list with prompt "Choose a " & title without multiple selections allowed
if the chosen_newtwork is false then return
do shell script "networksetup -setairportnetwork en0 " & (chosen_newtwork as string)
(मैं यह नहीं कह सकता कि यह सही है क्योंकि मैंने पाया है कि यह कभी-कभी हमेशा कनेक्ट नहीं करना चाहता है लेकिन मैं अनिश्चित हूं अगर यह सिर्फ मेरा राउटर / वाईफाई है)
अपडेट करें।
उपरोक्त समान विचार का उपयोग करके, आप खराब ssids की प्रतिबंधित सूची भी बना सकते हैं।
और उन्हें छान लें।
मुख्य कमांड नेटवर्कसेवाइस कमांड के बजाय एक एयरपोर्ट फ्रेमवर्क कमांड का उपयोग कर रहा है, इसलिए यह काफी धीमा है। लेकिन उपलब्ध नेटवर्क के लिए स्कैन के बजाय सिर्फ आप पसंद करते हैं।
set bannedList to {"BTWifi-X"}
set wifi_list to {}
set the getList to paragraphs of (do shell script "/System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport -s |awk '{print $1}'")
set title to item 1 of getList
repeat with i from 2 to number of items in getList
set this_item to item i of getList
if this_item is not in bannedList then
if this_item is not in wifi_list then -- stops duplicates from original list
copy this_item to end of wifi_list
end if
end if
end repeat
set the chosen_newtwork to choose from list the wifi_list with prompt "Choose a " & title without multiple selections allowed
if the chosen_newtwork is false then return
do shell script "networksetup -setairportnetwork en0 " & (chosen_newtwork as string)