Sunday, July 26, 2009

Vista Manager 3.0

Vista Manager is a powerful system utility which helps you to optimize and tweak, clean up your Windows Vista. It will increase you system speed, improve system security and suit your idea!

link: http://www.mediafire.com/file/ywzkwoyklnq/VistaManager v3.0.2.rar

LimeWire Pro 5.2

LimeWire 5 pro- The Fastest P2P File Sharing Program on the Planet, running on the Gnutella Network. It is open standard software running on an open protocol, free for the public to use. LimeWire allows you to share any file such as.mp3s, .avis, jpgs, tiffs, etc., allows you to search for multiple files at the same time, available in several different languages, and is most famous for its ease-of-use and cross-platform compatibility. Limewire 5 prois written in Java, and will run on Windows, Macintosh, Linux, Solaris, and other computing platforms.

link: http://www.mediafire.com/file/zgyyxenzdmh/limewirepro5.2.rar

Wednesday, July 22, 2009

Virtual DJ Pro 6.0

VirtualDJ is the hottest MP3 mixing software, targeting every DJ from bedroom DJs to professional superstars like Carl Cox.

With its breakthrough BeatLock engine, your songs will always stay in the beat, and you can work your mixes incredibly faster than any other DJ could.

link: http://www.mediafire.com/file/gxjytygzez5/VirtualDJ6.0.rar

Tuesday, July 21, 2009

How to Fix "Unable to open AV sites"

This might help:

1. Press -> Ctrl+Alt+Del
( Windows Task Manager Opening )
2. Press or Choose TAB of "Processes".
3. In "Process" many programs processes appear.
in this processes all of big, small and tiny Program's processes display
"Viruses" also select " SVCHOST.EXE " and Select "End Process"
Note : "SVCHOST.EXE" this names many types files in process bar, but not all
viruses, some files is system also, but don't worry,
in this case - your comp. shutdown only - if select
other "SVCHOST.EXE" - remember this file and second time no touch it.!! OK !!??
4. If you find Proper "SVCHOST.EXE" named 'Virus process' than Click on "End Process"
button.
Virus works is finish now. because it's process is "End" this time.
5. Now open Anti virus Website and make update your anti virus program.
6. Then scan computer with updated anti virus program.

Sunday, July 19, 2009

Mozilla Firefox 3.5.1

Mozilla Firefox is a free and open source web browser descended from the Mozilla Application Suite and managed by Mozilla Corporation. Firefox had 22.51% of the recorded usage share of web browsers as of May 2009[update], making it the second most popular browser in terms of current use worldwide, after Internet Explorer.

To display web pages, Firefox uses the Gecko layout engine, which implements most current web standards in addition to a few features which are intended to anticipate likely additions to the standards.

Latest Firefox feature include tabbed browsing, a spell checker, incremental find, live bookmarking, a download manager, private browsing, location-aware browsing (aka "geolocation") based exclusively on a Google service and an integrated search system that uses Google by default in most localizations. Functions can be added through add-ons, created by third-party developers, of which there is a wide selection, a feature that has attracted many of Firefox's users.

Firefox runs on various versions of Mac OS X, Microsoft Windows, Linux, and many other Unix-like operating systems. Its current stable release is version 3.5.1, released on July 16, 2009[update]. Firefox's source code is free software, released under a tri-license GNU GPL/GNU LGPL/MPL. Official versions are distributed under the terms of a proprietary EULA.

link: http://www.mediafire.com/file/zn1hkzjkwt4/Firefox Setup 3.5.1.rar

Saturday, July 18, 2009

Yahoo Messenger Offline Installer

New attractions of yahoo messenger 9 final

Share and upload photos to Flickr
Option to view maps and videos inside Yahoo messenger window .
Improved contacts .
More support added for local languages .
Brand new skins and emotions .
Improved PC to PC call .
You can add and check status of your MSN Live messenger contacts in Yahoo messenger .
Yahoo Ping box (I like this one!!) : If you are a webmaster its worth to give a try for this cool widget to add chat box in Blogger or any website .

If you are online, YM9 can forward messages sent by your YM buddies to your phone via SMS( I think that costs few bucks).

If you are offline on Yahoo messenger and if someone left you a voice message, you can now choose to forward it to your email.

Click Contacts in the Messenger main menu and select Call History.
At the bottom of the window that opens, click to activate voice mail service by producing your email.

The major disadvantage of Yahoo messenger 9 is that its an ad supported instant messaging client . The other factor is its large size ( apprx. 15 mb) and memory usage compared to close competitors. So instead of using Yahoo messenger , I usually use mobile Instant messengers like Talkonaut which supports Yahoo , MSN and Google talk together .

link: http://www.mediafire.com/file/zxllzwcz2ln/yahoomessenger.rar

Sunday, July 12, 2009

Combofix

ComboFix is a program, created by sUBs, that scans your computer for known malware, and when found, attempts to clean these infections automatically. In addition to being able to remove a large amount of the most common and current malware, ComboFix also displays a report that can be used by trained helpers to remove malware that is not automatically removed by the program.

link(source): http://www.bleepingcomputer.com/combofix/how-to-use-combofix

Canon Printer Error Codes

E2-2 No paper (ASF)
E3-3 Paper jam
E4 No ink
E5-5 The ink cartridges are not installed or a non-supported ink cartridge is installed ,
or the ink cartridges are not installed properly
E8 Waste ink absorber full, or platen waste ink absorber full

CANNON Printers MP150/MP160 ERROR CODE
E9 The connected digital camera / video camera does not support Camera
Direct Printing
E14 The Ink cartridges whose destination are wrong
E15 Ink cartridge is not installed E16 - Ink remaining is unknown
E16 -E19 Failed to scan head alignment sheet
E22 Carriage error
E23 Paper feed error
E24 Purge unit error
E25 ASF(cam) sensor error
E26 Internal temperature rise error
E27 Waste ink absorber full or platen waste ink absorber full
E28 Ink cartridge temperature rise error -
E29 EEPROM error
E33 Paper feed position error
E35 15 USB Host VBUD overcurrent error - USB
E37 17 Abnormal motor driver error
E40 20 Other hardware error
E42 22 Scanner errorE2-2 No paper (ASF)

Saturday, July 11, 2009

Multiple Programs with One Shortcut

First, open up Notepad and start a new document. We will put all of our code here.

First we need to turn off command echoing. This is not neccessary, but can be quite annoying. This will only help if you are going to directly run the command through CMD.
Type in this code

CODE
@echo off

That will turn off our command echoing.

Now to running the programs. I will use two programs as an example. I will also use fake folders and stuff.

Type in this code after the first command.

CODE
rem Guild Wars
cd C:\Program Files\Guild Wars
start gw.exe
rem Firefox
cd C:\Program Files\Mozilla Firefox
start firefox.exe


That code will change to those directories then run the appropriate executable file.
Those are example directories. The rem command simply means a comment/remarks.

This is the template for the programs.

CODE
cd Path to program
start Program .exe file

That is all to run the program.
Well, let's add one more command to close CMD after it is finished. This also will make it seem like CMD did nothing.

CODE
exit


So our final code should look like this:

CODE
@echo off
rem Guild Wars
cd C:\Program Files\Guild Wars
start gw.exe
rem Firefox
cd C:\Program Files\Mozilla Firefox
start firfox.exe
exit


Ok after you have your code written, save the file as a .bat file. The file name is up to you. The file name though will be the command name. I will call mine guildfire.bat.

Ok, we have our program. What about the shortcut? Well I am going to explain that.

After you have the file saved. Be sure to remember where you saved it.

On your desktop, right click and create a new shortcut. When it asks you about the target, direct the target to the batch file we just made. Change the name and save. You just made a program starting program.

If you want to change the image
To change the shortcut's icon
, simply go to it's properties and it should have a place to change the Icon
Image. Simply change it with something like a BMP file. The best image size for the icon is about 50x50.

Setting Process Priority Permanently

I recommend proceeding with caution as always.

"When processes are executed, they are assigned a priority level. This level decides how much processor time the process will get. Enabling this column, the base priority is displayed for each process. It is possible to elevate a process to run at a high level of priority. This will have effect only till the process lifetime (till it ends). Next time the process will get. Enabling this column, the base priority is displayed for each process. It is possible to elevate a process to run at a high level of priority. This will have effect only till the process lifetime (till it ends). Next time the process will start with its default priority. It is dangerous to increase priority of multiple processes as it can hang the system."

Solution:

Use a batch file and create a shortcut using the following:

Open your notepad


type this code: (i use dietmp3 as an example)

@echo off
rem diet
cd c:\Program Files\DietMP3
start /AboveNormal DietMP3.exe
exit

Save text file as diet.bat file

Create a shortcut on your desktop.

It should be ok now.

Check your process priority through task manager.

Process Priority Levels

LOW Start application in the IDLE priority class
NORMAL Start application in the NORMAL priority class
HIGH Start application in the HIGH priority class
REALTIME Start application in the REALTIME priority class
ABOVENORMAL Start application in the ABOVENORMAL priority class
BELOWNORMAL Start application in the BELOWNORMAL priority class

OnTrack Easy Recovery Professional

EasyRecovery™ software products offer home users or businesses complete solutions for their data recovery, file repair and disk diagnostic needs.
When to Use Software

Depending on your data loss situation software is recommended only when your hardware or computer system is functioning properly. If your hardware or system appears to be physically failing or damaged Ontrack® Data Recovery services are recommended.
Signs That Your Computer is Damaged or Failing

* Strange noises or grinding sound
* Blue screen of death
* Unresponsiveness

Do-it-Yourself Data Management Solutions

If your system is functioning properly, select from one of the product categories below that best meet your needs and shop online for the version that’s right for you.

* Complete solution for your data recovery needs
* Includes capabilities of EasyRecovery DataRecovery, EasyRecovery FileRepair and EasyRecovery EmailRepair
* Plus advanced data recovery options and Data Advisor® diagnostic features
* General capabilities – data recovery, file repair, disk diagnostics
* For all operating systems – RawRecovery Module– support for over 400 specific file signatures.
* For Windows – AdvancedRecovery and additional Modules – capable of locating all directories and unlimited file types
* Repair options for Microsoft Outlook and Email files – Outlook(PST, OST), Outlook Express (DBX), Word (DOC), Excel (XLS), Access Database (MDB), PowerPoint (PPT) and Zip (ZIP)

link: http://www.mediafire.com/file/nnrm1zglthe/Ontrack.EasyRecovery.Professional.v6.12.02.rar

Process Explorer

Introduction

Ever wondered which program has a particular file or directory open? Now you can find out. Process Explorer shows you information about which handles and DLLs processes have opened or loaded.

The Process Explorer display consists of two sub-windows. The top window always shows a list of the currently active processes, including the names of their owning accounts, whereas the information displayed in the bottom window depends on the mode that Process Explorer is in: if it is in handle mode you'll see the handles that the process selected in the top window has opened; if Process Explorer is in DLL mode you'll see the DLLs and memory-mapped files that the process has loaded. Process Explorer also has a powerful search capability that will quickly show you which processes have particular handles opened or DLLs loaded.

The unique capabilities of Process Explorer make it useful for tracking down DLL-version problems or handle leaks, and provide insight into the way Windows and applications work.

link: http://www.mediafire.com/file/z5kmmdmu1jj/ProcessExplorer.zip

Thursday, July 9, 2009

Amilo Pro Audio Driver HotFix

If you reinstall your OS in your Fujitsu Siemens Notebook and encountered a problem installing your Audio and Modem Driver.

A hot fix is necessarry before you can install your audio and modem driver...

link: http://www.mediafire.com/file/zzm32wj13jk/FTS_KB888111HighDefinitionAudioR10aSupportfor_10a205012_1002126.zip

Monday, July 6, 2009

Universal XP Drivers CD 2008

No more need to spend hours on-line browsing for drivers.. Just pop the Universal Driver CD in and Windows will automatically search the comprehensive drivers. This CD, (Iso format) contains software drivers for over 25,000 hardware components from brands such as Dell, HP,Compaq, IBM, Sony, Toshiba, Panasonic, as well ashardware component manufacturers Intel, 3Com, VIA, nVidia, ATI, SoundMax, and many more.

link(source):
http://rapidshare.com/files/105749145/Universal_XP_Drivers.2008.Rev-01.part1.rar
http://rapidshare.com/files/105749163/Universal_XP_Drivers.2008.Rev-01.part2.rar
http://rapidshare.com/files/105749158/Universal_XP_Drivers.2008.Rev-01.part3.rar
http://rapidshare.com/files/105749149/Universal_XP_Drivers.2008.Rev-01.part4.rar

Kaspersky Internet Security 2010

Try this one...

How to Install the Key
-Click on "License" which is down along the bottom next to "Support"
-Click on "Activate new license"
-Enter this expired Beta code: T1JVS-NNMBD-K1QTN-SUBP8 and then it'll result in an error
-When the new window pops up, you are given the option to browse to your activation key.

link: http://www.mediafire.com/file/mnyv4wzhywm/kis2001key.rar

Sunday, July 5, 2009

AVG 8.5 Pro

Try this one...

link: http://www.mediafire.com/file/wtvn3n05deg/avg pro 8.5 license key.txt

Windows XP SP2 Corporate

try this one...

link: http://www.mediafire.com/file/2hmdtzjydzy/corporateserialxpsp2.txt

Invisible Browsing

Why do we need invisible browsing and the browser cleaner?

The number of identity theft victims is dramatically increasing with every day that passes. Every person that surf the internet should have some minimum knowledge about how the personal data can be collected every time someone is visiting a web page. That’s why you must keep your real IP address hidden, so that all your information will become invisible to everyone.

Invisible Browsing is the perfect software to hide IP address, letting you surf anonymously and preventing your IP or other confidential information to be collected without your permission.

On the other side, your personal computer collect the URL of the websites visited, and saves content of sites in a directory called Temporary Internet Files. When someone else is using your computer he/she can easily see every step you made on internet and look up for your personal interests. But Invisible Browsing can also be used as a browser cleaner in order to protect your online privacy and erase all your online tracks.

What are the main functionalities of Invisible Browsing?

Masks, Hides, Spoofs Your IP Address
Invisible Browsing allows you to change your IP anytime by routing your Internet traffic through overseas servers. All proxies are tested in advance providing a high speed anonymous Internet connection.
Proxy Driver
As the proxies' quality differs by download speed and response time, this feature allows you to adapt the proxy list provided by Invisible Browsing to your geographical location and your internet connection. There is also an option available which allows you to import and test the proxy list that you find on the web.
Browser Cleaning - Complete Online Privacy
Acting like a browser cleaner, Invisible Browsing maintains your online privacy by permanently erasing all your online tracks such as Browser Cookies, Internet URL History, Typed URL history, Auto Complete Forms and Password History, Internet Explorer Favorites and Temporary Files.

Some additional reasons to choose our Invisible Browsing software
Invisible Browsing has been designed to help both the advanced internet users and less experienced ones to stay invisible online. Choosing the automatic mode you can keep your privacy simple and easy by pressing a single button, while the manual running mode provides you advanced features like Proxy Driver. In order to grant you continuous anonymous surfing, the developers of this top solution have also integrated the auto change proxy feature which allows you to define a list of proxies that are automatically changed at specified times interval.

By installing Invisible Browsing internet track eraser, users have also the option to block potentially harmful and invasive codes like ActiveX controls and JavaScript. What internet users should know about ActiveX controls is that they add interest to sites through multimedia but can also harbor malicious code (viruses). Most sites will function properly with ActiveX controls disabled. JavaScript can also be used in harmful ways like capturing your IP address. That’s why an Invisible Browsing software is required in order to prevent JavaScript from running.

Think about the tracks you leave behind when you are online; remember that anyone could see them: employers, colleagues, your kids and spouse, even law enforcement agencies. What about your business secrets you don't want anyone to know about? Just imagine if the sites you have visited became public and you will convince yourself about the necessity of installing browser cleaner software like Invisible Browsing.

link: http://www.mediafire.com/file/gjwevmnzdoj/invisiblebrowsing.rar

Thursday, July 2, 2009

XP TCP/IP Repair 2.0

Warning: Only use XP TCP/IP Repair on a computer where you have no or limited network (internet) connectivity due to a malformed LSP or corrupt TCP/IP and/or Winsock registry entries. This tool is here to restore basic network connectivity. Use of this program on an otherwise good network (internet) connection could possibly cause you to lose network (internet) connectivity. This tool should only be used as a last resort!

Is Spyware and/or Adware messing up your internet connection after you have uninstalled it?

Has your internet connection slowed down and you just don't know why?

Have you used an Internet Optimizer that just didn't optimize your internet, instead it made it slower?

If you answered yes to any of the questions above, then XP TCP/IP Repair may help fix your internet connection and possibly even protect your privacy.

XP TCP/IP Repair is a Graphical User Interface (GUI) for commands in Windows XP® that repair your TCP/IP registry settings and your Winsock LSP's.
Instead of having to remember long confusing command line commands you can now just click a button.

What is an LSP?

Layered Service Providers (LSP) are small pieces of software that can be added or inserted into the Windows TCP/IP handler by other software. Data outward bound from your computer to a legitimate destination on the Internet can be intercepted by an LSP and sent somewhere other than where you intend it to go.

link: http://www.mediafire.com/file/n2ngmjxgzkz/xptcprep.rar

Diet MP3

Compress the size of your MP3 files, allowing you to add more songs to your player without an expensive memory upgrade

More and more electronic devices support MP3 playback capability, including traditional MP3 players, digital cameras, Palm PDA's, Pocket PC's, and even mobile phones. However, due to lack of memory, most of these devices can only store a very limited number of music files.

DietMP3 will compress the size of your MP3 files, allowing you to add more songs to a player without having to do an expensive memory upgrade.

World is big, music is huge, but my player is small, my hard disk always out of space. DietMP3 is the only software dedicate to put more music in your potable MP3 player and help you to compress your MP3 files to save hard disk space. Get it and use it, you won't disappoint for it.

Hi-Fi geeks may not like DietMP3, but it is Hi-Funs. Why not get it and enjoy it now?

Here are some key features of "DietMP3":

· Diet (compress) MP3 files and Audio CDs.
· Reduce 30% to 70% MP3 file size and keep most of the music quality.
· Extract CD Audio tracks to MP3 format in the quality you want.
· Let your portable MP3 players, MP3 mobile phone and MP3 Palm can hold more songs without purchasing & install additional flash memory card.
· Auto New Version Check Function, you will never miss any new version.
· Fast and stable, the best one in the internet.

Requirements:

· 800*600 256 Color display (16M Color may have the best visual effect)
· 10M hard disk space for software, more for generated MP3 files

link: http://www.mediafire.com/file/njgdjimymmq/DietMp3.rar