• Home
  • About Me
  • Contact
  • feeds

Laptop harddrive dead? Do it yourself last chance recovery.

Posted by Pankaj Agarwal in Tuesday, September 23rd 2008   under: Computer Tips & Tricks    Tags: dead harddrive, harddrive data recovery, laptop data recovery   

Hard drive gone bad?

The most common problems originate
from corruption of the master boot record, FAT, or directory.
Those are soft problems which can usually be taken care of
with a combination of tools like Fdisk /mbr to refresh the
master boot record followed by a reboot and Norton disk doctor
or Spinneret.

The most common hardware problems are a bad controller, a bad
drive motor, or a bad head mechanism.

1. Can the BIOS see and identify the hard drive correctly? If
it can’t, then the hard drives onboard controller is bad.

2. Does the drive spin and maintain a constant velocity? If it
does, that’s good news. The motor is functioning.

3. If the drive surges and dies, the most likely cause is a
bad controller (assuming the drive is cool). A gate allowing
the current to drive the motor may not be staying open. The
drive needs a new controller.

4. Do you hear a lot of head clatter when the machine is
turned on and initialized (but before the system attempts to
access the hard drive). Head clatter would indicate that the
spindle bearings are sloppy or worn badly. Maybe even lose and
flopping around inside.

5. There is always the possibility that the controller you are
using in the machine has gone south.

1. If the drive spins, try booting to the A> prompt, run Fdisk
and check to see if Fdisk can see a partition on the hard
drive. If Fdisk can see the partition, that means that it can
access the drive and that the controller electronics are
functioning correctly. If there is no head clatter, it may be
just a matter of disk corruption which commonly occurs when a
surge hits you machine and overwhelms the power supply voltage
regulator. It commonly over whelms the system electronics
allowing an EM pulse to wipe out the master boot record, file
allocations table, and primary directory. Fdisk can fix the
master boot record and Norton Disk Doctor can restore the FAT
and Directory from the secondaries.
2. The drive spins but Fdisk can’t see it. Try the drive in
another system and repeat the test to confirm that Fdisk can’t
read through the drives onboard controller. If it sees it in
another system, then your machines hard drive interface is
bad. You can try an upgraded or replacement controller card
like a Promise or CMD Technologies (there are others) in you
machine after disabling the integrated controller in the BIOS,
but if the integrated controller went south, it may just be
symptomatic of further failures and you’d be wise to replace
the motherboard. Trying the drive in another machine also
eliminates the variable that your machines 12 volt power
output being bad

3. If you get head clatter but a constant velocity on the
drive motor (no surging), you might try sticking the hard
drive in the freezer for about 12 hours. This is an old trick
from back in the days of the MFM/ESDI driver era. This can
cause the drive components to shrink enough to make the track
marker align with the tracks. We don’t see that kind of
platter spindle wear much anymore, but back in the old days,
the balancing and bearings weren’t as good. Still, under the
right circumstances, it might help. It would depend on how old
the drive is and how many hours of wear have occurred. You
have to be quick to get your info off the drive when it works.
Back then, the drives were much smaller, so there wasn’t so
much to copy. So, go after the important data first.

4. The drive doesn’t spin. Either the onboard controller is
bad or the motor is bad (assuming you did try the drive in
another machine). It’s time to hit the net and local
independent shops to see if you can locate another drive of
the same make and model that’s good. Since the drive is
probably an older drive and no longer in distribution, your
best bet is to find an identical used drive. If you know
someone with the same make and model, you might be wise to try
and persuade them to sell you their drive with an offer of
providing them with a free upgraded drive. If you can locate
an identical drive, start with the controller replacement …
this is the simplest and least invasive. If swapping the
controller doesn’t produce the desire result, you can tear
into the drive and swap the motors. While you have both drive
opened up to accomplish this, scrutinize the platters, heads
and armatures. You might even hook the drive up and power it
from a system with both drives attached. This way, you could
see anything that deviates between the actions of both drives
when they are initialized. Swapping patters is unlikely to
produce any positive result. They are a balanced system like
the tires on your car and I suspect that the balance will be
different for each drive as will other variables.

5. There’s always Ontrack Corp. who will attempt to recoup
your info starting at $500 and going up from there. They don’t
fix and return the drive either.

If the info is all that important to you, I would seek some
professional and experience technician in your locality who
makes his living from servicing and building computer systems
… not just selling them. If you have had much experience
salvaging information from bad hard drives, your likelihood of
success is low. In the case of soft corruption, all utilities
have their eccentricities. Often times, Norton Disk Doctor
will go too far (if you let it). It’s wise to just let those
utilities small steps and then have a look at the drive and
see if you can copy it off. Norton will go so far as to rename
directories and files, and even delete them or break them up
into fragments which are useless.

Digg it Bookmark it Stumble it Float it
no comment

Create your own software to password protect folder in just minutes

Posted by Pankaj Agarwal in Tuesday, July 1st 2008   under: Computer Tips & Tricks       

Here is a trick I found out from which you can protect your files and folders. You may be thinking that you need to download some softwares from internet to do that. Or you may be thinking that I will teach you to protect the files by hiding. NO ! NO ! NO !

You will learn here to make your own software to create FileProtector software. You will be able to do this just by the Notepad and the program provided here. Here is how to do that.

1) Copy the program below starting from #START# and copy upto #STOP#
2) Remove “pankaj” from the program and enter your password there.
3) Open Notepad and paste the program into it.
4) Save the notepad as FileProtector.bat
5) Double Click the FileProtector.bat file. You will see a new folder FileProtector created. There, you can store your files and folders to be password protected.
6) Double Click the file again, type y and press enter. The FileProtector folder will be hidden.
7) Double Click again and enter the password which you had set in STEP 2.
Thats all ! Your FileProtector software has been created. Now enjoy using free software created by you.

Q. What if somebody deletes my batch file ?
A. Don’t worry. You need to only create the batch file again with the same process as you did now and you will get all your files and folders back safely.

#START#
cls
@ECHO OFF
title Folder FileProtector
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST FileProtector goto MDFileProtector
:CONFIRM
echo Unprotected : Press y to lock the folder.
set/p "cho=>"
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren FileProtector "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder FileProtector
goto End
:UNLOCK
echo Please , give your password to open the protected files !
set/p "pass=>"
if NOT %pass%== pankaj goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" FileProtector
echo FileProtector Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDFileProtector
md FileProtector
echo FileProtector created successfully
goto End
#STOP#
Digg it Bookmark it Stumble it Float it
1 comment

Being safe from scammers

Posted by Pankaj Agarwal in Thursday, June 12th 2008   under: Internet       

SCAM and SPAM are the part and parcel of any Internet freak. They are very annoying, but you have to live with them. Scammers are very common now a days on forums, chat rooms etc. They can get you on with a tempting offer you just can’t refuse. They take some money away from you and leave you fishing around.

Here, I am giving you some tips on how you could be safe on the internet and prevent your precious time, energy, effort and money from being wasted.

First of all, don’t go on the promises and temptations given to you by other person. Use your own common-sense and if something sounds like being fishy, you should immediately leave it. There is a 99% chance that those person are trying to make fool out of you and the offers by them are not real.

Secondly, when you do any kind of trade, do a deep research on the earlier sales, trades of the person. If you see some bad reviews, it’s better leaving the idea of trading than to get scammed. When on a forum, you could check things like Reputation, iTraders or any other similar thing that signifies the sales made by that person in past.

Thirdly, don’t believe you can make easy money quickly when you work from home, just as when you work from an office, it takes time, hard work, skill, and good products or services to make a profit. Do your own research on work at home opportunities before you sign up for anything. Don’t reply to unsolicited offers of employment they are most likely fraudulent and the scammers sending them are trying to get money or personal information out of you - not legitimate work that they will pay for.

Lastly, There are also many scammers who try to cheat you by taking away the money from your paypal account. Here are few tips to avoid the paypal scam. If you get an email from paypal, the greeting will never be “Dear Paypal User”, it will directly have your name “Mohan Kumar”. The email asks for things PayPal doesn’t need to verify your identity - PayPal would not ask for information they don’t need (like your bank pin number). Never give them personal information. Always open a new page and open paypal.com. Never ever click on a link provided to you in email.

Forward the email to spoof@paypal.com so that the authorities may take strict action against the scammers to avoid future scamming.

Well, you won’t even know when you get scammed. That is because it is done in such a beautiful way. So, my advice would be to use your common sense, follow my tips and try to be as safe on the internet as you could be. Of course, it’s not a sure-shot guarantee that you’ll be fool-proof but then, Prevention is always better than cure.

Digg it Bookmark it Stumble it Float it
2 comments

Improve your system speed

Posted by Pankaj Agarwal in Thursday, June 5th 2008   under: Computer Tips & Tricks       

1. Let your PC boot up completely before opening any applications.

2. Refresh the desktop after closing any application. This will remove any unused files from the RAM.

3. Do not set very large file size images as your wallpaper. Do not keep a wallpaper at all if your PC is low on RAM (less than 64 MB).

4. Do not clutter your Desktop with a lot of shortcuts. Each shortcut on the desktop uses up to 500 bytes of RAM

5. Empty the recycle bin regularly. The files are not really deleted from your hard drive until you empty the recycle bin.

6. Delete the temporary internet files regularly.

7. Defragment your hard drive once every two months. This will free up a lot of space on your hard drive and rearrange the files so that your applications run faster.

8. Always make two partitions in your hard drive. Install all large Softwares (like PSP, Photoshop, 3DS Max etc) in the second partition. Windows uses all the available empty space in C drive as virtual memory when your Computer RAM is full. Keep the C Drive as empty as possible.

9. When installing new Softwares disable the option of having a tray icon. The tray icons use up available RAM, and also slow down the booting of your PC. Also disable the option of starting the application automatically when the PC boots. You can disable these options later on also from the Tools or preferences menu in your application.

10. Protect your PC from dust. Dust causes the CPU cooling fan to jam and slow down thereby gradually heating your CPU and affecting the processing speed. Use compressed air to blow out any dust from the CPU. Never use vacuum.

RAM IS THE WORKING AREA (DESKTOP) OF THE CPU, KEEP IT AS EMPTY AND UNCLUTTERED AS POSSIBLE!

Source : Click me

Digg it Bookmark it Stumble it Float it
no comment

Boost your RAM

Posted by Pankaj Agarwal in Thursday, June 5th 2008   under: Computer Tips & Tricks       

1) Start any application, say Word. Open some large documents.

2) Press CTRL+SHIFT+ESC to open Windows Task Manager and click Processes tab and sort the list in descending order on Mem Usage. You will notice that WINWORD.EXE will be somewhere at the top, using multiple MBs of memory.

3) Now switch to Word and simply minimize it. (Don’t use the Minimize All Windows option of the task bar).

4) Now go back to the Windows Task Manager and see where WINWORD.EXE is listed. Most probably you will not find it at the top. You will typically have to scroll to the bottom of the list to find Word. Now check out the amount of RAM it is using. Surprised? The memory utilization has reduced by a huge amount.

5) Minimize each application that you are currently not working on by clicking on the Minimize button & you can increase the amount of available RAM by a substantial margin. Depending upon the number and type of applications you use together, the difference can be as much as 50 percent of extra RAM.

In any multitasking system, minimizing an application means that it won’t be utilized by the user right now. Therefore, the OS automatically makes the application use virtual memory & keeps bare minimum amounts of the code in physical RAM.

Source : Here

Digg it Bookmark it Stumble it Float it
Comments Off

Get IP Address of e-mail sender

Posted by Pankaj Agarwal in Thursday, June 5th 2008   under: Internet       

Finding IP address in Gmail

1. Log into your Gmail account with your username and password.
2. Open the mail.
3. To display the headers,
* Click on More options corresponding to that thread. You should get a bunch of links.
* Click on Show original
4. You should get headers like this:
Gmail headers : name
Look for Received: from followed by a few hostnames and an IP address between square brackets. In this case, it is

65.119.112.245.
That is be the IP address of the sender!
5. Track the IP address of the sender

Finding IP address in Yahoo! Mail

1. Log into your Yahoo! mail with your username and password.
2. Click on Inbox or whichever folder you have stored your mail.
3. Open the mail.
4. If you do not see the headers above the mail message, your headers are not displayed. To display the headers,
* Click on Options on the top-right corner
* In the Mail Options page, click on General Preferences
* Scroll down to Messages where you have the Headers option
* Make sure that Show all headers on incoming messages is selected
* Click on the Save button
* Go back to the mails and open that mail
5. You should see similar headers like this:
Yahoo! headers : name
Look for Received: from followed by the IP address between square brackets [ ]. Here, it is 202.65.138.109.
That is be the IP address of the sender!
6. Track the IP address of the sender


Finding IP address in Hotmail

1. Log into your Hotmail account with your username and password.
2. Click on the Mail tab on the top.
3. Open the mail.
4. If you do not see the headers above the mail message, your headers are not displayed. To display the headers,
* Click on Options on the top-right corner
* In the Mail Options page, click on Mail Display Settings
* In Message Headers, make sure Advanced option is checked
* Click on Ok button
* Go back to the mails and open that mail
5. If you find a header with X-Originating-IP: followed by an IP address, that is the sender’s IP address
Hotmail headers : name ,In this case the IP address of the sender is [68.34.60.59]. Jump to step 9.
6. If you find a header with Received: from followed by a Gmail proxy like this
Hotmail headers : name
Look for Received: from followed by IP address within square brackets[].
In this case, the IP address of the sender is [69.140.7.58]. Jump to step 9.
7. Or else if you have headers like this
Hotmail headers : name
Look for Received: from followed by IP address within square brackets[].
In this case, the IP address of the sender is [61.83.145.129] (Spam mail). Jump to step 9.
8. * If you have multiple Received: from headers, eliminate the ones that have proxy.anyknownserver.com.
9. Track the IP address of the sender

Source : Here

Digg it Bookmark it Stumble it Float it
Comments Off

Live chat with offline friends

Posted by Pankaj Agarwal in Thursday, June 5th 2008   under: IM Clients       

Yes, this is right. You can have live conversation with you offline friends. The real thing is that sometimes the friends who appear offline is not really offline. He may be in invisible mode because he may be busy. You are going to learn how to find who is offline and who is online but in invisible mode.

Firstly open your yahoo messenger main window and double click on the name of the person whom you want to check. The chat window will open obviously.

Click IMVironment button, select See all IMVironments, select Yahoo! Tools or Interactive Fun, and click on Doodle.

After loading the Doodle imvironment there can be these two possibilities :

1. If the user is offline Doodle are will show this “waiting for your friend to load Doodle” continuously . You will see IMAGE 1.

2. If the user is in invisible mode and is online than you will notice IMAGE 2 just few seconds after you see IMAGE 1.

IMAGE 1                            IMAGE 2

Digg it Bookmark it Stumble it Float it
no comment

A small hack to speed up Mozilla Firefox

Posted by Pankaj Agarwal in Thursday, June 5th 2008   under: Web Browser       

Do you want to load the firefox faster so that you can surf faster ? If your answer is yes, than continue reading.

Type about:config in the address bar, Then look for the following entries, and make the corresponding changes.

  1. network.http.max-connections-per-server =32

  2. network.http.max-persistent-connections-per-proxy =16

  3. network.http.max-connections = 64

  4. network.http.max-persistent-connections-per-server = 10

  5. network.http.pipelining = true

  6. network.http.pipelining.maxrequests = 200

  7. network.http.request.max-start-delay = 0

  8. network.http.proxy.pipelining = true

  9. network.http.proxy.version = 1.0

Lastly right-click anywhere and select New- Integer. Name it nglayout.initialpaint.delay and set its value to 0. This value is the amount of time the browser waits before it acts on information it recieves.

Source : Here

Digg it Bookmark it Stumble it Float it
Comments Off

Increase your internet speed

Posted by Pankaj Agarwal in Thursday, June 5th 2008   under: Internet       

1. Speed your net by 20%

Microsoft reserves 20% of your available bandwidth for their own purposes like Windows Updates and interrogating your PC etc. You can get it back easily. Here is how you can get it back :-

Click Start then Run and type “gpedit.msc” without quotes. This opens the group policy editor. Then go to:

Local Computer Policy/Computer Configuration/Administrative Templates/Network/QOS Packet Scheduler/Limit Reservable Bandwidth

Double click on Limit Reservable bandwidth. It will say it is not configured, but the truth is under the ‘Explain’ tab i.e.”By default, the Packet Scheduler limits the system to 20 percent of the bandwidth of a connection, but you can use this setting to override the default.”
So the trick is to ENABLE reservable bandwidth, then set it to ZERO. This will allow the system to reserve nothing, rather than the default 20%.It works on Win 2000 as well.

2. Speed you dial up net connection

As more and more people get quick connections to the internet, such as cable or ADSL, it becomes apparent to the user of a simple dial-up modem that the World Wide Web can quickly turn into the World Wide Wait. Here a trick that can help speed up your current modem without shelling out the big bucks.

There is a setting located in your windows registry called the Maximum Transfer Unit (MTU). This determines the size of the packets of data sent between your and your server. In Windows 95, this setting is has a value of 1,500 bytes when the actual size of internet packets is 1,000 bytes. This can sometimes slow things down. To remedy the situation, simply follow these steps:

In the registry editor (Start > Run > regedit.exe), navigate to HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Class\NetTrans. In the NetTrans folder you should find another folder named “000x” in which x represents a fourth digit. Right-click on the “000x” folder and select New and StringValue. Rename the item that appears in the panel on the right side to MaxMTU, then double-click it to bring up the Edit String box and give it a velue of 1002.

Remember to keep playing with the MaxMTU value until you feel that your internet connection has greatly speed up. Some people report huge speed gains using this tricks, while others hardly notice a difference. In any case, it’s definetly worth a try.

Source : Here

Digg it Bookmark it Stumble it Float it
no comment


  • Recent Entries
  • Recent Comment
  • Most Comment
  • Laptop harddrive dead? Do it yourself last chance recovery.
  • Create your own software to password protect folder in just minutes
  • Being safe from scammers
  • Improve your system speed
  • Boost your RAM
  • Get IP Address of e-mail sender
  • Live chat with offline friends
  • A small hack to speed up Mozilla Firefox
  • Increase your internet speed
  • molev in Create your own software to passwor…
  • Genius Hackers:… in Being safe from scammers
  • Mike in Being safe from scammers
  • Being safe from scammers (2)
  • Create your own software to password protect folder in just minutes (1)
  • Advertisment
  • Popular Entries
  • Popular Tags
  • 1 1
  • you must install the popular plugin by alex king for this section to work
  • dead harddrive harddrive data recovery laptop data recovery

Categories

    • Computer Tips & Tricks
    • Hardwares
    • IM Clients
    • Internet
    • Web Browser

Search




Archives

  • September 2008
  • July 2008
  • June 2008

Pages

  • About Me
  • Contact

Links

  • A Webmaster Forum
Designed by Wordpress Themes | ©2007-2008 Genius-Hackers.com | Edited by Pankaj Agarwal | Hosting Powered By JoomJump