Tutorial [HOW-TO] Have a homemade Streetpass Relay

What method you are using?

  • Linux

    Votes: 93 7.9%
  • Android

    Votes: 133 11.4%
  • Router

    Votes: 226 19.3%
  • Windows

    Votes: 426 36.4%
  • A pony with a wifi antenna O.o?

    Votes: 292 25.0%

  • Total voters
    1,170
Status
Not open for further replies.

Khaeroth

Well-Known Member
Newcomer
Joined
Sep 4, 2014
Messages
49
Trophies
0
Age
29
XP
100
Country
Venezuela
Now wmic nic... and the rest of the mentioned above anyway!

The AP isn't creating due to the error, I think. So, I can't do the two minutes interval thing and stuff.

> reg query output:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0007
NetworkAddress REG_SZ 00156793B658

The wmic nic get caption,macaddress,pnpdeviceid results is attached.
 

Attachments

  • nics.txt
    3.1 KB · Views: 268

duke_srg

Well-Known Member
Member
Joined
Mar 1, 2011
Messages
1,862
Trophies
0
Age
44
Location
Moscow
XP
807
Country
Serbia, Republic of
The AP isn't creating due to the error, I think. So, I can't do the two minutes interval thing and stuff.

> reg query output:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0007
NetworkAddress REG_SZ 00156793B658
The wmic nic get caption,macaddress,pnpdeviceid results is attached.

And for the?

reg query HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0017 /v NetworkAddress

Now just delete the custom set MACs from the registry
reg delete HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0007 /v NetworkAddress
reg delete HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0017 /v NetworkAddress
 

Khaeroth

Well-Known Member
Newcomer
Joined
Sep 4, 2014
Messages
49
Trophies
0
Age
29
XP
100
Country
Venezuela
And for the?

reg query HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0017 /v NetworkAddress

Now just delete the custom set MACs from the registry
reg delete HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0007 /v NetworkAddress
reg delete HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0017 /v NetworkAddress


Oops.

>Reg query output:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0017​
NetworkAddress REG_SZ 4E53504F4FBA​

Done. I deleted them.
 

duke_srg

Well-Known Member
Member
Joined
Mar 1, 2011
Messages
1,862
Trophies
0
Age
44
Location
Moscow
XP
807
Country
Serbia, Republic of
Oops.

>Reg query output:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0017​
NetworkAddress REG_SZ 4E53504F4FBA​

Done. I deleted them.

Ok now jsut stop/start script and launch manually in 2 minutes, then again wmic and reg query.
 

Khaeroth

Well-Known Member
Newcomer
Joined
Sep 4, 2014
Messages
49
Trophies
0
Age
29
XP
100
Country
Venezuela
Ok now jsut stop/start script and launch manually in 2 minutes, then again wmic and reg query.


The start and stop command still gave me the same error box, so, no attwifi network created.

The both reg queries now say: The system could not find the key of the registry, or something like that.

For some reason, doing this is weirdly fun. (?)
 

Attachments

  • nics.txt
    21.5 KB · Views: 338

duke_srg

Well-Known Member
Member
Joined
Mar 1, 2011
Messages
1,862
Trophies
0
Age
44
Location
Moscow
XP
807
Country
Serbia, Republic of
The start and stop command still gave me the same error box, so, no attwifi network created.
The both reg queries now say: The system could not find the key of the registry, or something like that.
This is the normal system state, this registry key is only exists when hardware address was overriden - the physical adaptor's mac seems was changed previously by macshift (you have tried different methods right?) and the hosted interface MAC was changed by previous version of my script, when it did not detect the right adapter.

So for now,
nzone.vbs start BASE256
gaves you an error on line 150, right?
 

Khaeroth

Well-Known Member
Newcomer
Joined
Sep 4, 2014
Messages
49
Trophies
0
Age
29
XP
100
Country
Venezuela
This is the normal system state, this registry key is only exists when hardware address was overriden - the physical adaptor's mac seems was changed previously by macshift (you have tried different methods right?) and the hosted interface MAC was changed by previous version of my script, when it did not detect the right adapter.

So for now,
nzone.vbs start BASE256
gaves you an error on line 150, right?


Yes, I tried with macshift before I knew of the script, and yes, thats the error that gives me.
 

duke_srg

Well-Known Member
Member
Joined
Mar 1, 2011
Messages
1,862
Trophies
0
Age
44
Location
Moscow
XP
807
Country
Serbia, Republic of
Ok, let's try all in manual
Code:
schtasks /tn nzone /change /disable
set hostednetwork mode=allow ssid=""attwifi"" key=""nintendozone""
netsh wlan start hostednetwork
wmic nic get caption,macaddress,pnpdeviceid > %temp%\nzone_text.log
reg query HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0007 /v NetworkAddress >> %temp%\nzone_text.log
reg query HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0017 /v NetworkAddress >> %temp%\nzone_text.log
netsh wlan stop hostednetwork
reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0007 /v NetworkAddress /t REG_SZ /d 001122334455
netsh interface set interface "Intel(R) WiFi Link 5100 AGN" disable  >> %temp%\nzone_text.log
netsh interface set interface "Intel(R) WiFi Link 5100 AGN" enable  >> %temp%\nzone_text.log
set hostednetwork mode=allow ssid=""attwifi"" key=""nintendozone""
netsh wlan start hostednetwork
wmic nic get caption,macaddress,pnpdeviceid >> %temp%\nzone_text.log
reg query HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0007 /v NetworkAddress >> %temp%\nzone_text.log
reg query HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0017 /v NetworkAddress >> %temp%\nzone_text.log
netsh wlan stop hostednetwork
reg delete HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0007 /v NetworkAddress
netsh interface set interface "Intel(R) WiFi Link 5100 AGN" disable  >> %temp%\nzone_text.log
netsh interface set interface "Intel(R) WiFi Link 5100 AGN" enable  >> %temp%\nzone_text.log
locate nzone_text.log in the temp directory and attach it
 

saphris

Member
Newcomer
Joined
Apr 14, 2014
Messages
14
Trophies
0
Age
37
XP
88
Country
United States
Can anyone help me with windows 8.1 64bit? (about Homepass).
I've been trying for quite a few days now, and i'm able to get my 3ds to connect to the wifi, but when it gets to the internet part it fails. I'm assuming it might be some sort of settings in the modem/router that i need to fix, but i dont know what.
I had this working about 5 months ago. Then i gave up my internet (got too pricey), and recently i started with a new company (aka a different modem/router and internet type being used), but i've not been able to get it to work.

I have macshift, and i open cmd with admin, and then put in the codes that used to make it work...
Code:
cd C:\Users\Saphris\Desktop\macshift
netsh wlan set hostednetwork mode=allow
macshift -i "Wireless" 4E53504F4F40
(the mac addy just the first one i put in usually)
Then I open up the virtual router manager v1.0 , and set it to attwifi with a password ('Cause it wont let me leave it blank). and then share the ethernet connect, and i start.
I turn on my 3ds, and open up the settings and scan the networks manually, and add it as my connection, and put in the password, and test the connection. that's where i'm stuck (what i mentioned above, is what happens next).

Previously i was using fiber optics, and a linksys modem/router.
now i'm using dsl with a netgear "7550" one (frontier).

EDIT: Also i think i forgot to mention, I have the desktop with the ethernet cord connected through the broadcom network card, and the internet works find for the desktop that's directly connected to it. and anything that connects to the modem itself works with internet connection as well. So the desktop isn't recieving the internet through the wireless card, it's sending the internet data out that its getting from the ethernet cord (if that makes sense ..)- pretty much, it's connected correctly(as far as i know).
 

duke_srg

Well-Known Member
Member
Joined
Mar 1, 2011
Messages
1,862
Trophies
0
Age
44
Location
Moscow
XP
807
Country
Serbia, Republic of
Can anyone help me with windows 8.1 64bit?.
Just open the first post an click Before anything else, follow the short guide to install my script. No virtual router or macshift needed, only the script and bare windows 7 or above. The rest is fully automated. Though depending on a wireless driver it may require some debugging, feel free to PM me.
 

saphris

Member
Newcomer
Joined
Apr 14, 2014
Messages
14
Trophies
0
Age
37
XP
88
Country
United States
Thanks!

So when i run it, i get "Windows Script Host" error box that has
Code:
Script: C:\Users\Saphris\Desktop\nzone.vbs
Line: 150
Char: 3
Error: Invalid parameter
Code: 80041008
Source: SWbemObjectSet

... oh wait.. i saw something about an error and line 150 up, so gonna scroll up for a second...
oh.. okay, so... i too have used macshift.. :unsure:

EDIT: I get the error no matter what comand i use (BASE256 or BASE16,GBATEMP or BASE16)
I've also tried to tell it to stop it, and it gives that same error. I've ran a wmic nic, and got a bunch of stuff. some saying false, but most saying true...
I haven't tried any registry deleting.. because i dont know where or what to delete... :/

PS. i've just been using "saphris" instead of the real name. but you'll prolly see the real name in the file lol.
 

Attachments

  • administratorcommandprompt.txt
    10.8 KB · Views: 499

Khaeroth

Well-Known Member
Newcomer
Joined
Sep 4, 2014
Messages
49
Trophies
0
Age
29
XP
100
Country
Venezuela
Ok, let's try all in manual

locate nzone_text.log in the temp directory and attach it

I pasted the whole thing in the cmd and gave me this. (Or had to enter one by one?)
Oh, and the reg queries got the same "The system could not find..."
 

Attachments

  • nzone_text.txt
    12.5 KB · Views: 310

duke_srg

Well-Known Member
Member
Joined
Mar 1, 2011
Messages
1,862
Trophies
0
Age
44
Location
Moscow
XP
807
Country
Serbia, Republic of
I pasted the whole thing in the cmd and gave me this. (Or had to enter one by one?)

For both of you: Sorry, just found a typo with the last script fix, just update script and try one more time now!

2 saphiris: It do not matter which list is used, just the delay between scheduled MAC change. You should not alter a register unless you're absolutely sure what are you doing. Messages for Khaeroth with registre altering was only for script debugging, normally it alters registry automatically.
 

Khaeroth

Well-Known Member
Newcomer
Joined
Sep 4, 2014
Messages
49
Trophies
0
Age
29
XP
100
Country
Venezuela
For both of you: Sorry, just found a typo with the last script fix, just update script and try one more time now!

2 saphiris: It do not matter which list is used, just the delay between scheduled MAC change. You should not alter a register unless you're absolutely sure what are you doing. Messages for Khaeroth with registre altering was only for script debugging, normally it alters registry automatically.


Thanks! Now I have some new results. When I run "nzone,vbs start BASE256,GBATEMP" the Wireless adapter changes its MAC succesfully but the attwifi's MAC doesn't change, even when I wait two minutes.
 

Khaeroth

Well-Known Member
Newcomer
Joined
Sep 4, 2014
Messages
49
Trophies
0
Age
29
XP
100
Country
Venezuela
wmic nic, reg and so on please.

> reg query HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0007 /v NetworkAddress

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0007​
NetworkAddress REG_SZ 4E53504F4F25​

> reg query HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0017 /v NetworkAddress

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0017​
NetworkAddress REG_SZ 4E53504F4F2F​

> wmic nic + wmic nic get caption,macaddress,pnpdeviceid:
 

Attachments

  • nics.txt
    21.5 KB · Views: 323

Xashas

Member
Newcomer
Joined
Sep 13, 2014
Messages
7
Trophies
0
Age
34
XP
53
Country
Mexico
Hello, i have been reading the thread and doing a lot of stuff that its mentioned in here. I did the steps from Windows 7 from DarkKnigh_t and also from Elridge, at the end i can connect to the internet with my 3ds and everything seems fine, Virtual router show my 3ds as Peer conected, the problem is when I close the 3ds to put it in sleep mode, it disappears from the Virtual Router and even waiting 10minutes or more won't make the 3ds to appear again until i open it.
I haven't got any single Streetpass from this, I even tried to be at Mii plaza with the 3ds open to see if it works because it appears in the Virtual Router while active, but still can't get streetpass.
What can it be? which other information do I need to give?
 
Status
Not open for further replies.

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • No one is chatting at the moment.
    ZeroT21 @ ZeroT21: only ps5 updated to latest firmware can go on psn, jailbroken ones just don't use psn or they...