Advertisement
Guest User

Untitled

a guest
Nov 18th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. Ad hoc jezeli nie ma w panelu sterowania (windows 8-10) komendy w cmd jako administrator
  2.  
  3. https://answers.microsoft.com/en-us/windows/forum/windows_10-networking/how-do-i-set-up-an-ad-hoc-wifi-network-in-windows/0caa92d8-e02f-4e7f-aa5c-0abf10ed2039
  4. https://www.lifewire.com/set-up-an-ad-hoc-peer-wifi-network-818272
  5. https://globalcache.zendesk.com/hc/en-us/articles/114094165352-FAQ-Windows-8-1-and-Windows-10-AdHoc-network-support-solution
  6.  
  7. netsh wlan set hostednetwork mode=allow ssid=network name key=password
  8. netsh wlan start hostednetwork
  9. netsh wlan stop hostednetwork
  10. netsh wlan show networks
  11. Replace <ssid> with the SSID of your network by using Ctrl-F and finding and replacing each instance. You can then copy and paste each line into the command line window
  12.  
  13. >netsh wlan show networks
  14.  
  15. ***Go to "Network and Sharing Center"
  16. - Click "Set up a new connection or network"
  17. - Double click "Manually connect to a wireless network"
  18. - Enter the SSID of the adhoc network (as shown by "netsh wlan show networks") into the "Network name" field
  19. - Configure security settings accordingly
  20. - Uncheck "Start this connection automatically" (important)
  21. - Click "Next", then "Close"
  22.  
  23. ***Windows 8.1 command
  24. >netsh wlan set profileparameter <ssid> connectiontype=ibss
  25.  
  26. ***Windows 10 command
  27. >netsh wlan set profileparameter <ssid> connectiontype=ibss connectionmode=manual
  28.  
  29. >netsh wlan connect <ssid>
  30.  
  31. >netsh wlan delete profile <ssid>
  32.  
  33. ipconfig /all
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement