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

Configure Remote Servers to Download Contents from Microsoft Directly instead of WSUS

Log onto Local Server >> Group Policy >> Computer Configuration >> Administrative Templates >> System…

Forth Shift Administrative Procedures – Daily and Monthly

Introduction: There are batch scripts that are scheduled to run on a daily basis. In…

PowerShell: Set Windows Scheduled Task to Send a Pop-up Message

# Set variables $taskName='Bi-weekly Meeting Reminder' $time='11:50am' $daily=New-ScheduledTaskTrigger -Daily -At $time $everyOtherDay=New-ScheduledTaskTrigger -Daily -DaysInterval 2…