Portable Simple Port Tester Descargar

0 views
Skip to first unread message

Christel Malden

unread,
May 19, 2024, 8:08:16 AM5/19/24
to doorgrewati

(Please Note: If your anti virus says it found a virus of any kind please know this is a false alarm. You can use www.virustotal.com to also see what other antivirus software says.
There are no viruses in any of the programs on this site. If your anti virus says it has one please submit the file in question to your anti virus maker, they will then scan the file themselves, see the program or setup is clean and update there virus def's to not cause the false alarm.)


Most online port testers fail no matter what if nothing accepts their connection attempt. This port tester program will open the port on the system it is running on and listen for a connection from this site. So when the port tester program says the ports are open you can count that they are :-)

The port tester program is for testing connections to the machine the program is running on since it opens the port on that system and listens for a connection. If you need to test connections to other devices such as your security cameras then you can use the online port tester here.
_test.php

Portable Simple Port Tester descargar


DOWNLOAD ••• https://t.co/WXrib9YTFN



Simple Port Tester is a free program by PcWinTech.com to help users test if their ports are open with just a few clicks.
As of version 2.0.0 and newer of the program now tests both TCP & UDP ports.

The trick with testing if your port forwarding is working is to have something on your computer actually listening on the port. If nothing is listening on the port the test will fail no matter what. This program will open the port, listen for the connection and help ensure a proper and reliable test as to whether or not your port forwarding is working.

You can toggle parallel port outputs on or off by clicking on the circle representing the pin you want to change. Green represents on (high), black represents off (low). The circles representing input pins are automatically updated while you have the port selected, so you can easily test your inputs. You can also choose whether to use the four control pins as inputs or outputs.

For people who are really interested, I also display the raw register values of the three standard parallel port registers. I show separate values for the control register because what you write to the control register is not guaranteed to be what you read back.

Prior to 1/17/2022, there was no installer, so you had to install the software manually by downloading and installing InpOut32. Nowadays, you can just download the Parallel Port Tester installer and this will all be handled for you automatically. The old installation instructions are preserved below for historical reference:

I have been trying to equip my Win 7 64 PC to run some old Analog Devices software that wants to communicate with an eval card via a parallel port. I installed a Rosewill RC303 PP PCI card which seems to function Ok, but it puts the port address up at 0xD030. Your Parallel Port Tester finds it and I can toggle all the pins. Thanks for a great piece of software. However the AD softwate does not seem to be able to deal with the non standard port address. I installed Windows Virtual Machine and their XP OS for it. Under XP running virtual the port appears at 378h according to the Device Manager but the AD software still does not find the port.

Hi Doug,
I tried to run the program on my Win XP 32-bit machine but get the error parallel port tester has encountered an error and needs to close. I have put the recommended 32-bit InpOut32.dll in the program directory.
Any ideas?

I just tested in a Windows 10 64-bit VMware virtual machine on a Linux guest with Inpout32 1.5.0.1, and Parallel Port Tester appears to work just fine. I will go ahead and update the compatibility information on this page to add Windows 10 as a compatible OS.

I have tried your parallel port tester and it works great.
I would like to read/write from the port(0378h) using an assembly language subroutine which would be callable from higher level programs. Can you tell me the calling sequence and argument arrangement for Inpout32 or is that only available in C?
Joe

Frustratingly, both dongles work just fine on one computer, a Dell T7610 workstation, but refuse to get recognised on a newer T7910. Both machines have almost identical specs, identical PCI cards, and Windows 10 64-bit build 1809. By the way, I have also swapped out the PCI cards to make sure that neither was dead, but the problem persists. Help!

The input pins will automatically change between black and green based on the detected input voltage. You should be able to feed in one of the output signals to an input by hooking their pins together, and the input will change as you change the output.

I seem to be having a small issue. For some reason, my parallel port seems to default pin4 (data bit 2) to a high state. Not sure if this is related to your software at all, but was wondering if you could help out? Everytime I start up my computer and open up the program and identify my parallel port address, pin 4 is defaulted to high, but I would like it to be defaulted to a low. Any ideas?

When you download Inpout32 from the link I provided, it comes in a zip file. After extracting the zip file, there should be a folder called Win32 inside there. That folder contains the dll file you should use. It also contains a program called InstallDriver.exe that you should run to install the Inpout32 driver.

Basically there are three byte registers (for example, at 0x3000, 0x3001, and 0x3002 if the parallel port base address is 0x3000). Register 0 is the data register, register 1 is the status register, and register 2 is the control register. You have to do whatever your OS requires to do direct port access. I use InpOut32. Here is what I do when bitbanging:

Note that because of this, the value you write into the control register might not match the value you read back. If you tell the reset pin to be a pulled-up input by writing a 1 to bit 2 of the control register, and ground is connected to it, you will read back a 0 bit indicating the input value is low even though you just wrote a 1.

Your neat program works fine on the Legacy port of my Dell win 7 64bit machine. But does not work when I install and run the PC with a Lava Dual parallel port PCI card. There is no response to either ports. I tried it on 2 cards the last one was from a new old stock sealed card.
The device manger indicates

Thank you for your LPT tester. It has been very helpful. However, I had a couple of questions regarding the same. After selecting the port, I use the output buttons to change a particular pin. But that does not change the color of the input pins on the tester. Is that indicating of a problem with the port or the parallel port card? Additionally, one of the control buttons is only on/off halfway. Does it point towards the possibility that there may be something wrong with the port? Also, while testing the port, I had connected it to a parallel port cable. I would really appreciate your inputs.

Thank you for your prompt reply. Going by your advice, I connected two PCs with a parallel port cable to use the tester. And I changed the four control pins to output on one PC and input on the 2nd PC. When I toggle the control (output) pins on the first PC, the control (input) pins on the 2nd PC are automatically updated. However, if I toggle the other non-control (output) pins that does not reflect on the input pins of the 1st PC. Is that an issue or does that mean the port works?

An interesting observation. I finally figured out what the Example program does and how to use it from Phils highrez website. I can read the LPT1 data port values all OK, but I cannot Write the data port values using the example program.
Any thoughts?????

I am not ready to open up the source code to Parallel Port Tester, but what it does with InpOut32 is very simple. You just use the Inp32 and Out32 functions in the DLL. To write the 8 data pins, the address is the base address. The control register at base address + 2 can be written to change some other outputs, and you can read from the status register at base address + 1 to read pins like ack, paper out, etc.

Hi,
I hope you are still active. I am unable to access the parallel port diagnostic tool as the URL is unresponsive. I do have loaded the parallel port tester but I am unable to confirm if a plug n play usb to parallel cable has installed as a parallel port or just a printer port. I need full duplex so I realize I may have the wrong hardware, but can I get access to the diagnoztic software to see what hex code I need to load into the test software? Also do you know of hardware (CNC or otherwise) that replicates the duplex data flow of a traditional parallel port via usb?

Been trying to install this on a windows XP Professional 64 bit machine, not virtualized. Using the installer I get the following error during installation: Failed to install InpOut32 driver. Try running InstallerDriver.exe manually.

(Please Note: If your anti virus says it found a virus of any kind please know this is a false alarm. You can use www.virustotal.com to also see what other antivirus software says.
There are no viruses in any of the programs on this site. If your anti virus says it has one please submit the file in question to your anti virus maker, they will then scan the file themselves, see the program or setup is clean and update there virus def's to not cause the false alarm.)

Program Summery:
Simple Port Forwarding works with WebPages and not directly with your router. Making it a safe program to use. Its no different than using Firefox, IE or any other browser to setup port forwarding yourself.
The program works by automating the process for you. So whether you don't understand how to forward ports, or your simply looking for an easier way to forward ports then this program is for you.
Its port forwarding made simple.

The main interface of the program is small and clean. Giving options of seeing what is going to be forwarded to the router and how many entries and ports it will use in the process. You have the ability to save your list and send it to another user of the program. An example would be, lets say you have a family member who lives far from you and doesn't really understand port forwarding, so instead of spending a lot of time over the phone walking them through it you can simply have them use the program and have them load the list and update their router, then your all done. Now that's a time saver.

13d16603cb
Reply all
Reply to author
Forward
0 new messages