Com port connection viewer tool?

Associate
Joined
10 Jan 2009
Posts
1,847
Hi all, I do a lot of work with serial devices, and I'm so sick and tired of going through device manager to check what port I want to connect too!

I have searched but not found anything so far, I'm after a tool that simply displays what com ports I have connected on my machine without having to go through device manager - anyone aware of anything?

cheers
 
Get-WMIObject Win32_SerialPort | Select-Object Name,DeviceID,Description

Is the relevant Powershell command. A bit of Googling will be able to get that appearing in a dialog box.
 
http://www.com-port-monitoring.com/datalogger.html

I used that in the past (few years ago now mind you) for various stuff

Full features list:
redirect incoming data stream into a text file form any number of serial ports simultaneously
select the file to redirect incoming data to for each port
real-time counter of the received and stored bytes
collect data from the real serial ports as well as from virtual ones
disable/enable logging on-the-fly
append incoming data to already existing file
specify serial port connection parameters (baudrate, parity, stop bits, flow control, databits)
source code is provided (MFC/C++ VC7.1)
works under Virtual Machines

Not sure if they ever made it completely portable for USB sticks etc. I doubt what you're after is available now but the power shell that Caged mentioned is probably the easiest way to do it quickly with a batch file on a USB stick or network share etc.
 
Screenshot%202015-08-12%2013.09.40.png
 
yeah I'm glad I've got something going now mate, thanks for the tips!

I'm a electronic engineer and a tinkerer so I do a lot of prototyping with arduino stuff and canbus etc, this will save me a good few clicks each time i need to check :)
 
Back
Top Bottom