Find port no
Solved/Closed
Related:
- Xvideoservicethief 2018 linux hdd usb 3.0 download windows 10
- Xvideoservicethief 2018 linux hdd usb 3.0 download windows - Best answers
- Xvideoservicethief 2018 linux hdd usb 3.0 download windows 7 - Best answers
- Xvideoservicethief 2018 linux hdd usb port not working problem solution - Forum - Hardware
- USB HDD's are not recognised on new computer - Forum - Hard Drive/SSD
- USB port storage not working ✓ - Forum - Hardware
- How many no of ports and cables are possible in hub? - Articles
- Usb - Forum - Hardware
1 reply
sadgurl
Aug 1, 2009 at 11:11 AM
- Posts
- 697
- Registration date
- Thursday May 14, 2009
- Status
- Member
- Last seen
- November 24, 2010
Aug 1, 2009 at 11:11 AM
hi there,
its port 80
To find open ports on a computer, you can use netstat command line.
1. To display all open ports, open DOS command, type netstat and press Enter.
2. To list all listening ports, use netstat -an |find /i "listening" command.
3. To see what ports your computer actually communicates with, use netstat -an |find /i "established"
4. To find specified open port, use find switch. For example, to find if the port 3389 is open or not, do netstat -an |find /i "3389".
5. You can use PULIST from the Windows Resource Kit to find which process is using a specified port. For example, pulist |find /i "4125" may display
Thanks
its port 80
To find open ports on a computer, you can use netstat command line.
1. To display all open ports, open DOS command, type netstat and press Enter.
2. To list all listening ports, use netstat -an |find /i "listening" command.
3. To see what ports your computer actually communicates with, use netstat -an |find /i "established"
4. To find specified open port, use find switch. For example, to find if the port 3389 is open or not, do netstat -an |find /i "3389".
5. You can use PULIST from the Windows Resource Kit to find which process is using a specified port. For example, pulist |find /i "4125" may display
Thanks
Sep 14, 2010 at 02:34 AM