You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PS C:\Users\username> Install-Module -Name wifiprofilemanagement Untrusted repository
You are installing the modules from an untrusted repository. If you trust this repository, change its
InstallationPolicy value by running the Set-PSRepository cmdlet. Are you sure you want to install the modules from
'PSGallery'?
[Y] Yes [A] Yes to All [N] No [L] No to All [S] Suspend [?] Help (default is "N"): y
PS C:\Users\username> Get-WiFiAvailableNetwork
Get-WiFiInterfaceGuid : Wi-Fi interface not found on the system.
At C:\Program Files\WindowsPowerShell\Modules\wifiprofilemanagement\0.5.0.0\WiFiProfileManagement.psm1:112 char:22
+ ... rfaceGUID = Get-WiFiInterfaceGuid -WiFiAdapterName $WiFiAdapterName - ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Write-Error], WriteErrorException
+ FullyQualifiedErrorId : Microsoft.PowerShell.Commands.WriteErrorException,Get-WiFiInterfaceGuid
my network adapter was renamed from the default to wlan0.
The text was updated successfully, but these errors were encountered:
I had the same issue, mine was named 'Wi-Fi 2' since i moved this system drive from old hardware.
The Adapter name is hard coded in the module so my options were to change the code or the name of the interface.
The former can be done here but breaks if the module is updated: C:\Program Files\WindowsPowerShell\Modules\wifiprofilemanagement\1.0.0.0\WiFiProfileManagement.psm1:112 char:22
The latter required me to go into devmgmt.msc , activate View -> Show hidden devices
and delete the old adapter, this way renaming the current one from 'Wi-Fi 2' to 'Wi-Fi' went without error.
my network adapter was renamed from the default to wlan0.
The text was updated successfully, but these errors were encountered: