Archive for January, 2008

Lazy? make folders from filenames

files

 

 

 

 

 

 

 

 

 

 

 

 

 

Ever had a folder full of files? sighed and looked at it and thought, I really should put those files into folders, but I really cant be botherd, well here is the answer.

Simply open notepad and paste the script below into it, Change the line SET FilesPath=C:My Movies
To the directory with the files you want put into folders then save it as something.bat then run it.

All files in the folder will be put into folders named after their filename.

@ECHO OFF
SETLOCAL EnableDelayedExpansion
SET FilesPath=C:My Movies
IF NOT EXIST !FilesPath! ECHO Invalid Path “!FilesPath!” &EXIT /B 0
FOR /F “delims=” %%f IN (‘DIR /A-D /B /ON “!FilesPath!”‘) DO (
@ECHO Processing: %%f
SET FolderName=
SET FolderName=!FilesPath!%%~nf
IF NOT EXIST “!FolderName!” MD “!FolderName!”
IF EXIST “!FilesPath!%%f” MOVE /Y “!FilesPath!%%f” “!FolderName!”)

EXIT /B 0

Windows Search

windows

Windows Vista and now XP (with a download) includes Windows Search.

This is very like Google Desktop in that it indexes your PC and adds a search box to your start menu.
Its pretty good however I was very disappointed with it when I found out it won’t index network shares.
But the sun shines again, the rain clouds have vanished.

In other words Microsoft have released a update for Windows Search
After installing this wonderful update windows search will index network shares get here.

Get it here

Network browsing not working between Vista and Windows XP?

You need to install a update on all Windows XP machines on your network.

Link Layer Topology Discovery (LLTD) Responder

KB922120


Get it here

Nice list of ALL graphic card specs

Check it Out here

Cool gadget Belkin Flip KVM

Belkin Flip

This device allows to connect your laptop to your desktops LCD and keyboard, and switch between controlling PC and laptop with the touch of a button.

Having problems with Burning CD/DVDs?


Installing a working ASPI layer

For years people have had various problems with the so called ASPI layer, which is required by many Windows CD-R software’s. This article aims to successfully install a good and working ASPI setup.

What is ASPI?

The term "ASPI" stands for Advanced SCSI Programming Interface. It’s a universal driver layer that operates in between software and the CD-R hardware. It is often referred as 'ASPI layer', ‘ASPI driver’, 'ASPI Interface', which are all synonymous terms for the same thing. Windows 95/98/ME ships with a poorly implemented ASPI layer, while NT/2000/XP has no ASPI layer built in. You can check your current ASPI setup by using the ASPICHK tool that comes with the Adaptec ASPI distribution.

Source

Article source

Many software titles install their own drivers to the operating system and therefore do not need an ASPI layer. Such software titles include CloneCD, DiscJugger, GEAR, BlindWrite and many others. On the other hand there is a large number of software that require an ASPI driver installed: Exact Audio Copy, Feurio!, BurnAtOnce, CD-R Indetifier, and so on. Nero Burning ROM comes with it’s own ASPI layer that other software can utilize too.

The symptoms of ASPI related problems

Problems that may occur if there is no proper ASPI setup:

-The CD/DVD devices are not detected by the software

-The CD/DVD devices don’t operate correctly with some program

There are also some reports on the Internet of the ASPI layer affecting the performance of a program (like audio ripping quality) but they have not been properly verified.

Solution 1: Get the latest Adaptec ASPI layer

Since the version Adaptec has been offering their drives freely for public. Their drivers should operate in any Windows version, including XP. There are however various reports of problems with these drivers. I tested Adaptec’s ASPI 4.72a2 in my computer, but programs utilizing it recognized only my SCSI connected CD drives - the IDE devices were not detected.

Download latest Adaptec ASPI

After downloading the EXE file, run it. The program asks for a destination folder, and unzips the contents there. Use, for example, C:\ASPI\ for the folder.

Next open the C:\ASPI\ folder using the Windows Explorer. Run aspichk (or aspichk.exe) and you will see if Adaptec ASPI verification can find ASPI drivers on your computer. If it says "ASPI is properly installed and fully operational" your ASPI drivers should be OK. If on the other hand it says "ERROR: ASPI is not properly installed", you need to install ASPI drivers.

To (re)install the Adaptec ASPI drivers, run aspiinst (or aspiinst.exe) and click Install. After the installation you should restart Windows, and run aspichk. You should then see the different ASPI driver versions listed, and the box at the bottom should read "ASPI is properly installed and fully operational".

Solution 2: Get the Nero ASPI by Ahead Software

Ahead software also offers their ASPI layers free. They also promise support for USB/FireWire devices. Most programs should operate with Ahead’s ASPI, and there are many positive reports about the performance of this driver.

We on the other hand had a slight issue with Ahead ASPI. The Feurio! audio CD recording software wasn’t always able to lock the CD-R drive during the burning process.

Download latest Nero ASPI

Solution 3: ForceASPI

ForceASPI is based on older Adaptec ASPI 4.60(1021) version. This version of Adaptec ASPI refuses to install if there are no Adaptec products installed on the computer (Software or hardware), but the ForceASPI package solves this issue by inserting the drivers to the operating system with it’s own installer script.

Get ForceASPI

Adaptec ASPI doesn’t promise Windows 2000 or XP compliancy for the driver version 4.60, but public experience is that they work very well, even in Windows XP. On our test bench computer the ForceASPI was the best solution as an ASPI driver. It works flawlessly in every program tested.

Final words

I would recommend that you try these solutions in this order. If latest Adaptec ASPI works for you, or the Nero ASPI then good. If not, then go for the ForceASPI as the last solution.

Secunia software secuity scanner

Heres a nice bit of free software it scans your pc, and finds any software thats out of date or has serious security flaws.
The interface provides download links for any insecure versions of software on your system.

Google Ads Hijacked

Virus Protection company BitDefender has discovered a new Trojan which they call trojan-qhost.wu

Windows uses a system file called the Host File
which among other things can be used to map ip addresses to web site names.

These host file entries will override the ip address given via the Domain Name System, which is normally how computers fetch the ip address of websites.

The Trojan which is still quite rare adds a entry to the aforementioned host file, which diverts the address used by “Google Ads” to another server.

From then on ANY “Google Ad” based advertisment the infected computers web browser displays, could be any code the Trojans creator wants

including links to malicious software.

Windows Media Player Plug-in for Firefox

How to make a USB flash drive bootable

Return top