Tuesday, December 8, 2009

How to Automatically Delete Autorun Virus from Flashdrive & Immunize it??

Most of virus come from Autorun Flashdrive / Flashdisk / Pendrive. And mostly spread from infected college computers.

 logo

So we need a better trick to patch that weakness. We are going to need Ninja Pendisk Freeware. Which will AUTOMATICALLY delete Autorun Virus from Flashdrive/pendrive/Flashdisk.

"Ninja is the freeware zero-configuration program designed for guarding computers against viruses transmitted by USB pendisks.
To keep things simple, ninja is fully portable, self-contained and requires no installation.
Besides removing known virulent files, this tool will also immunize your pendisk and create a folder called autorun.inf with special protection permissions to protect your pendisk from being infected again when plugged on contaminated computers."

Follow these steps:
1.Download Ninja Pendisk or click here to download! or from Rapidshare Click here
2.Run it once downloaded, keep ur internet connection online.
Ninja will try to download configuration file which will automatically updated when connected to internet.
3.You will see a file named "ninja.txt" comes up, that's an update and setting of Ninja Pendisk. Change the setting if you want ^^.
4.Right-click on Ninja in taskbar, and activate disable autoplay.
5.Plug in your Flashdrive, a dialog pop-up displaying the processes of Virus Deletion and Immunize your Flash Drive.

Google Public DNS Speed up the web

Google Done it again, now google announced a Google Public DNS on Google’s blog, will offer you an alternative way to connect to Web sites. With this move, anyone would be able to set up a browser to accessGoogle’s public DNS server, rather than using an Internet Service Provider or corporate DNS server. Google says the goal of its own DNS is to help the tens of thousands of DNS resolvers improve their services, ultimately making the web faster for everyone.

Google, DNS, Google Public DNS, Speed Up web

But if your ISP already provides the service, why is there a need for a Google one and why should you use it? Google lists several reasons why it believes its service is superior to the ones provided by ISPs and even other open providers. The first one is speed,Google says that it has implemented a number of methods to make things faster and that, even though DNS lookups are just a small portion of the time a site needs to load, it can add up to a lot of wasted time.

If you’d like to use the new Google DNS then please use the settings below, Or read here how to use Google DNS Server Service

* Primary DNS – 8.8.8.8
* Secondary DNS – 8.8.4.4

Monday, December 7, 2009

3 WAYS TO REPAIR BROKEN FLASHDISK

Kingston_dt101_7

The broken flashdik that will repair in this tutorial is the kind of software broken. The indication, Flasdisk was detected by the computer that led to the location of the drive, it can be drive D, E, F and so on. Typically, damaged Flashdisk software, will display an error message when going in use such as "Write Protect Error" or "The disk is write protected" and so on. In other terms, this type of damage called 'corrupt'.

Any type of damaged flasdisk has several levels from mild to severe. To repair it depends on the level flash broken itself.
The following tutorial to improve Flashdisk from some level of broken :


1. Lightweight
First of all open Run, type cmd, then type chkdsk Drive Letter: / f
Description
a. DOS command chkdsk is checking hard drive errors
b. Letter Drive: Drive is the location Flashdisk, this command on the contents of the flash drive.
c: / F is Fixes errors on the disk, ie, delete command on the disk error.
Wait until the process of running 100%, If the command appears Convert folder to file? [Type] Y. then delete the files / folders were corrupted with the command DEL V :*.*.

2. Rather heavy

a. Download application Hewlett Packard USB Disk Storage Format Tool here. (http://h20000.www2.hp.com/bizsupport/TechSupport/SoftwareDescription.jsp?lang=en&cc=us&mode=3&taskId=135&swItem=MTX-UNITY-I23839)
b. Install the application and enter the flashdisk to one of USB port. Make sure your flashdisk is detected
c. Start the HP USB Disk Storage Format Tool
d. Specify the drive where the flashdisk is connected,
e. Select Create New or Replace Existing Configuration to create a new partition and delete the existing configuration in the flashdisk,
f. Format your flash file in accordance with the desired system.

3. Heavy
If damaged Flashdisk due to Bad Sector, the next step could be the last alternative use Partition Magic utility. With this software, we try to remove the Bad Sector:
a. Install Partition Magic
b. After the complete installation, run the program. Press Resize Partitions menu. Then navigate to the Flashdisk drive. This menu will change the size of our flash partition. Then specify the size with no bad sector location.
Beware: that PartitionMagic can check the bad sectors through Operations menu -> Check for Errors as a feature in Windows. This ScanDisk utility needs to run before running Partition Magic to ensure the potition of Bad Sector location.
Another way is to delete the existing partitions on the flash through Operations menu button -> Delete.
Partition Magic has Lots of features associated with the handling of hard drive. You can develop yourself. Download Partition Magic at here or on any webs.

Sunday, December 6, 2009

Kaspersky Password Manager – Secure your Login details

Kaspersky has introduced a password manager software to protect and manage your important login details and confidential data.

Kaspersky Password Manager makes your web experience safe and easy by remembering your online usernames and passwords so that you can have a number of different secure, strong passwords without having to remember every single one.

kpm_screenshot_1_big

Highlights:

  • Organize and store all passwords in one secure location
  • Sign in to websites and applications with a single mouse click
  • Access and secure all passwords with a single master password
  • Store passwords in an encrypted database on your computer
  • Automatically create strong, unique passwords
  • Carry a mobile version of the product on a flash drive
  • Fill in online forms automatically
  • Fully Compatible with Windows 7

1 permanent license of Kaspersky Password Manager costs $24.95

Saturday, December 5, 2009

Download Windows Live Writer 14.0.8089.726 Offline Installer

11_cyrcle_one_24

Windows Live Writer is preferably the best application used by bloggers to write their posts and articles. Writer makes it easy to share your photos and videos on almost any blog service—Windows Live, Wordpress, Blogger, LiveJournal, TypePad, and many more.

The latest updated version of Live Writer (14.0.8089.726) is quietly out and there is no official announcement made for it.

A Full Offline Installer/Setup of Windows Live Writer 14.0.8089.726 is available for download @ Softpedia.

Program to generate Telephone Bill.

  1:         IDENTIFICATION DIVISION.
  2:                 PROGRAM-ID. Q14.
  3:         ENVIRONMENT DIVISION.
  4:          CONFIGURATION SECTION.
  5:                 SOURCE-COMPUTER. IBM PC.
  6:                 OBJECT-COMPUTER. IBM PC.
  7:          INPUT-OUTPUT SECTION.
  8:           SELECT CUSTOMER-REC-FILE ASSIGN TO "CUST_REC.DAT" ORGANIZATION
  9:             IS  SEQUENTIAL.
 10:           SELECT OUT-FILE ASSIGN TO "TELBILL.TXT".
 11:                         
 12:         DATA DIVISION.
 13:           FILE SECTION.
 14:         FD    CUSTOMER-REC-FILE.
 15:         01    IN-REC.
 16:                 02      IN-CUST-ID PIC 999999.
 17:                 02      IN-CUST-NAME  PIC A(20).
 18:                 02      IN-CUST-ADDRESS PIC X(30).
 19:                 02      IN-METERED-PULSES PIC 9(4).
 20:                 02      IN-TELNO PIC 9(6).
 21:         FD    OUT-FILE.
 22:         01    OUT-REC PIC X(80).  
 23: 
 24: 
 25: 
 26:           WORKING-STORAGE SECTION.
 27:         77    EOF PIC X VALUE "N".
 28:         77    HEADING1 PIC X(80) VALUE ALL  "-".
 29:         77    COMPANY-TITLE PIC X(80) VALUE
 30:         " AIRTEL TELEPHONE SERVICE ---- BHARTI TELENET LTD.".
 31:         01    CUST-ID-LINE.
 32:                 02  F PIC X(18) VALUE "CUSTOMER ID NO.: ".
 33:                 02  CUST-ID PIC 9(6).
 34:                 02  F PIC X(37) VALUE "  TELEPHONE CHARGES FOR THE MONTH ".
 35:                 02  BILL-MONTH PIC X(10).
 36:         01    OUT-FORMAT.
 37:                 02  CUST-NAME PIC A(15).
 38:                 02  PHONE-NO PIC ZZ9999.
 39:                 02  F PIC X(10) VALUE SPACES.
 40:                 02  METRED-PULSES PIC ***9.
 41:                 02  F PIC X(10) VALUE SPACES.
 42:                 02  BILL-DUE PIC ****.**.
 43:                 02  F PIC X(10) VALUE SPACES.
 44:                 02  LATE-BILL PIC ****.**.
 45:             
 46:         01    TITLE-LINE.
 47:                 02 F PIC X(80) VALUE " CUSTOMER NAME | TEL NO | METRED PUL
 48:       -          "SES | NET CHARGES | CHARGES AFTER 15 DAYS *".
 49:         01      ISSUE-DATE-LINE.
 50:                02 F PIC X(20) VALUE " DATE OF ISSUE : ".
 51:                02 CURR-MONTH PIC X(40).
 52:         01     FOOTER-LINE.
 53:                02 F PIC X(80) VALUE " *: 15 DAYS FROM THE DATE OF ISSUE AS
 54:       -         " STATED ABOVE".
 55:         77      CHARGES PIC 9(4)V99.
 56:         77      PULSES PIC 9(5).
 57:         PROCEDURE DIVISION.
 58:         MAIN-PARA.
 59:         DISPLAY "PLS. ENTER CURRENT DATE".
 60:         ACCEPT  CURR-MONTH .
 61:         OPEN INPUT CUSTOMER-REC-FILE  OUTPUT OUT-FILE.
 62:         DISPLAY "PLS. ENTER THE MONTH FOR WHICH BILL HAS TO BE GENERATED
 63:       -        ".....(EX. JAN, 2001)".
 64:         ACCEPT BILL-MONTH.
 65:         READ CUSTOMER-REC-FILE AT END MOVE "Y" TO EOF.
 66:         PERFORM CALC-PARA UNTIL EOF = "Y".
 67:         DISPLAY "THE TELEPHONE BILL IS GENERATED.".
 68:         CLOSE CUSTOMER-REC-FILE , OUT-FILE.
 69:         STOP RUN.
 70: 
 71:         HEADER-PARA.
 72:         WRITE OUT-REC FROM HEADING1 .
 73:         WRITE OUT-REC FROM COMPANY-TITLE.
 74:         WRITE OUT-REC FROM HEADING1.
 75:         MOVE IN-CUST-NAME TO CUST-NAME OF OUT-FORMAT.
 76:         MOVE   IN-TELNO TO PHONE-NO.
 77: 
 78:         FOOTER-PARA.
 79:         WRITE OUT-REC FROM ISSUE-DATE-LINE.
 80:         WRITE OUT-REC FROM FOOTER-LINE.
 81:         MOVE "15 DAYS FROM THE DATE OF ISSUE OF BILL." TO OUT-REC.
 82:         
 83: 
 84:         CALC-PARA.
 85:         PERFORM HEADER-PARA.
 86:         MOVE IN-CUST-ID TO CUST-ID OF CUST-ID-LINE.
 87:         WRITE OUT-REC FROM CUST-ID-LINE.
 88:         WRITE OUT-REC FROM HEADING1.
 89:         WRITE OUT-REC FROM TITLE-LINE.
 90:         WRITE OUT-REC FROM HEADING1.
 91: 
 92:         MOVE IN-CUST-NAME TO CUST-NAME.
 93:         MOVE IN-METERED-PULSES TO METRED-PULSES .
 94:         MOVE IN-TELNO TO PHONE-NO .
 95:         IF IN-METERED-PULSES < 75
 96:                 COMPUTE BILL-DUE = 250.00
 97:         ELSE
 98:                 MOVE IN-METERED-PULSES TO PULSES.
 99:                 COMPUTE  CHARGES = 250.00  + ( PULSES - 75 ) * 0.8 .
100:         MOVE CHARGES TO BILL-DUE.
101:         COMPUTE CHARGES = CHARGES + CHARGES * 0.10.
102:         MOVE CHARGES TO LATE-BILL.
103:         WRITE OUT-REC FROM OUT-FORMAT .
104:         PERFORM FOOTER-PARA.
105:         DISPLAY IN-CUST-NAME.
106:         WRITE OUT-REC FROM HEADING1 AFTER ADVANCING PAGE.
107:         READ CUSTOMER-REC-FILE AT END MOVE "Y" TO EOF.
108: 

Friday, December 4, 2009

Intel Processor Identification Utility Download

Intel-Chipset-Identification-Utility_4

The Intel Processor Identification Utility is an official utility by Intel Corporation to identify the processor inside a system, assuring the processor contains intended technologies and is operating at the tested and rated frequency as intended.

This utility gives perfect information about your CPU like: Speed, System Bus, L2 Cache memory. It also tells whether your processor supports Advanced Technologies like: Virtualization technology, Hyper-Threading Technology and Intel 64 Architecture.

The utility is a standalone program with no installer. Simply download the file and run it. It is consistently updated to support the latest Intel processors.

There are two versions of this utility: The “Windows” version and “Bootable” version.

Download Intel Processor Identification Utility (1.13 MB)