I am using MAUI in .NET8 on macOs 15.3.2 and I am trying to get the connected WIFI name.
There are several ways found on Stackoverflow how to access it such as ipconfig getsummary en0
This works perfectly fine in the terminal window, but starting a process within my .NET 8 MAUI app, the result is empty.
The only (slow) workaround I can use is: system_profiler SPAirPortDataType
and then parse the result to find the name of the connected wifi.
// No result:
ProcessUtility.GetOutput("ipconfig", "getsummary en0");
// Slow result, that I have to parse
ProcessUtility.GetOutput("system_profiler", "SPAirPortDataType");
public static string GetOutput(string processFileName, string args)
{
Process process = new();
process.StartInfo.FileName = processFileName;
process.StartInfo.Arguments = args;
process.StartInfo.UseShellExecute = false;
process.StartInfo.RedirectStandardOutput = true;
process.StartInfo.ErrorDialog = true;
process.Start();
process.WaitForExit(TimeoutOneSecond);
return process.StandardOutput.ReadToEnd();
}
I guess the issue could have to do with the Sandbox mode or some other kind of restriction? But to be honest, I am not a macOs developer, so I have no glue.
Any ideas?