Comment puis-je set WiFi connexion order in Windows 10?
Comment puis-je set WiFi connexion order in Windows 10?
J'ai multiple WiFi networks available, and would like to set the order of preference in which they should connect; i.e. each network's priority. This used to be fairly simple in previous versions of Windows, but how can I do this in Windows 10?
Re: Comment puis-je set WiFi connexion order in Windows 10?
Open an elevated invite de commandes (Admin). Vous pouvez do this by pressing the Windows start and x keys and choosing the `Command Prompt (Admin)` option; and type la commande suivante:
```
netsh wlan show profiles
```
Cela va display all your available connections, in their present order of preference (those listed en haut are "preferred" to those en bas).
To change the order in which your machine attempts to connect, type (or paste)
```
netsh wlan set profileorder name="connectionname" interface="Wi-Fi" priority=1
```
remembering to change `connectionname` to the appropriate name from the listing shown in the results from the first command, and setting the priority to whatever you wish. "priority=1" means "top of the list"
(source: [http://mywindowshub.com/how-to-change-priority-of-wireless-networks-in-windows-10/]( 4 ))
```
netsh wlan show profiles
```
Cela va display all your available connections, in their present order of preference (those listed en haut are "preferred" to those en bas).
To change the order in which your machine attempts to connect, type (or paste)
```
netsh wlan set profileorder name="connectionname" interface="Wi-Fi" priority=1
```
remembering to change `connectionname` to the appropriate name from the listing shown in the results from the first command, and setting the priority to whatever you wish. "priority=1" means "top of the list"
(source: [http://mywindowshub.com/how-to-change-priority-of-wireless-networks-in-windows-10/]( 4 ))