Dota 2
Not enough ratings
Creating Hotspot Server
By Savvake
Now, there is no option to make your PC as a hotspot server in windows 8 or later anymore.
Many people often try to do so in order to connect between their PCs. There was an Ad-HOC feature available in windows 7 or earlier to do so. But unfortunately, in the later update, they delete this menu that create a hotspot server. However, actually the system can still do it anyway, with a few tricks of course.

I've created a simple cmd command that allows you to manage your PC's basic hotspot feature.
I made it interactive enough and user friendly, so everyone could use it with ease.

The system will use your WiFi device, which means it will terminate your current WiFi connection. Because as known, you can't stream hotspot and recieve another WiFi at the same time.

Hope you guys enjoy
Any question, let me know in the comments, or you can massage me directly via steam or e-mail.
Thank you
   
Award
Favorite
Favorited
Unfavorite
Quick how-to
Let's just straight to the point.
1) Open notepad.
2) Copy this code:

@ECHO OFF
color b1
echo ========= SYSTEM'S HOTSPOT FIXER =========
echo === -- WELCOME -- ===
echo.
echo ##### Assalaamu'alaikum, I am SYSTEM'S HOTSPOT FATCHER, SHF for short
echo ##### I'll help u with ur hotspot stuffs
echo ##### U HAVE to start me as an admin, otherwise i cant start the hotspot
pause
cls
color 9f
echo ========= SYSTEM'S HOTSPOT FIXER =========
echo === -- MAIN MENU -- ===
echo.
goto JUMPCLR
:HELP
color 0f
:JUMPCLR
echo ##### Commands are as below, without quotes
echo ##### "e" edit/setup hotspot
echo ##### "st" start hotspot
echo ##### "sh" show hotspot's stat
echo ##### "x" stop hotspot
echo ##### "ip" show ip settings
echo ##### "h" show this help
echo ##### ------
echo ##### "q" quit me
pause
color 9f
echo.
echo.
echo ##### So, what do u want me 2 do?
goto JUMP
:MAIN
pause
cls
color 9f
echo ========= SYSTEM'S HOTSPOT FIXER =========
echo === -- MAIN MENU -- ===
echo.
echo ##### What else do u want me 2 do? ("h" to show commands)
:JUMP
set/p input=YOU:
if %input% == e goto SETUP
if %input% == st goto START
if %input% == sh goto SHOW
if %input% == x goto STOP
if %input% == q goto END
if %input% == ip goto IP
if %input% == h goto HELP
echo ##### use the available commands
echo ##### use lowcase n without quotes
cls
goto MAIN

:SETUP
cls
color 8f
echo ========= SYSTEM'S HOTSPOT FIXER =========
echo === -- SETTING -- ===
echo.
echo ##### "e" if U prefer the default
echo ##### "t" to change ur pass temporarily, to prevent others from using it
echo ##### What shall I name ur hotspot?
set/p name=YOU:
if %name% == e goto DEF
if %name% == t goto TEMP
cls
echo ========= SYSTEM'S HOTSPOT FIXER =========
echo === -- SETTING -- ===
echo.
echo ##### And the password?
echo ##### U HAVE to type more than 8 characters
set/p pass=YOU:
netsh wlan set hostednetwork ssid=%name% key=%pass%
cls
echo ========= SYSTEM'S HOTSPOT FIXER =========
echo === -- SETTING -- ===
echo.
echo ##### Ur hotspot id is : %name%
echo ##### Ur hotspot key is: %pass%
echo ##### K, ready 2 start now.
goto MAIN
:DEF
netsh wlan set hostednetwork ssid=SHF key=qwerasdf
echo ##### YOU:r hotspot id is : SHF
echo ##### YOU:r hotspot key is: qwerasdf
echo ##### K, ready 2 start now.
goto MAIN
:TEMP
echo ##### It will restart ur hotspot, type "e" to cancel.
echo ##### What's the temp password?
echo ##### U HAVE to type more than 8 characters
set/p tpass=YOU:
if %tpass% == e goto SETUP
netsh wlan set hostednetwork key=%tpass% keyUsage=temporary
netsh wlan stop hostednetwork
netsh wlan start hostednetwork
echo ##### Ur temporary hotspot key is: %tpass%
echo ##### K, changed and restarted.
echo ##### pass will reset next hotspot's start
goto MAIN

:START
cls
color a0
echo ========= SYSTEM'S HOTSPOT FIXER =========
echo === -- START -- ===
echo.
echo ##### I will start the hotspot
pause
netsh wlan start hostednetwork
echo ##### Done, glhf there.
goto MAIN

:SHOW
cls
color e0
echo ========= SYSTEM'S HOTSPOT FIXER =========
echo === -- SHOW -- ===
echo.
echo ##### U just wanna check? Fine,
pause
netsh wlan show hostednetwork
echo ##### There u go. Dat's all wut i no
goto MAIN

:STOP
cls
color cf
echo ========= SYSTEM'S HOTSPOT FIXER =========
echo === -- STOP -- ===
echo.
echo ##### I will stop the hotspot
pause
netsh wlan stop hostednetwork
echo ##### Dat's it, i've stopped it.
goto MAIN

:IP
cls
color 3f
echo ========= SYSTEM'S HOTSPOT FIXER =========
echo === -- IP -- ===
echo.
echo ##### I will show u ur IP info
pause
ipconfig
echo.
echo.
echo ##### Well, now scroll up and find:
echo ##### IPv4 Adress, thats ur current ip adress
goto MAIN

:END
cls
color 0c
echo ========= SYSTEM'S HOTSPOT FIXER =========
echo === -- QUIT -- ===
echo.
echo ##### Alright, bye then. Glad 2 help
echo.
echo.
echo.
echo credit: www.soenniy@gmail.com
pause

3) Name it as you want "[name].cmd", choose file type to "All types", save

4) Run
File link
Or if you are too lazy to do so, just download it.

It's just a .cmd file
Just download it and run. That simple.
here is the link: (remove the first dot)

https://docs7..google.com/uc?id=1CBZHlvRQvubYqhhdmRuPd2m0XMew16ss