bdpEMC-spam
Contributor
Contributor

Try this:

On a Windows command prompt:

netstat -ano | find ":443" | find "LISTENING"

The last column is the process id that is listening on that port.

or on Linux:

lsof -nP | grep :443

The first column should be process name and 2nd column the PID. Cna do a "ps auxwww | grep xxxx" to see more details on that PID


You can start task manager to see what process it is - may need to enable the Process ID/PID column.

This KB mentions how to change sharing port on full Workstation, not sure sharing exists on player as I haven't used Player:

https://kb.vmware.com/kb/2005585

View solution in original post

0 Kudos