Thursday 14 November 2019

macos - What is mac process "Wi-Fi"


I am running Mac OS X Yosemite. Today I ran across a process named "Wi-Fi" in Activity Monitor.


enter image description here


The name catches my attention so I google around, but found little info about what the process does.


Even more weird, the corresponding app of the process seems to have TWO names:


/System/Library/CoreServices/WiFiAgent.app    

In Finder, it shows a different name Wi-Fi.app enter image description here


So what is this process? Is it legit?



Answer



WiFiAgent.app is part of OS X and is the agent responsible for all things Wi-Fi in the GUI.


This includes everything from managing the menu bar item to showing dialogs for entering the wireless key of the network. The agent runs in the background on all Macs with a wireless service.


Here's a converted version of the WiFiAgent.app Localizable.strings which shows some of the features of the agent through the messages that can be localised.


The reason why WiFiAgent.app is shown in Finder as "Wi-Fi.app" is because of CFBundleDisplayName:


{   CFBundleDisplayName = "Wi-Fi";
CFBundleName = "WiFiAgent";
}

Contents/Resources/InfoPlist.strings


No comments:

Post a Comment

How can I VLOOKUP in multiple Excel documents?

I am trying to VLOOKUP reference data with around 400 seperate Excel files. Is it possible to do this in a quick way rather than doing it m...