I assume you already tried restarting your computer. Have you tried this: Use the netstat command to find the program that uses port 1723. Then, end the process for that program. To do this, follow these steps: Click Start, click Run, type cmd.exe in the Open box, and then click OK. At the command prompt, type the following command, and then press ENTER: netstat -aon In the output that is displayed, identify the process ID for the program, if any, that uses TCP port 1723. At the command prompt, type the following command, and then press ENTER: taskkill /PID PID /F Note The taskkill command ends the process that corresponds to the process ID number. The /F option is used to forcefully end the process. At the command prompt, type exit, and then press ENTER to quit the command prompt. That might tell you which program/service is causing issues. source: https://support.microsoft.com/en-us/help/885959/error-633-the-modem-or-other-connecting-device-is-already-in-use-error
... View more