ngrok portal 02-19-2015d1007
2015-04-17ngrok portal 02-19-2015d1007
port forward without router
tunneling software
proxy software
How to use ngrok?
- Just navigate to the ngrok.exe file from the cmd prompt. Then type ngrok -subdomain=example 80
The first time you run ngrok ou can authorize it to get custom subdomains and more features
command at terminal
ngrok authtoken 2atKFi1S6dqf7rMZdySpp_5GEXRuMN9HBojcrQT5RCk
How to make ngrok run at system startup
- create a start_ngrok.bat file somewhere (the ngrok folder is probably a good location) and fill it with the following
C:\ngrok\ngrok -subdomain=azim58 80
- create a hidecmd.vbs file in the same folder and fill it with the following (see how to hide windows command prompt after running a batch file 03-19-2015d1056)
Set oShell = CreateObject ("Wscript.Shell")
Dim strArgs
strArgs = "cmd /c start_ngrok.bat"
oShell.Run strArgs, 0, false
- make the hidecmd.vbs file run at startup
-put a shortcut to hidecmd.vbs here C:\Users\Kurt\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
or
-6 Click the Start button , click All Programs, right-click the Startup folder, and then click Open.
right click, new shortcut, paste the full filepath to the hidecmd.vbs file
See also