Sunday, July 17, 2016

How to Enable Concurrent/Multiple RDP Sessions in Microsoft Windows 7

For our Windows XP users to be able to login to the Navision server, we make use of an intermediate machine on which we have loaded WIN 7 64 bit. The WIN XP users  login to the Navision server by loggin in remotely through this WIN 7 64 bit machine. By default WIN 7 allows for only one login at a time and if another user tries to remotely login to this machine the user already logged in gets logged out. To allow for concurrent users, the following needs to be done : There is a patch that will permit you to patch the Remote Desktop Protocol in Windows to permit several concurrent connections without having to mess with the registry or manually copying of the patched dll files. You can download this utility here. In order to apply the patch, all you have to do is download the file...

Thursday, February 20, 2014

dumptoIMAP.pl

#!/usr/bin/perl#  $Header: /mhub4/sources/imap-tools/dumptoIMAP.pl,v 1.4 2012/02/09 15:34:55 rick Exp $use Socket;use IO::Socket;use FileHandle;use File::Find;use Fcntl;use Getopt::Std;init();connectToHost($imapHost, \$conn);unless ( login($imapUser,$imapPwd, $conn) ) {    Log("Check your username and password");    print STDOUT "Login failed: Check your username and password\n";    exit;}Log("Copying messages from $dir to $mbx folder on the IMAP server");get_messages( $dir, \@msgs );foreach $_ ( @msgs ) {   my $msg; my $date;   Log("Opening $_");   unless ( open(F, "<$_") ) {      Log("Error opening $_: $!");      next;   }   Log("Opened...

imapdump.pl

#!/usr/bin/perl# $Header: /mhub4/sources/imap-tools/imapdump.pl,v 1.12 2011/10/26 15:26:37 rick Exp $########################################################################   Program name    imapdump.pl                                       ##   Written by      Rick Sanders                                      ##   Date           ...

Thursday, January 30, 2014

How to change the IP address on Linux

We already have an Ubuntu 9.04 server which is our email server and we also control sharing of Internet with it. A couple of days back our Dell server failed.So we are trying the installation of Ubuntu 12.04. We had put the same IP address that we normally use for the Linux server but meanwhile we managed to get a machine up with the hard disk from our server which is now down. So we needed to know how to change the IP address on Ubuntu 12.04 to something else now. Run the following commands and it will do the trick. sudo su ifconfig eth0 192.168.100.101 netmask 255.255.255.0 Run ifconfig to make sure that the change has taken effect.But this is not all. Edit the following file using the vi editor and change the IP adress here too. vi /etc/network/interfac...

Tuesday, June 18, 2013

How to make space in C drive

Ever faced the situation when you were trying to install some software on your C partition and were not able to do so due to lack of space on the C drive? Sometimes there are a lot of temporary files created by Windows which are not really required and can be deleted. Do the following steps to make space on your C drive: Click on Start button. Click on Run Type %temp% in the text box Click on OK button. A temp folder opens up. Ctrl A to mark all the files. Now, press the Delete key on your keyboard. Go to your desktop (press the Windows and D keys together) Empty recycle bin. Check your disk space on the C partition. Depending on when you last did this, you could clear over 1 GB of disk space for us...
Page 1 of 612345Next