Monthly Archives: November 2008

Windows and Office serials recovery

Ever tried to make a good list of all Windows and Office license keys on your network computers? This can be a h*ll of a job. Try this app to recovery every Windows and Office serials from the PC’s on … Continue reading

Posted in Tools | Tagged , , , , | Leave a comment

PERL input and output files

To read an input file, edit your data and put it to an output file try this: #! /usr/bin/perl -w use strict; my $file = “in.csv”; my $outfile = “out.csv”; open(IN, “<$file”) or die “Could not open $file\n”; open(OUT, “>$outfile”) … Continue reading

Posted in Programming | Tagged , , , , , , | Leave a comment

PERL connect to SQL server

To connect you PERL application to an SQL server is pretty easy. First you need the driver for supporting SQL connections. Install driver: Open command prompt Typ: ppm install DBD-mysql After a correct installation of the driver your SQL connection … Continue reading

Posted in Programming | Tagged , , , | 1 Comment

TNT zone shipping module in Joomla Virtuemart

After lots and lots of googling i couldn’t find any shipping module for Virtuemart that was suiteble for our situation. There is some kind of module for TNT but its for TGP Post and I didn’t get it working. So … Continue reading

Posted in At the office, Programming, Webshop | Tagged , , , , , , , , , , , | 29 Comments

Unable to install DVD/CD Driver Windows

If your having problems installing your DVD or CD drive check this instructions: Check in “Device Manager” if your drive is shown with a “yellow !”. If not, this is no solution for you. Solution for following errors: Error message … Continue reading

Posted in Windows | Tagged , , , , , , , , | 1 Comment

Webbased Kaminsky DNS Exploit Check

Maybe you heart about the “new” DNS exploit found by Mr. Kaminsky. Basics: Your surfing to your bank website. Your computer checks where it can find www.nicebank.com If your router doesn’t know, it will ask the ISP DNS server. This response from your … Continue reading

Posted in Security | Tagged , , , , , , , , | Leave a comment

Multiple mouse cursors on a Windows Desktop

Ever thought of two mouse cursors at the same time? After googling I found a SDK from Microsoft, to make multi mouse available WITHIN your own application. I was wondering if this can be done system width. The answer is YES! There’s … Continue reading

Posted in Tools, Windows | Tagged , , , , , | 30 Comments