Skip to main content

Install Windows XP HyperTerminal client on Windows 7 or Vista

If you use Windows Xp on your network. You should know there is hyperterminal
applicaion on it. Hyperterminal application helps you to connect with other remote
computers. For system administrator, it used to connect to switches or routers and
carry out maintenance operation. Unfortunately, this application is not provide by
Microsoft on Windows 7 and Vista. Of course, we can change it with another free
application that have same function, like PUTTY. But it is not same like
hyperterminal. Many features is not included.We got a better workaround to install
HyperTerminal client to WIndows 7 and Vista for free.

Here's how to install Windows XP HyperTerminal client on Windows 7 or Vista :

First step, copy hypertrm.dll and hypertrm.exe from your PC that using Windows XP to
your UFD. But if your Windows XP PC and WIndows Vista PC connected pass this step.

Second step, copy both of files (hypertrm.dll and hypertrm.exe) to a one folder on
your Windows Vista or Windows 7.

Last step, launch the hyperterminal by double click hypertrm.exe. Once you are done,
you have HyperTerminal client that works normally on Windows 7 and Vista. Easy,
Right?

Popular posts from this blog

Install ffmpeg on Centos

I want to install youtube-clone to my server (Centos 5) and it need some files. The important files that i have to install is ffmpeg. Then ask to uncle google where can i find how to install ffmpeg. I found one website that give tutorial how to install ffmpeg on Centos 5. The installation is begin from download the files. First, ffmpeg in rpm and others in tar.gz. Rpm files easy to install. But another have to do some config. You can read the tutorial install ffmpeg on Centos 5 here and here (Centos 4) . Another Link about Centos Guide For CentOS Centos 5 Live CD Password For root

Rapidshare Premium Link Generator

Rapidshare Premium LINK Generator . Rapidshare.com is one of the biggest site that allow you to upload and share files with vary sizes. From rapidshare, you also can download files that another person upload the re. There are 2 kinds of user can download from rapidshare. First, free user, this user have limit features from rapidshare. Limit bandwidth, limit connection, etc. Second, premium user. Premium user have many features that free user doesn't have. If you want to be a premium user, you have to buy it from the web. You can use this link to buy premium account or from reseller that near you. But if you have not enough money to buy it, you can use Rapidshare Premium Link Generator . This is a website that give free service for anyone to generate rapidshare link from free to premium, so anyone can download with premium feature. <br><br>I...

15 Linux lsof Command Examples (Identify Open Files)

lsof stands for List Open Files. It is easy to remember lsof command if you think of it as "ls + of", where ls stands for list, and of stands for open files. It is a command line utility which is used to list the information about the files that are opened by various processes. In unix, everything is a file, ( pipes, sockets, directories, devices, etc.). So by using lsof, you can get the information about any opened files. 1. Introduction to lsof Simply typing lsof will provide a list of all open files belonging to all active processes. # lsof COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME init 1 root cwd DIR 8,1 4096 2 / init 1 root txt REG 8,1 124704 917562 /sbin/init init 1 root 0u CHR 1,3 0t0 4369 /dev/null init 1 root 1u CHR 1,3 0t0 4369 /dev/null init 1 root 2u CHR ...