How to Install Asterisk from https://www.asterisk.org/ on Windows 10
Asterisk is a powerful open-source communication platform that enables users to create and deploy voice and video communication solutions. Here are the steps to install Asterisk on Windows 10:
Step 1: Downloading Required Software
- Go to the Asterisk download page and download the Windows version of Asterisk.
- Download Visual C++ Redistributable package from Microsoft official website.
- Download and extract PuTTY, a free SSH and Telnet client, that we will use later.
Step 2: Installing Asterisk on Windows 10
- After downloading Asterisk, extract the zip file to the desired location.
- Open the Windows Command Prompt with Administrator privileges by searching for "cmd" in the Windows Start menu, then right-clicking the Command Prompt icon, and selecting "Run as Administrator."
- Navigate to the Asterisk directory using the
cdcommand. - Run the command
.\configure - Run the command
make menuselectto open the Asterisk configuration menu. Here, you can customize your installation by selecting which modules you want to install, adjusting settings, etc. - Select "Save & Exit" when you have finished customizing your installation.
- Run
maketo build the executable files. - Run
make installto install Asterisk onto your system.
Step 3: Starting and Testing Asterisk
- Navigate to the Asterisk installation directory and open the "conf" folder.
- In the "conf" folder, you will find a file named "asterisk.conf." Use a text editor to open this file.
- Search for the line "runuser = asterisk" and replace "asterisk" with your Windows user account name.
- Search for the line "rungroup = asterisk" and replace "asterisk" with your Windows user group name.
- Save and close the file.
- Launch a new Command Prompt with Administrator privileges.
- Navigate to the Asterisk installation directory.
- Run the command
.\asterisk –vvvvvcto start Asterisk. - Once Asterisk has started, you can test it by opening PuTTY and establishing a SSH connection to "localhost" with port "22".
- In the PuTTY terminal, type in
asterisk -rvto open the Asterisk command-line interface. - You can now use the Asterisk CLI to interact with your installation and configure your communications network.
Congratulations, you have successfully installed Asterisk on Windows 10!