The Computer Oracle

What is mac process "Wi-Fi"

--------------------------------------------------
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------

Music by Eric Matyas
https://www.soundimage.org
Track title: Puzzle Game 2 Looping

--

Chapters
00:00 What Is Mac Process &Quot;Wi-Fi&Quot;
00:38 Accepted Answer Score 10
01:30 Answer 2 Score 3
02:06 Thank you

--

Full question
https://superuser.com/questions/879763/w...

--

Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...

--

Tags
#macos #mac #malware

#avk47



ACCEPTED ANSWER

Score 10


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




ANSWER 2

Score 3


@grgarside points the way. I want to note the steps of solving problems like this.

  1. Double click the process name in Activiy Monitor, then select "Open Files and Ports" tab, identify the related file path of the process

  2. Locate the file in Finder (cmd-shift-G) > right click the file > Show Package Contents

  3. View Info.plist in any text editor

  4. To view *.strings (eg. InfoPlist.strings or Localizable.strings), use this web service