How to Install Sish on Windows 10
Sish is a tool that allows you to expose local servers to the internet. It is available on GitHub, and in this tutorial, we will show you how to install sish on Windows 10.
Prerequisites
- A computer running Windows 10
- An internet connection
- Git
Steps
Open a command prompt as an administrator.
Install Git Bash for Windows. You can download it from here.
Next, install Go for Windows. You can download it from here.
After installing Git and Go, open Git Bash and run the following command to get sish:
go get -u github.com/antoniomika/sishAfter the download is complete, navigate to the sish directory by running the following command:
cd ~/go/src/github.com/antoniomika/sish/Run the following command to build and install sish:
go build -o sishAfter the build is complete, run the following command to run sish in the background:
nohup ./sish &The
nohupcommand prevents sish from being terminated when you close the command prompt.If you want sish to start automatically when you boot your computer, you can create a batch file and copy it to the startup folder.
Create a new text file called
sish.batand add the following command:start /d "C:/Users/<username>/go/src/github.com/antoniomika/sish/" sish.exeReplace
<username>with your Windows username.Save the file and copy it to the startup folder. The path to the startup folder is
C:\Users\<username>\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup.To open the startup folder, press
Windows + Rand typeshell:startup. Press Enter.
Sish is now installed and running on your computer. You can access it from anywhere on the internet by connecting to
<yourcomputername>.sish.services.- To find your computer name, open the command prompt and type
hostname. Press Enter.
- To find your computer name, open the command prompt and type
Congratulations! You have successfully installed sish on Windows 10.