Find out which ports are occupied
This page describes how to check if some port is occupied on MS Windows. YSoft SafeQ requires various ports to be available and occupying required ports by third party applications may lead to various issues (e.g. failure during installation)
It is possible to use windows build in application netstat to display all occupied ports.
Example:
run the command-line as an administrator
launch command:
CODEnetstat -abno > ports.txt
output from the command is written to ports.txt with content like this:
CODEProto Local Address Foreign Address State PID TCP 0.0.0.0:25 0.0.0.0:0 LISTENING 2412 [hMailServer.exe]
output means the port 25 is occupied by application hMailServer.exe
The similar set of information is provided in a Task Manager -> tab Performance -> button "Open Resource Monitor" -> tab Network -> section Listening Ports
