Restoring password of a WIndows hosted network
I have created a hosted network in my windows7 system. The netsh wlan show hostednetwork
command gives the output
Hosted network settings
-----------------------
Mode : Allowed
SSID name : "rambo"
Max number of clients : 100
Authentication : WPA2-Personal
Cipher : CCMP
Hosted network status
---------------------
Status : Started
BSSID : xx:xx:xx:xx:xx:xx
Radio type : 802.11n
Channel : 11
Number of clients : 1
xx:xx:xx:xx:xx:xx Authenticated
But I have forgot the password for this connection and after some googling I found the command netsh wlan refresh hostednetwork YourNewNetworkPassword
. But on executing this command it get the error
C:Usersuser>netsh wlan refresh hostednetwork rambo123
Invalid value "rambo123" for command option "data".
Usage: refresh hostednetwork [data=]key
I have no idea what is wrong with this command.
windows-7 wireless-networking netsh
add a comment |
I have created a hosted network in my windows7 system. The netsh wlan show hostednetwork
command gives the output
Hosted network settings
-----------------------
Mode : Allowed
SSID name : "rambo"
Max number of clients : 100
Authentication : WPA2-Personal
Cipher : CCMP
Hosted network status
---------------------
Status : Started
BSSID : xx:xx:xx:xx:xx:xx
Radio type : 802.11n
Channel : 11
Number of clients : 1
xx:xx:xx:xx:xx:xx Authenticated
But I have forgot the password for this connection and after some googling I found the command netsh wlan refresh hostednetwork YourNewNetworkPassword
. But on executing this command it get the error
C:Usersuser>netsh wlan refresh hostednetwork rambo123
Invalid value "rambo123" for command option "data".
Usage: refresh hostednetwork [data=]key
I have no idea what is wrong with this command.
windows-7 wireless-networking netsh
add a comment |
I have created a hosted network in my windows7 system. The netsh wlan show hostednetwork
command gives the output
Hosted network settings
-----------------------
Mode : Allowed
SSID name : "rambo"
Max number of clients : 100
Authentication : WPA2-Personal
Cipher : CCMP
Hosted network status
---------------------
Status : Started
BSSID : xx:xx:xx:xx:xx:xx
Radio type : 802.11n
Channel : 11
Number of clients : 1
xx:xx:xx:xx:xx:xx Authenticated
But I have forgot the password for this connection and after some googling I found the command netsh wlan refresh hostednetwork YourNewNetworkPassword
. But on executing this command it get the error
C:Usersuser>netsh wlan refresh hostednetwork rambo123
Invalid value "rambo123" for command option "data".
Usage: refresh hostednetwork [data=]key
I have no idea what is wrong with this command.
windows-7 wireless-networking netsh
I have created a hosted network in my windows7 system. The netsh wlan show hostednetwork
command gives the output
Hosted network settings
-----------------------
Mode : Allowed
SSID name : "rambo"
Max number of clients : 100
Authentication : WPA2-Personal
Cipher : CCMP
Hosted network status
---------------------
Status : Started
BSSID : xx:xx:xx:xx:xx:xx
Radio type : 802.11n
Channel : 11
Number of clients : 1
xx:xx:xx:xx:xx:xx Authenticated
But I have forgot the password for this connection and after some googling I found the command netsh wlan refresh hostednetwork YourNewNetworkPassword
. But on executing this command it get the error
C:Usersuser>netsh wlan refresh hostednetwork rambo123
Invalid value "rambo123" for command option "data".
Usage: refresh hostednetwork [data=]key
I have no idea what is wrong with this command.
windows-7 wireless-networking netsh
windows-7 wireless-networking netsh
edited Dec 17 '18 at 10:02
YakovL
1921111
1921111
asked Jun 1 '14 at 12:43
Nandakumar VNandakumar V
138115
138115
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
You could reset your password by setting the whole network up again ie (via here):
netsh wlan set hostednetwork mode=allow ssid=rambo key=rambo123 keyUsage=persistent
or
netsh wlan set hostednetwork mode=allow ssid=rambo key=rambo123 keyUsage=temporary
Although, if you've forgotten your password, all you need to do is (via here):
netsh wlan show hostednetwork setting=security
Then you'll see User security key:
and your password
thanks @shubsetting=security
worked perfectly.
– Nandakumar V
Jun 2 '14 at 14:30
any idea what was wrong with therefresh hostednetwork
command... Its still haunting me.
– Nandakumar V
Jun 2 '14 at 14:31
@NandakumarV I'm sorry, I don't know. Although when I tested, this worked:netsh wlan refresh hostednetwork key
which makes me think thatrefresh
actually refreshes the key ie. makes sure it works rather than actually change it becausekey
is the 'name' of the password field. Please +1 if you found the answer helpful :)
– ᔕᖺᘎᕊ
Jun 2 '14 at 17:32
add a comment |
Try this format:
netsh wlan set hostednetwork [ssid=]<ssid> [key=]<passphrase> [keyUsage=]persistent|temporary
(Source)
So to permanently set the Rambo network's passphrase to "rambo123" it'd be something like:
netsh wlan set hostednetwork rambo rambo123 persistent
In the Windows command-line world, things inare optional, that's why they're there. :)
– Ƭᴇcʜιᴇ007
Jun 1 '14 at 14:17
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%2f762300%2frestoring-password-of-a-windows-hosted-network%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
You could reset your password by setting the whole network up again ie (via here):
netsh wlan set hostednetwork mode=allow ssid=rambo key=rambo123 keyUsage=persistent
or
netsh wlan set hostednetwork mode=allow ssid=rambo key=rambo123 keyUsage=temporary
Although, if you've forgotten your password, all you need to do is (via here):
netsh wlan show hostednetwork setting=security
Then you'll see User security key:
and your password
thanks @shubsetting=security
worked perfectly.
– Nandakumar V
Jun 2 '14 at 14:30
any idea what was wrong with therefresh hostednetwork
command... Its still haunting me.
– Nandakumar V
Jun 2 '14 at 14:31
@NandakumarV I'm sorry, I don't know. Although when I tested, this worked:netsh wlan refresh hostednetwork key
which makes me think thatrefresh
actually refreshes the key ie. makes sure it works rather than actually change it becausekey
is the 'name' of the password field. Please +1 if you found the answer helpful :)
– ᔕᖺᘎᕊ
Jun 2 '14 at 17:32
add a comment |
You could reset your password by setting the whole network up again ie (via here):
netsh wlan set hostednetwork mode=allow ssid=rambo key=rambo123 keyUsage=persistent
or
netsh wlan set hostednetwork mode=allow ssid=rambo key=rambo123 keyUsage=temporary
Although, if you've forgotten your password, all you need to do is (via here):
netsh wlan show hostednetwork setting=security
Then you'll see User security key:
and your password
thanks @shubsetting=security
worked perfectly.
– Nandakumar V
Jun 2 '14 at 14:30
any idea what was wrong with therefresh hostednetwork
command... Its still haunting me.
– Nandakumar V
Jun 2 '14 at 14:31
@NandakumarV I'm sorry, I don't know. Although when I tested, this worked:netsh wlan refresh hostednetwork key
which makes me think thatrefresh
actually refreshes the key ie. makes sure it works rather than actually change it becausekey
is the 'name' of the password field. Please +1 if you found the answer helpful :)
– ᔕᖺᘎᕊ
Jun 2 '14 at 17:32
add a comment |
You could reset your password by setting the whole network up again ie (via here):
netsh wlan set hostednetwork mode=allow ssid=rambo key=rambo123 keyUsage=persistent
or
netsh wlan set hostednetwork mode=allow ssid=rambo key=rambo123 keyUsage=temporary
Although, if you've forgotten your password, all you need to do is (via here):
netsh wlan show hostednetwork setting=security
Then you'll see User security key:
and your password
You could reset your password by setting the whole network up again ie (via here):
netsh wlan set hostednetwork mode=allow ssid=rambo key=rambo123 keyUsage=persistent
or
netsh wlan set hostednetwork mode=allow ssid=rambo key=rambo123 keyUsage=temporary
Although, if you've forgotten your password, all you need to do is (via here):
netsh wlan show hostednetwork setting=security
Then you'll see User security key:
and your password
edited Feb 22 '15 at 4:52
Abhijeet Kasurde
16319
16319
answered Jun 1 '14 at 14:04
ᔕᖺᘎᕊᔕᖺᘎᕊ
5,15842341
5,15842341
thanks @shubsetting=security
worked perfectly.
– Nandakumar V
Jun 2 '14 at 14:30
any idea what was wrong with therefresh hostednetwork
command... Its still haunting me.
– Nandakumar V
Jun 2 '14 at 14:31
@NandakumarV I'm sorry, I don't know. Although when I tested, this worked:netsh wlan refresh hostednetwork key
which makes me think thatrefresh
actually refreshes the key ie. makes sure it works rather than actually change it becausekey
is the 'name' of the password field. Please +1 if you found the answer helpful :)
– ᔕᖺᘎᕊ
Jun 2 '14 at 17:32
add a comment |
thanks @shubsetting=security
worked perfectly.
– Nandakumar V
Jun 2 '14 at 14:30
any idea what was wrong with therefresh hostednetwork
command... Its still haunting me.
– Nandakumar V
Jun 2 '14 at 14:31
@NandakumarV I'm sorry, I don't know. Although when I tested, this worked:netsh wlan refresh hostednetwork key
which makes me think thatrefresh
actually refreshes the key ie. makes sure it works rather than actually change it becausekey
is the 'name' of the password field. Please +1 if you found the answer helpful :)
– ᔕᖺᘎᕊ
Jun 2 '14 at 17:32
thanks @shub
setting=security
worked perfectly.– Nandakumar V
Jun 2 '14 at 14:30
thanks @shub
setting=security
worked perfectly.– Nandakumar V
Jun 2 '14 at 14:30
any idea what was wrong with the
refresh hostednetwork
command... Its still haunting me.– Nandakumar V
Jun 2 '14 at 14:31
any idea what was wrong with the
refresh hostednetwork
command... Its still haunting me.– Nandakumar V
Jun 2 '14 at 14:31
@NandakumarV I'm sorry, I don't know. Although when I tested, this worked:
netsh wlan refresh hostednetwork key
which makes me think that refresh
actually refreshes the key ie. makes sure it works rather than actually change it because key
is the 'name' of the password field. Please +1 if you found the answer helpful :)– ᔕᖺᘎᕊ
Jun 2 '14 at 17:32
@NandakumarV I'm sorry, I don't know. Although when I tested, this worked:
netsh wlan refresh hostednetwork key
which makes me think that refresh
actually refreshes the key ie. makes sure it works rather than actually change it because key
is the 'name' of the password field. Please +1 if you found the answer helpful :)– ᔕᖺᘎᕊ
Jun 2 '14 at 17:32
add a comment |
Try this format:
netsh wlan set hostednetwork [ssid=]<ssid> [key=]<passphrase> [keyUsage=]persistent|temporary
(Source)
So to permanently set the Rambo network's passphrase to "rambo123" it'd be something like:
netsh wlan set hostednetwork rambo rambo123 persistent
In the Windows command-line world, things inare optional, that's why they're there. :)
– Ƭᴇcʜιᴇ007
Jun 1 '14 at 14:17
add a comment |
Try this format:
netsh wlan set hostednetwork [ssid=]<ssid> [key=]<passphrase> [keyUsage=]persistent|temporary
(Source)
So to permanently set the Rambo network's passphrase to "rambo123" it'd be something like:
netsh wlan set hostednetwork rambo rambo123 persistent
In the Windows command-line world, things inare optional, that's why they're there. :)
– Ƭᴇcʜιᴇ007
Jun 1 '14 at 14:17
add a comment |
Try this format:
netsh wlan set hostednetwork [ssid=]<ssid> [key=]<passphrase> [keyUsage=]persistent|temporary
(Source)
So to permanently set the Rambo network's passphrase to "rambo123" it'd be something like:
netsh wlan set hostednetwork rambo rambo123 persistent
Try this format:
netsh wlan set hostednetwork [ssid=]<ssid> [key=]<passphrase> [keyUsage=]persistent|temporary
(Source)
So to permanently set the Rambo network's passphrase to "rambo123" it'd be something like:
netsh wlan set hostednetwork rambo rambo123 persistent
answered Jun 1 '14 at 14:00
Ƭᴇcʜιᴇ007Ƭᴇcʜιᴇ007
98.9k14156212
98.9k14156212
In the Windows command-line world, things inare optional, that's why they're there. :)
– Ƭᴇcʜιᴇ007
Jun 1 '14 at 14:17
add a comment |
In the Windows command-line world, things inare optional, that's why they're there. :)
– Ƭᴇcʜιᴇ007
Jun 1 '14 at 14:17
In the Windows command-line world, things in
are optional, that's why they're there. :)– Ƭᴇcʜιᴇ007
Jun 1 '14 at 14:17
In the Windows command-line world, things in
are optional, that's why they're there. :)– Ƭᴇcʜιᴇ007
Jun 1 '14 at 14:17
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f762300%2frestoring-password-of-a-windows-hosted-network%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