Difference between revisions of "Windows 7 as WiFi Access Point"

From Teknologisk videncenter
Jump to: navigation, search
m (Created page with "<source lang=cmd> netsh wlan set hostednetwork mode=allow "ssid=Viborg" "key=1234567890" keyUsage=persistent netsh wlan start hostednetwork </source> {{Source cmd}} =Link= *[http...")
 
m
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
 +
Run the following script in a command prompt as administrator
 
<source lang=cmd>
 
<source lang=cmd>
 
netsh wlan set hostednetwork mode=allow "ssid=Viborg" "key=1234567890" keyUsage=persistent
 
netsh wlan set hostednetwork mode=allow "ssid=Viborg" "key=1234567890" keyUsage=persistent
Line 6: Line 7:
 
=Link=
 
=Link=
 
*[http://www.ishanarora.com/2009/07/29/windows-7-as-a-wireless-access-point/ Article: Windows 7 As A Wireless Access point]
 
*[http://www.ishanarora.com/2009/07/29/windows-7-as-a-wireless-access-point/ Article: Windows 7 As A Wireless Access point]
 +
 +
[[Category:Windows 7]]

Latest revision as of 08:06, 1 June 2012

Run the following script in a command prompt as administrator

netsh wlan set hostednetwork mode=allow "ssid=Viborg" "key=1234567890" keyUsage=persistent
netsh wlan start hostednetwork

Link