Posted On March 31, 2019

Installing Hyper terminal in Windows XP

kimconnect 0 comments
blog.KimConnect.com >> Windows >> Installing Hyper terminal in Windows XP
Hyper terminal is still useful as a tool to connect to network devices such as Cisco, Juniper, and HP. In the past, I’ve set up a Pentium III laptop that runs on Windows XP, to be connected to the lab network rack. I’ve used RDP to connect to that laptop and installed various networking applications such as Hyper Terminal in the procedure below:
 
Installation:
1. Click on START
2. Click on RUN
3. Paste this line and press [Enter]: RUNDLL32 ADVPACK.DLL,LaunchINFSection %windir%\INF\communic.inf,Hypertrm
4. Click OK on the confirmation pop-up
 
Removal:
1. Click on START 
2. Click on RUN 
3. Paste this line and press [Enter]:  RUNDLL32 ADVPACK.DLL,LaunchINFSection %windir%\INF\communic.inf,HypertrmUninstall
4. Click OK on the confirmation pop-up
 
Please note that the original Windows XP CD ROM may be required to complete the installation if a prompt similar to this is being presented:

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Install Microsoft FTP on Windows 2008 R2

1. Install IIS without FTP 2. Download FTP a. x64: b. x86: 3. Create FTP…

PowerShell: Quickly Test Connectivity from a List of Sources toward a Destination on a Specific Port

# testRemotePort.ps1 $connectFrom=@' windows1 windows2 '@ $connectTo=@' \\servername\sharename '@ $testPort=445 $sources=@($connectFrom -split "`n")|%{$_.Trim()} $destinations=@($connectTo -split…

A Few Todos while Securing Apache Server

- Install mod_security - Set expose_php = Off in php.ini - Set SecResponseBodyAccess Off in…