Create WiFi hotspot without internet from laptop
I’ve been digging into google but I can’t find a proper link to guide me. I want to create a wireless hotspot from my hp laptop to connect three devices to it. I have no access to internet. I need the modem to be like a router so any other devices can see it when they scan for WiFi hotspots. It would be like a house group but without internet. Anyone can help me? Thanks in advance
networking windows-10 home-networking hotspot
add a comment |
I’ve been digging into google but I can’t find a proper link to guide me. I want to create a wireless hotspot from my hp laptop to connect three devices to it. I have no access to internet. I need the modem to be like a router so any other devices can see it when they scan for WiFi hotspots. It would be like a house group but without internet. Anyone can help me? Thanks in advance
networking windows-10 home-networking hotspot
What are you asking for? I see that you want to host a wireless network, but you are not being clear. You say that you want to host a hotspot from your laptop, but then want wireless routing from a modem. A hotspot is a piece of software that broadcasts your internet connection through your wireless card. A hotspot is also referred to as a wireless access point (with a network bridge). A modem is a piece of hardware that receives an internet connection from a coaxial cable and forwards it to either router or some other device connected over a rj45 cable.
– DaMaxContent
Dec 30 '18 at 21:04
There is an app called Zapya for mobile devices which makes a wireless access point without internet connection. This app somehow works without the bluetooth mode on and without internet and people can share documents and else. They can even create a little network through this app to even play games. So I thought I could do the same with my notebook to create a network as Zapya does
– madcoderz
Dec 30 '18 at 21:34
add a comment |
I’ve been digging into google but I can’t find a proper link to guide me. I want to create a wireless hotspot from my hp laptop to connect three devices to it. I have no access to internet. I need the modem to be like a router so any other devices can see it when they scan for WiFi hotspots. It would be like a house group but without internet. Anyone can help me? Thanks in advance
networking windows-10 home-networking hotspot
I’ve been digging into google but I can’t find a proper link to guide me. I want to create a wireless hotspot from my hp laptop to connect three devices to it. I have no access to internet. I need the modem to be like a router so any other devices can see it when they scan for WiFi hotspots. It would be like a house group but without internet. Anyone can help me? Thanks in advance
networking windows-10 home-networking hotspot
networking windows-10 home-networking hotspot
asked Dec 30 '18 at 19:38
madcoderzmadcoderz
161310
161310
What are you asking for? I see that you want to host a wireless network, but you are not being clear. You say that you want to host a hotspot from your laptop, but then want wireless routing from a modem. A hotspot is a piece of software that broadcasts your internet connection through your wireless card. A hotspot is also referred to as a wireless access point (with a network bridge). A modem is a piece of hardware that receives an internet connection from a coaxial cable and forwards it to either router or some other device connected over a rj45 cable.
– DaMaxContent
Dec 30 '18 at 21:04
There is an app called Zapya for mobile devices which makes a wireless access point without internet connection. This app somehow works without the bluetooth mode on and without internet and people can share documents and else. They can even create a little network through this app to even play games. So I thought I could do the same with my notebook to create a network as Zapya does
– madcoderz
Dec 30 '18 at 21:34
add a comment |
What are you asking for? I see that you want to host a wireless network, but you are not being clear. You say that you want to host a hotspot from your laptop, but then want wireless routing from a modem. A hotspot is a piece of software that broadcasts your internet connection through your wireless card. A hotspot is also referred to as a wireless access point (with a network bridge). A modem is a piece of hardware that receives an internet connection from a coaxial cable and forwards it to either router or some other device connected over a rj45 cable.
– DaMaxContent
Dec 30 '18 at 21:04
There is an app called Zapya for mobile devices which makes a wireless access point without internet connection. This app somehow works without the bluetooth mode on and without internet and people can share documents and else. They can even create a little network through this app to even play games. So I thought I could do the same with my notebook to create a network as Zapya does
– madcoderz
Dec 30 '18 at 21:34
What are you asking for? I see that you want to host a wireless network, but you are not being clear. You say that you want to host a hotspot from your laptop, but then want wireless routing from a modem. A hotspot is a piece of software that broadcasts your internet connection through your wireless card. A hotspot is also referred to as a wireless access point (with a network bridge). A modem is a piece of hardware that receives an internet connection from a coaxial cable and forwards it to either router or some other device connected over a rj45 cable.
– DaMaxContent
Dec 30 '18 at 21:04
What are you asking for? I see that you want to host a wireless network, but you are not being clear. You say that you want to host a hotspot from your laptop, but then want wireless routing from a modem. A hotspot is a piece of software that broadcasts your internet connection through your wireless card. A hotspot is also referred to as a wireless access point (with a network bridge). A modem is a piece of hardware that receives an internet connection from a coaxial cable and forwards it to either router or some other device connected over a rj45 cable.
– DaMaxContent
Dec 30 '18 at 21:04
There is an app called Zapya for mobile devices which makes a wireless access point without internet connection. This app somehow works without the bluetooth mode on and without internet and people can share documents and else. They can even create a little network through this app to even play games. So I thought I could do the same with my notebook to create a network as Zapya does
– madcoderz
Dec 30 '18 at 21:34
There is an app called Zapya for mobile devices which makes a wireless access point without internet connection. This app somehow works without the bluetooth mode on and without internet and people can share documents and else. They can even create a little network through this app to even play games. So I thought I could do the same with my notebook to create a network as Zapya does
– madcoderz
Dec 30 '18 at 21:34
add a comment |
1 Answer
1
active
oldest
votes
What you want seems to be a peer-to-peer, or Hosted Network. It has been built into Windows since XP, but access changed in Windows 8 and 10. Using Windows 10 built-in capability:
- Enable WiFi and turn off Airplane mode from the control panel.
- Press Windows and type
cmd
. Then press CtrlShiftEnter and clickYes
to confirm UAC for the Administrator CMD prompt. - Type (or copy/paste) to enter
netsh wlan show drivers
, listing network drivers. You should seeHosted network supported : Yes
... if not, drivers need to be installed or updated.
Enternetsh wlan set hostednetwork mode=allow ssid=mynetname key=mypwd
, replacing mynetname with your chosen ad hoc network name, and mypwd with your chosen password (8 to 63 characters long).- Enter
netsh wlan start hostednetwork
to start communication.
There is also a GUI to set up ad hoc networks, which I find takes a bit longer.
Windows 10 hosted networks employ WPA2 security (thanks to @grawity for correction).
Win8/10hostednetwork
is not ad-hoc; it's a regular managed ("infrastructure") network and uses standard WPA2. Same goes for "hotspot" features in most other operating systems. (Though even ad-hoc mode nowadays supports WPA2...)
– grawity
Dec 30 '18 at 20:49
@grawity, thanks: correction made above.
– DrMoishe Pippik
Dec 30 '18 at 21:22
Thanks for the replies. Sadly as of Windows 8.1 they removed the option to create Ad Hoc connection. Here’s the link social.technet.microsoft.com/Forums/es-ES/…
– madcoderz
Dec 31 '18 at 18:50
@madcoderz, You might try third-party software such as WiFi Ad-hoc Manager, download.cnet.com/WiFi-Ad-hoc-Manager/… , or Simple Ad-Hoc Creator, sourceforge.net/projects/simpleadhoccreator .
– DrMoishe Pippik
Dec 31 '18 at 20:24
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1389055%2fcreate-wifi-hotspot-without-internet-from-laptop%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
What you want seems to be a peer-to-peer, or Hosted Network. It has been built into Windows since XP, but access changed in Windows 8 and 10. Using Windows 10 built-in capability:
- Enable WiFi and turn off Airplane mode from the control panel.
- Press Windows and type
cmd
. Then press CtrlShiftEnter and clickYes
to confirm UAC for the Administrator CMD prompt. - Type (or copy/paste) to enter
netsh wlan show drivers
, listing network drivers. You should seeHosted network supported : Yes
... if not, drivers need to be installed or updated.
Enternetsh wlan set hostednetwork mode=allow ssid=mynetname key=mypwd
, replacing mynetname with your chosen ad hoc network name, and mypwd with your chosen password (8 to 63 characters long).- Enter
netsh wlan start hostednetwork
to start communication.
There is also a GUI to set up ad hoc networks, which I find takes a bit longer.
Windows 10 hosted networks employ WPA2 security (thanks to @grawity for correction).
Win8/10hostednetwork
is not ad-hoc; it's a regular managed ("infrastructure") network and uses standard WPA2. Same goes for "hotspot" features in most other operating systems. (Though even ad-hoc mode nowadays supports WPA2...)
– grawity
Dec 30 '18 at 20:49
@grawity, thanks: correction made above.
– DrMoishe Pippik
Dec 30 '18 at 21:22
Thanks for the replies. Sadly as of Windows 8.1 they removed the option to create Ad Hoc connection. Here’s the link social.technet.microsoft.com/Forums/es-ES/…
– madcoderz
Dec 31 '18 at 18:50
@madcoderz, You might try third-party software such as WiFi Ad-hoc Manager, download.cnet.com/WiFi-Ad-hoc-Manager/… , or Simple Ad-Hoc Creator, sourceforge.net/projects/simpleadhoccreator .
– DrMoishe Pippik
Dec 31 '18 at 20:24
add a comment |
What you want seems to be a peer-to-peer, or Hosted Network. It has been built into Windows since XP, but access changed in Windows 8 and 10. Using Windows 10 built-in capability:
- Enable WiFi and turn off Airplane mode from the control panel.
- Press Windows and type
cmd
. Then press CtrlShiftEnter and clickYes
to confirm UAC for the Administrator CMD prompt. - Type (or copy/paste) to enter
netsh wlan show drivers
, listing network drivers. You should seeHosted network supported : Yes
... if not, drivers need to be installed or updated.
Enternetsh wlan set hostednetwork mode=allow ssid=mynetname key=mypwd
, replacing mynetname with your chosen ad hoc network name, and mypwd with your chosen password (8 to 63 characters long).- Enter
netsh wlan start hostednetwork
to start communication.
There is also a GUI to set up ad hoc networks, which I find takes a bit longer.
Windows 10 hosted networks employ WPA2 security (thanks to @grawity for correction).
Win8/10hostednetwork
is not ad-hoc; it's a regular managed ("infrastructure") network and uses standard WPA2. Same goes for "hotspot" features in most other operating systems. (Though even ad-hoc mode nowadays supports WPA2...)
– grawity
Dec 30 '18 at 20:49
@grawity, thanks: correction made above.
– DrMoishe Pippik
Dec 30 '18 at 21:22
Thanks for the replies. Sadly as of Windows 8.1 they removed the option to create Ad Hoc connection. Here’s the link social.technet.microsoft.com/Forums/es-ES/…
– madcoderz
Dec 31 '18 at 18:50
@madcoderz, You might try third-party software such as WiFi Ad-hoc Manager, download.cnet.com/WiFi-Ad-hoc-Manager/… , or Simple Ad-Hoc Creator, sourceforge.net/projects/simpleadhoccreator .
– DrMoishe Pippik
Dec 31 '18 at 20:24
add a comment |
What you want seems to be a peer-to-peer, or Hosted Network. It has been built into Windows since XP, but access changed in Windows 8 and 10. Using Windows 10 built-in capability:
- Enable WiFi and turn off Airplane mode from the control panel.
- Press Windows and type
cmd
. Then press CtrlShiftEnter and clickYes
to confirm UAC for the Administrator CMD prompt. - Type (or copy/paste) to enter
netsh wlan show drivers
, listing network drivers. You should seeHosted network supported : Yes
... if not, drivers need to be installed or updated.
Enternetsh wlan set hostednetwork mode=allow ssid=mynetname key=mypwd
, replacing mynetname with your chosen ad hoc network name, and mypwd with your chosen password (8 to 63 characters long).- Enter
netsh wlan start hostednetwork
to start communication.
There is also a GUI to set up ad hoc networks, which I find takes a bit longer.
Windows 10 hosted networks employ WPA2 security (thanks to @grawity for correction).
What you want seems to be a peer-to-peer, or Hosted Network. It has been built into Windows since XP, but access changed in Windows 8 and 10. Using Windows 10 built-in capability:
- Enable WiFi and turn off Airplane mode from the control panel.
- Press Windows and type
cmd
. Then press CtrlShiftEnter and clickYes
to confirm UAC for the Administrator CMD prompt. - Type (or copy/paste) to enter
netsh wlan show drivers
, listing network drivers. You should seeHosted network supported : Yes
... if not, drivers need to be installed or updated.
Enternetsh wlan set hostednetwork mode=allow ssid=mynetname key=mypwd
, replacing mynetname with your chosen ad hoc network name, and mypwd with your chosen password (8 to 63 characters long).- Enter
netsh wlan start hostednetwork
to start communication.
There is also a GUI to set up ad hoc networks, which I find takes a bit longer.
Windows 10 hosted networks employ WPA2 security (thanks to @grawity for correction).
edited Dec 30 '18 at 21:22
answered Dec 30 '18 at 20:41
DrMoishe PippikDrMoishe Pippik
9,96221331
9,96221331
Win8/10hostednetwork
is not ad-hoc; it's a regular managed ("infrastructure") network and uses standard WPA2. Same goes for "hotspot" features in most other operating systems. (Though even ad-hoc mode nowadays supports WPA2...)
– grawity
Dec 30 '18 at 20:49
@grawity, thanks: correction made above.
– DrMoishe Pippik
Dec 30 '18 at 21:22
Thanks for the replies. Sadly as of Windows 8.1 they removed the option to create Ad Hoc connection. Here’s the link social.technet.microsoft.com/Forums/es-ES/…
– madcoderz
Dec 31 '18 at 18:50
@madcoderz, You might try third-party software such as WiFi Ad-hoc Manager, download.cnet.com/WiFi-Ad-hoc-Manager/… , or Simple Ad-Hoc Creator, sourceforge.net/projects/simpleadhoccreator .
– DrMoishe Pippik
Dec 31 '18 at 20:24
add a comment |
Win8/10hostednetwork
is not ad-hoc; it's a regular managed ("infrastructure") network and uses standard WPA2. Same goes for "hotspot" features in most other operating systems. (Though even ad-hoc mode nowadays supports WPA2...)
– grawity
Dec 30 '18 at 20:49
@grawity, thanks: correction made above.
– DrMoishe Pippik
Dec 30 '18 at 21:22
Thanks for the replies. Sadly as of Windows 8.1 they removed the option to create Ad Hoc connection. Here’s the link social.technet.microsoft.com/Forums/es-ES/…
– madcoderz
Dec 31 '18 at 18:50
@madcoderz, You might try third-party software such as WiFi Ad-hoc Manager, download.cnet.com/WiFi-Ad-hoc-Manager/… , or Simple Ad-Hoc Creator, sourceforge.net/projects/simpleadhoccreator .
– DrMoishe Pippik
Dec 31 '18 at 20:24
Win8/10
hostednetwork
is not ad-hoc; it's a regular managed ("infrastructure") network and uses standard WPA2. Same goes for "hotspot" features in most other operating systems. (Though even ad-hoc mode nowadays supports WPA2...)– grawity
Dec 30 '18 at 20:49
Win8/10
hostednetwork
is not ad-hoc; it's a regular managed ("infrastructure") network and uses standard WPA2. Same goes for "hotspot" features in most other operating systems. (Though even ad-hoc mode nowadays supports WPA2...)– grawity
Dec 30 '18 at 20:49
@grawity, thanks: correction made above.
– DrMoishe Pippik
Dec 30 '18 at 21:22
@grawity, thanks: correction made above.
– DrMoishe Pippik
Dec 30 '18 at 21:22
Thanks for the replies. Sadly as of Windows 8.1 they removed the option to create Ad Hoc connection. Here’s the link social.technet.microsoft.com/Forums/es-ES/…
– madcoderz
Dec 31 '18 at 18:50
Thanks for the replies. Sadly as of Windows 8.1 they removed the option to create Ad Hoc connection. Here’s the link social.technet.microsoft.com/Forums/es-ES/…
– madcoderz
Dec 31 '18 at 18:50
@madcoderz, You might try third-party software such as WiFi Ad-hoc Manager, download.cnet.com/WiFi-Ad-hoc-Manager/… , or Simple Ad-Hoc Creator, sourceforge.net/projects/simpleadhoccreator .
– DrMoishe Pippik
Dec 31 '18 at 20:24
@madcoderz, You might try third-party software such as WiFi Ad-hoc Manager, download.cnet.com/WiFi-Ad-hoc-Manager/… , or Simple Ad-Hoc Creator, sourceforge.net/projects/simpleadhoccreator .
– DrMoishe Pippik
Dec 31 '18 at 20:24
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1389055%2fcreate-wifi-hotspot-without-internet-from-laptop%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
What are you asking for? I see that you want to host a wireless network, but you are not being clear. You say that you want to host a hotspot from your laptop, but then want wireless routing from a modem. A hotspot is a piece of software that broadcasts your internet connection through your wireless card. A hotspot is also referred to as a wireless access point (with a network bridge). A modem is a piece of hardware that receives an internet connection from a coaxial cable and forwards it to either router or some other device connected over a rj45 cable.
– DaMaxContent
Dec 30 '18 at 21:04
There is an app called Zapya for mobile devices which makes a wireless access point without internet connection. This app somehow works without the bluetooth mode on and without internet and people can share documents and else. They can even create a little network through this app to even play games. So I thought I could do the same with my notebook to create a network as Zapya does
– madcoderz
Dec 30 '18 at 21:34