I have a Sony camera which is set to shoot in both RAW and JPG formats, so I can decide whether to keep the jpg image or to process it further. Once of the biggest problems that I have is that I always look at the jpg images, and I remove the ones that I don’t need, but the RAW… Read more →
Category: Windows
Find the process using a specific port
From an elevated prompt run [ps]netstat -aon | findstr :9990[/ps] That will give you the offending PID: [ps]TCP 127.0.0.1:9990 0.0.0.0:0 LISTENING 1776[/ps] Quick check in Windows Task Manager will give you the process that is currently using the port so you can shut it down from there if need be. Read more →