How do I connect to a hidden SSID in Windows 10 programmatically?
问题 I have spent ages on this and I am stuck. I am trying to connect to a known hidden SSID programmatically. I am using the following code await firstAdapter.ScanAsync(); WiFiAvailableNetwork network = firstAdapter.NetworkReport.AvailableNetworks.FirstOrDefault(n => n.Ssid == ssid); The problem is I need to supply as a first an object of type WiFiAvailableNetwork but AvailableNetworks only brings back non-hidden SSIDs. public IAsyncOperation<WiFiConnectionResult> ConnectAsync