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

An Exercise in Discover Whether an Active Directory Account Has RDP Access to Windows Bastion Hosts

Check Computers: $computernames='RDPSERVER01','RDPSERVER02','RDPSERVER03' invoke-command -computername $computernames {get-localgroupmember 'remote desktop users'}|select PSComputername,Name # Sample output PS…

PowerShell: Discover Domains and Trusts in Microsoft Windows Environment

PS C:\Windows\system32> Get-ADTrust -Filter *Direction : BiDirectionalDisallowTransivity : FalseDistinguishedName : CN=kimconnectschools.org,CN=System,DC=kimconnect,DC=k12,DC=ca,DC=usForestTransitive : TrueIntraForest : FalseIsTreeParent…

PowerShell: Query Google Account Using GAM

$emailAddress='[email protected]' $field='accounts:last_login_time' function getGamUser{ param( $emailAddress, $field ) $result=try{gam report users user $emailAddress}catch{} if($result){ $headers=$result[0]…