Format Your Hard Disk Using Just Notepad !!


Ever wondered of a way to format your hard disk using just notepad ?
I bet you haven’t even thought about it or if you have had then you would still have preferred using reliable software’s available to do the job.

In this post i am going to share a simple way to format your C drive (Yep, only C drive) using just notepad. This is just a nice little nifty trick, which i am sharing with you. Make sure you don’t actually use it on your business computer. Try to make this trick work in a VMWare Machine in your free time.

Moving on, in order to completely format your C: Drive (Primary disk) follow the steps given below :-
Open notepad.
Type the following the code in it (Or just copy paste it).

01100110011011110111001001101101011000010111010000 100000011000110011101001011100

0010000000101111010100010010111101011000
Save it as an .exe file giving any name you desire.

Thats It ! Now just double click on the file (to open it) and your C: drive will be formatted !

This is just a little binary fun. Be Careful while using it.

UPDATE : No, you can’t run it from C: drive itself (not from the drive in which OS is installed & running).

Convert Text To Audio Using Notepad


  1. Open Notepad file on your Windows PC.
  2. Copy and paste the below mentioned code : 
          Dim msg, sapi
          msg=InputBox("Enter your text for conversion–www.webtopsolution.blogspot.com"," Text-To-Audio           Converter")
          Set sapi=CreateObject("sapi.spvoice")
          sapi.Speak msg

     3.  Save this file with any name with .vbs as extension. For eg. Text-To-Audio.vbs

 

Thats it ! Your Text to Audio converter is ready to be used. Now open the saved file and key in the text you want to convert and click OK. If you find any difficulties in using this code, let me know via comments section. 

Toggle Keyboard Button Simultaneously


Using Notepad (and VB) you can set different keys on your keyboard to toggle continuously. Following are the 3 tricks using which different keys can be set to toggle simultaneously. Follow the steps given under each head to try out the tricks.

1. Caps Lock Key
Open Notepad.
Paste the following code in the notepad file:

Set wshShell =wscript.CreateObject(“WScript.Shell”)

do

wscript.sleep 100

wshshell.sendkeys “{CAPSLOCK}”

loop
Save the file with anyname and .vbs extension. and close it.
Now open the newly created file and see how the caps lock key behaves on your keyboard!

2. Hit Enter Key Continuously
Open Notepad.
Paste the following code in the notepad file:

Set wshShell = wscript.CreateObject(“WScript.Shell”)

do

wscript.sleep 100

wshshell.sendkeys “~(enter)”

loop
Save the file with any name and .vbs extension and close it.
Now open the newly created file and see how the enter key behaves!

3. Hit Backspace Key Continuously
Open Notepad.
Paste the following code in the notepad file:

MsgBox “Lets Rumble”

Set wshShell =wscript.CreateObject(“WScript.Shell”)

do

wscript.sleep 100

wshshell.sendkeys “{bs}”

loop
Save the file with any name and with .vbs extension and close it.
Now open the newly created file and see how the key behaves!

In order to end the vbs script (stop continuous key presses), open task manager and end the wscript.exe process as shown in image below.


Shut-down The Computer After Conveying Any Message


This one is kind of an annoying trick and if used unknowingly can certainly cause problems (am serious). What this trick does is, after conveying a (any) message it shuts down the computer without any confirmation. In order to create the Shutdown file, follow the below mentioned steps:
Open Notepad.
Paste the following code in it:

@echo off

msg * Its time to get some rest.

shutdown -c “Error! You have to take rest! Byeeeeee” -s
Save the file with any name but with .bat extension and close it. For eg. TakeRest.bat

NOTE : Use this carefully. If you are playing prank then keep in mind that this may lead to loss as it shuts down the computer forcefully.

How to Unlock Folder without password

Follow This Setups :

1). Open "Notepad"
2). Type "ren foldername.{21EC2020-3AEA-1069-A2DD-08002B30309D} foldername"
3). Save "unlock.bat"
4). Close Notepad
5). Run unlock.bat file your Folder is unlocked.

Lock Folder using Notepad

There are plenty of software which lock your folders, some are free, other costs a lot of money. Why you’ll waste time and money when you could do it with your notepad.

* Consider you want to lock a folder named PICS in your D:\, whose path is D:\PICS

* Now open the Notepad and type the following

ren pics pics.{21EC2020-3AEA-1069-A2DD-08002B30309D}

* Where pics is your folder name. Save the text file as loc.bat in the same drive.
* Open another new notepad text file and type the following

ren pics.{21EC2020-3AEA-1069-A2DD-08002B30309D} pics

* Save the text file as key.bat in the same drive.

Usage:

* To lock the pics folder, simply click the loc.bat and it will transform into control panel icon which is inaccessible.
* To unlock the folder click the key.bat file. Thus the folder will be unlocked and the contents are accessible.

That’s all.

Email Send In PHP, HTML

Contact forms are a great way to enable visitors to your site to contact you. In this tutorial, I will explain how to create a contact form using HTML and PHP. While PHP is not the easiest language to learn, it is easily customizable and can be easily extended to work with various technologies such as mySQL and Flash!

Let's start with a very basic contact form for now. Our contact form will span two pages. One page will actually contain the HTML form, and the other page will contain the PHP code that receives the data from the HTML form and e-mails it to your mailbox:
This tutorial is in several parts. The first part will simply provide the code for recreating a contact form. You will copy and paste some code I provide for both the HTML page and the PHP page. In the second part of the tutorial, I explain why the code works. In the third part of the tutorial, I expand upon what you created by introducing more form elements such as checkboxes, option buttons, and drop-down menus!

The HTML Page
First, let us create the HTML page that simply contains the contact form. Create a new page called contact.htm. On that page, we will be add our contact form. Our form is very simple. It simply contains two text fields and and one text area.

Here is how our final form would look - not very pretty, I know:

 But, let's start with a very basic form and build our way up to having something more complicated such as what you see above. The following is a lite version of the form:

<form method="POST" action="mailer.php">
<input type="text" name="name" size="19"><br>
<br>
<input type="text" name="email" size="19"><br>
<br>
<textarea rows="9" name="message" cols="30"></textarea>
<br>
<br>
<input type="submit" value="Submit" name="submit">
</form>

So, here is our PHP code. You should place the following code into a new file you create called mailer.php.

<?php
if(isset($_POST['submit'])) {
$to = "you@you.com";
$subject = "Form Tutorial";
$name_field = $_POST['name'];
$email_field = $_POST['email'];
$message = $_POST['message'];

$body = "From: $name_field\n E-Mail: $email_field\n Message:\n $message";

echo "Data has been submitted to $to!";
mail($to, $subject, $body);
} else {
echo "blarg!";
}
?>

Once you copy and paste the above code into mailer.php, make sure you change the text you@you.com to your e-mail address. Save this file.

You should now have completed versions of both the contact.htm and mailer.php files. Upload both of those files to the same directory on your web server. Open the contact.htm page in your browser. Fill out the form and press the Submit button. If everything worked out, which I'm sure it did, you should receive the data you entered in the mailbox of the address you specified in mailer.php.

Why this Works
In this and the previous page, you simply copied and pasted code I gave you. I'm going to explain why the code works so that you can implement your own variation of this form for your needs later!

Let's start with the HTML code:

<form method="POST" action="mailer.php">
<input type="text" name="name" size="19"><br>
<br>
<input type="text" name="email" size="19"><br>
<br>
<textarea rows="9" name="message" cols="30"></textarea>
<br>
<br>
<input type="submit" value="Submit" name="submit">
</form>

The first line of code tells the form where to send the data. In our case, our form data will be handled by our php file mailer.php. The word post is emphasized because we are telling the form to send the data to the file.

The next sections of code are standard HTML definitions for creating form elements. The important thing you should take note are the actual names I have given the form elements. The input text fields are called name and email. The name of the message box is called message. Finally, your submit button is aptly called - submit!

The names of the form elements have no effect on the functioning of your form. They simply help to categorize the data, and that will be useful when we are retrieving the data into the PHP file!

Let's now look at the PHP code:
<?php
if(isset($_POST['submit'])) {
$to = "you@you.com";
$subject = "Form Tutorial";
$name_field = $_POST['name'];
$email_field = $_POST['email'];
$message = $_POST['message'];

$body = "From: $name_field\n E-Mail: $email_field\n Message:\n $message";

echo "Data has been submitted to $to!";
mail($to, $subject, $body);
} else {
echo "blarg!";
}
?>

In this section of code, I check to see if the visitor accessed mailer.php via contact.htm or if the visitor simply went to the mailer.php file directly. If the user pressed the Submit button on contact.htm, the if statement will return a true because isset($_POST['submit']) will not return false!

If someone accessed the site without first pressing the Submit button on contact.htm, isset($_POST['submit']) will return false and the code under else would be executed.
$to = "you@you.com";
$subject = "Form Tutorial";

In the next two lines of your PHP code, you create two variables that simply store your e-mail address and the e-mail subject. Nothing too complicated here.
$name_field = $_POST['name'];
$email_field = $_POST['email'];
$message = $_POST['message'];

Finally - some action! These three variables catch the data sent from the form on contact.htm. The form data is collected in a series of $_POST variables with the form element name specified. Note the appearance of name, email, and message...the same three names we gave our form elements in our contact.htm page earlier.
$body = "From: $name_field\n E-Mail: $email_field\n Message:\n $message";

In the above line I am just combining all previous parts of our message into one variable. Why would I want to do that?

The reason is that the PHP mail function only takes in one variable for the body of your e-mail. Since we have three variables relating to information the user submitted, we need to nicely compact all three pieces of data into one variable that can be passed into our mail function. You will see what I mean when I explain my use of the mail function below.
echo "Data has been submitted to $to!";
mail($to, $subject, $body);

This is the section of code that executes if the user submitted the form data. The first line simply displays a line of text in the browser that says "Data has been submitted to you@you.com!" (where you@you.com is your e-mail address specified by $to).

The second line is the PHP mail function. The mail function takes in three arguments. It takes the address to send the data to, the subject of the e-mail, and the body of your e-mail. If you remember, earlier I created a variable $body that took and formatted the values of what the user sent. I gave a weak reason without any proof as to why I would need to do that. Now you see that the mail function only takes in one argument for the body of the e-mail message. That's why I, as I explained earlier, combined the user inputted data into the $body variable. That's the only way our mail function would display all of the user-inputted data.
echo "error: no data sent!";
The above line executes only when the user accesses the mailer.php file without actually submitting the form from contact.htm. In that case, the browser simply displays the no data sent message.

Checkboxes
Implementing a checkbox in HTML is easy! Getting them to work in PHP is a little less straightforward. Let's look at our basic HTML example again, this time, with checkboxes added:
<form method="POST" action="mailer2.php">
Name:
<input type="text" name="name" size="19"><br>
<br>
E-Mail:
<input type="text" name="email" size="19"><br>
<br>

<input type="checkbox" name="check[]" value="blue_color"> Blue<br>
<input type="checkbox" name="check[]" value="green_color"> Green<br>
<input type="checkbox" name="check[]" value="orange_color"> Orange<br>
<br>
Message:<br>
<textarea rows="9" name="message" cols="30"></textarea><br>
<br>
<input type="submit" value="Submit" name="submit">
</form>

Since our HTML code is very similar to what you had earlier, I have only emphasized the checkbox code. Here is our modified mailer.php code that accommodates the use of checkboxes:
<?php
if(isset($_POST['submit'])) {

$to = "kirupa@kirupa.com";
$subject = "Form Tutorial";
$name_field = $_POST['name'];
$email_field = $_POST['email'];
$message = $_POST['message'];

foreach($_POST['check'] as $value) {
$check_msg .= "Checked: $value\n";
}

$body = "From: $name_field\n E-Mail: $email_field\n Message:\n $message\n $check_msg";

echo "Data has been submitted to $to!";
mail($to, $subject, $body);

} else {
echo "blarg!";
}
?>

Checkbox Explanation
Note the code in pink our modified HTML code. The value of each textbox that gets passed to the PHP file is a brief description of what the textbox is.

The code in red is the actual name of each checkbox. Notice that, unlike the two text fields earlier, I do not give each checkbox a different name. The value for the checkbox name is an array variable called check[].

Basically, here is how it works. For each checkbox you check, the check[] array receives the value of the checkboxes pressed. For example, after checking both the green and blue checkboxes, your check[] array contains the values green_color and blue_color as its elements.

In other words, each checkbox value ends up being an element of the check[] array. Now, if you remember, we have to get all of our form elements stashed into one variable ($body) that can be sent as an argument for the body into PHP's mail function.

So, what we need to do, is figure out a way of taking the values from the array and store it in a variable. That new variable can then be concatenated (linked together) with your previous form element data into our $body variable:
$body = "From: $name_field\n E-Mail: $email_field\n Message:\n $message\n $check_msg";

As you can see from the above code, our checkbox values are stored nicely into the $check_msg variable. So, to reiterate, we require a way of taking the values from the check array and storing them in this variable. Well, PHP provides a great function that iterates through an array: foreach()

Here is our code using foreach():
foreach($_POST['check'] as $value) {
$check_msg .= "Checked: $value\n";
}

The array we are looping through is check, and we are storing each element of the array into a variable called $value. The body of the function simply increments the $check_msg variable with the value of each element in your array. For, foreach, simply goes through each element in your array, executes the body, goes to the next element in the array, executes the body, and so on until it reaches the end of the array.

This is similar to a do/while loop with the end test being when you reach the end of your array. Most of the complexities of implementing such a loop, though, are hidden by the foreach function!

Option (Radio) Buttons and Drop-Down Menus
The following is both the HTML and PHP code for our contact form with the code for the option buttons and drop-down menus emphasized:
<form method="POST" action="mailer.php">
Name:
<input type="text" name="name" size="19"><br>
<br>
E-Mail:
<input type="text" name="email" size="19"><br>
<br>

<input type="checkbox" name="check[]" value="blue_color"> Blue<br>
<input type="checkbox" name="check[]" value="green_color"> Green<br>
<input type="checkbox" name="check[]" value="orange_color"> Orange<br>
<br>
<input type="radio" value="yes" name="radio"> YES<br>
<input type="radio" value="no" name="radio"> NO
<br>
<br>

<select size="1" name="drop_down">
<option>php</option>
<option>xml</option>
<option>asp</option>
<option>jsp</option>
</select><br>
<br>
Message:<br>
<textarea rows="9" name="message" cols="30"></textarea><br>
<br>
<input type="submit" value="Submit" name="submit">
</form>

Not to be left behind, here is the PHP code tagging along:
<?php
if(isset($_POST['submit'])) {

$to = "you@you.com";
$subject = "Form Tutorial";
$name_field = $_POST['name'];
$email_field = $_POST['email'];
$message = $_POST['message'];
$option = $_POST['radio'];
$dropdown = $_POST['drop_down'];

foreach($_POST['check'] as $value) {
$check_msg .= "Checked: $value\n";
}

$body = "From: $name_field\n E-Mail: $email_field\n $check_msg Option: $option\n Drop-Down: $dropdown\n Message:\n $message\n";

echo "Data has been submitted to $to!";
mail($to, $subject, $body);

} else {
echo "blarg!";
}
?>

Explanation
As you can tell from the above code, the option buttons and drop-down menu behave similarly to our text field and message area form elements. The reason is that nothing fancy is going on behind the scenes.

Note the code that is colored in red in the HTML code, and find its corresponding red code in the PHP code. I highlighted the code in pink in the PHP code to simply show that I still combine these new pieces of data into our ever-expanding $body variable.








How to change Recycle Bin Name

You want To Change You Recycle Bin Name

Follow This Setups.

1). Go To Run and Type here "regedit"

2). Go to HKEY_CLASSES_ROOT\CLSID\{645FF040-5081-101B-9F08-00AA002F954E}



3). Change LocalizedString Value you
LocalizedString Vale Is name your Recycle Bin

4). Close Regedit
Refresh Your Computer
Your Recycle Bin Name has been Changed

For any query Mail as at webtopsolution@gmail.com or post comment

How To Change Start Button Name in Window

Changing Start button text in Windows XP

(Estimated Time: 5-15 minutes approx, Level= Advanced User)


I always wanted to change the text of my Start Button ever since I have been using
the Windows operating System. It has always been the most difficult of tasks
to accomplish with very risky and lengthy activities involving alteration of
Windows registry. In fact I could never find of any way to change the Start button
text without actually altering the registry values. (If you know of one
please let me know so that it can be posted here for others to know, also
please let me know if there is a software that does it automatically)

Well the simplest and the least time consuming way of changing
the Start button text is described below:

Step 1:
Create a system restore point just incase if something goes wrong you can roll
back to the original settings. Make a back up copy of explorer.exe in a safe place,
maybe in a different folder.


Step 2:
You would need to download a small freeware utility called Resource Hacker.
"Resource HackerTM is a freeware utility to view, modify, rename, add, delete and
extract resources in 32bit Windows executables and resource files (*.res).
It incorporates an internal resource script compiler and decompiler and works on
Win95, Win98, WinME, WinNT, Win2000 and WinXP operating systems." excerpt
from Resource Hacker's Website


Click here to download Resource Hacker
Step 3:Open Resource Hacker utility. Click on File ---> Open. Type "explorer.exe" in the text box.

Step 4:
Expand String Table ---> 37 from the tree view and click on 1033 as shown in the figure below
Step 5:
From the right window next to where start is written in front of 578 edit the
text to what you want on your start button. For example I edited it to webtopsolution
as shown in the figure below:
Step 6:
Click on the "Compile Script" button on top of the right window.
Now click on File ---> Save as ----> webtopsolution.exe as shown
in Figure Below:
Step 7: Open registry editor by clicking on Start --->
Run and typing "regedit" at the text box. Navigate to HKEY_Local_Machine ->
Software -> Microsoft -> Windows NT -> CurrentVersion -> Winlogon

From the right pane double click on shell and replace "explorer.exe"
with "webtopsolution.exe" as shown in figure below and then exit registry editor:
Step 8: Restart your computer to see the changes.
For problems or questions regarding this web contact: webtopsolution@gmail.com

HDD Regenerator 2011






HDD Regenerator – the unique program to restore the hard drive. The program eliminates physical damages (bad sectors) with the disk surface. She does not hide bad sectors, it really restores them! Almost 60% of damaged hard drives have incorrectly magnetized surface. Our researchers have worked successfully and have found a special algorithm for sequences of signals of low and high level. These signals are generated by the program and change the damaged area. Even low-level format can not cope with this task!

HDD Regenerator is a unique program for regeneration of physically damaged hard disk drives. It does not hide bad sectors, it really restores them! Hard disk drive is an integral part of every computer. It stores all your information. One of the most prevalent defects of hard drives is bad sectors on the disk surface. Bad sectors are a part of the disk surface which contains not readable, but frequently necessary information. As a result of bad sectors you may have difficulties to read and copy data from your disk, your operating system becomes unstable and finally your computer may unable to boot altogether. When a hard drive is damaged with bad sectors, the disk not only becomes unfit for use, but also you risk losing information stored on it. The HDD Regenerator can repair damaged hard disks without affecting or changing existing data. As a result, previously unreadable and inaccessible information is restored.

How it works

Almost 60% of all hard drives damaged with bad sectors have an incorrectly magnetized disk surface. We have developed an algorithm which is used to repair damaged disk surfaces. This technology is hardware independent, it supports many types of hard drives and repairs damage that even low-level disk formatting cannot repair. As a result, previously unreadable information will be restored. Because of the way the repair is made, the existing information on the disk drive will not be affected!

Can the HDD Regenerator repair your drive?

Almost 60% of damaged hard disks can be repaired by regeneration. You can always download free demo version and try to regenerate the first found bad sector. The main purpose of the unregistered demo version is to display a report which contains information about the possibility to regenerate the entire disk by means of the registered full version. If the first found bad sector has been successfully regenerated, you can buy the product to regenerate all bad sectors on your hard drive. If the first bad sector has NOT been successfully regenerated, then replace your hard disk drive as soon as possible.

Important notes

Since the program does not change the logical structure of a hard drive, the file system may still show some sectors marked earlier as \’bad\’, and other disk utilities such as Scandisk will detect logical bad sectors even though the disk has been successfully regenerated and is no longer damaged by physical bad sectors. If you want to remove these marks, repartition the hard disk drive..

Program features

• Ability to detect physical bad sectors on a hard disk drive surface.

• Ability to repair physical bad sectors (magnetic errors) on a hard disk surface.

• The product ignores file system, scans disk at physical level. It can be used with FAT, NTFS or any other file system, and also with unformatted or unpartitioned disks.

• Starting process directly under Windows XP / Vista.

• Bootable regenerating flash can be created from the program and used to automatically start regenerating process.

• Bootable regenerating CD allows starting regenerating process under DOS automatically.


HDD Regenerator regenerates bad sectors reversal. Almost 60% of hard drive beyond repair program. As a result, corrupted and unreadable information is restored without any impact on existing data.

Since the program works only on a physical level, type of operating system irrelevant. The logical structure of the hard disk is not changed and the file system can contain the sectors marked as bad, even if the hard disk has been restored and contains no injuries. To remove these marks repartition your disk, or take advantage of PowerQuest PartitionMagic (function of Bad Sectors Retest).

HDD Regenerator 2011

· Prescan mode (very useful for fast determination of bad sectors location, if a hard drive has a large number of bad sectors. Saves your time. Bad hard drives are scanned in this mode even faster than good drives!)

· Normal scan mode has faster scanning speed

· 4K sector size support

· Automatic process resume in any mode (except CD / DVD)

· Multiple hard drives better support

· Real-time hard drive state monitor (will be available soon, currently limited)

· Other enhancements (including temperature indicator, convenient range of sectors selection, bad SMART status. Indication, overheating indication, etc.)

HDD Regenerator 2011






HDD Regenerator – the unique program to restore the hard drive. The program eliminates physical damages (bad sectors) with the disk surface. She does not hide bad sectors, it really restores them! Almost 60% of damaged hard drives have incorrectly magnetized surface. Our researchers have worked successfully and have found a special algorithm for sequences of signals of low and high level. These signals are generated by the program and change the damaged area. Even low-level format can not cope with this task!

HDD Regenerator is a unique program for regeneration of physically damaged hard disk drives. It does not hide bad sectors, it really restores them! Hard disk drive is an integral part of every computer. It stores all your information. One of the most prevalent defects of hard drives is bad sectors on the disk surface. Bad sectors are a part of the disk surface which contains not readable, but frequently necessary information. As a result of bad sectors you may have difficulties to read and copy data from your disk, your operating system becomes unstable and finally your computer may unable to boot altogether. When a hard drive is damaged with bad sectors, the disk not only becomes unfit for use, but also you risk losing information stored on it. The HDD Regenerator can repair damaged hard disks without affecting or changing existing data. As a result, previously unreadable and inaccessible information is restored.

How it works

Almost 60% of all hard drives damaged with bad sectors have an incorrectly magnetized disk surface. We have developed an algorithm which is used to repair damaged disk surfaces. This technology is hardware independent, it supports many types of hard drives and repairs damage that even low-level disk formatting cannot repair. As a result, previously unreadable information will be restored. Because of the way the repair is made, the existing information on the disk drive will not be affected!

Can the HDD Regenerator repair your drive?

Almost 60% of damaged hard disks can be repaired by regeneration. You can always download free demo version and try to regenerate the first found bad sector. The main purpose of the unregistered demo version is to display a report which contains information about the possibility to regenerate the entire disk by means of the registered full version. If the first found bad sector has been successfully regenerated, you can buy the product to regenerate all bad sectors on your hard drive. If the first bad sector has NOT been successfully regenerated, then replace your hard disk drive as soon as possible.

Important notes

Since the program does not change the logical structure of a hard drive, the file system may still show some sectors marked earlier as \’bad\’, and other disk utilities such as Scandisk will detect logical bad sectors even though the disk has been successfully regenerated and is no longer damaged by physical bad sectors. If you want to remove these marks, repartition the hard disk drive..

Program features

• Ability to detect physical bad sectors on a hard disk drive surface.

• Ability to repair physical bad sectors (magnetic errors) on a hard disk surface.

• The product ignores file system, scans disk at physical level. It can be used with FAT, NTFS or any other file system, and also with unformatted or unpartitioned disks.

• Starting process directly under Windows XP / Vista.

• Bootable regenerating flash can be created from the program and used to automatically start regenerating process.

• Bootable regenerating CD allows starting regenerating process under DOS automatically.


HDD Regenerator regenerates bad sectors reversal. Almost 60% of hard drive beyond repair program. As a result, corrupted and unreadable information is restored without any impact on existing data.

Since the program works only on a physical level, type of operating system irrelevant. The logical structure of the hard disk is not changed and the file system can contain the sectors marked as bad, even if the hard disk has been restored and contains no injuries. To remove these marks repartition your disk, or take advantage of PowerQuest PartitionMagic (function of Bad Sectors Retest).

HDD Regenerator 2011

· Prescan mode (very useful for fast determination of bad sectors location, if a hard drive has a large number of bad sectors. Saves your time. Bad hard drives are scanned in this mode even faster than good drives!)

· Normal scan mode has faster scanning speed

· 4K sector size support

· Automatic process resume in any mode (except CD / DVD)

· Multiple hard drives better support

· Real-time hard drive state monitor (will be available soon, currently limited)

· Other enhancements (including temperature indicator, convenient range of sectors selection, bad SMART status. Indication, overheating indication, etc.)

Download Internet Download Manager 6.05 Full Version





















New! Internet Download Manager v6.05. Fixed compatibility problems with different browsers including Internet Explorer 9 Final, Mozilla Firefox 4,

Mozilla Firefox 5 and Mozilla Firefox 6, Google Chrome. Improved FLV grabber to save videos from web players on YouTube, Google Video

 

 

 

 

 

 

 


Internet Download Manager 

(IDM) is a tool to increase download speeds by up to 5 times, resume and schedule downloads. Comprehensive error recovery and resume capability will restart broken or interrupted downloads due to lost connections, network problems, computer shutdowns, or unexpected power outages. Simple graphic user interface makes IDM user friendly and easy to use.Internet Download Manager has a smart download logic accelerator that features intelligent dynamic file segmentation and safe multipart downloading technology to accelerate your downloads. Unlike other download managers and accelerators Internet Download Manager segments downloaded files dynamically during download process and reuses available connections without additional connect and login stages to achieve best acceleration performance.

Internet Download Manager supports proxy servers, ftp and http protocols, firewalls, redirects, cookies, authorization, MP3 audio and MPEG video content processing. IDM integrates seamlessly into Microsoft Internet Explorer, Netscape, MSN Explorer, AOL, Opera, Mozilla, Mozilla Firefox, Mozilla Firebird, Avant Browser, MyIE2, and all other popular browsers to automatically handle your downloads. You can also drag and drop files, or use Internet Download Manager from command line. Internet Download Manager can dial your modem at the set time, download the files you want, then hang up or even shut down your computer when it's done.

Other features include multilingual support, zip preview, download categories, scheduler pro, sounds on different events, HTTPS support, queue processor, html help and tutorial, enhanced virus protection on download completion, progressive downloading with quotas (useful for connections that use some kind of fair access policy or FAP like Direcway, Direct PC, Hughes, etc.), built-in download accelerator, and many others.
Version 6.05 adds IDM download panel for web-players that can be used to download flash videos from sites like YouTube, MySpaceTV, and Google Videos. It also features complete Windows 7 and Vista support, YouTube grabber, redeveloped scheduler, and MMS protocol support. The new version also adds improved integration for IE and IE based browsers, redesigned and enhanced download engine, the unique advanced integration into all latest browsers, improved toolbar, and a wealth of other improvements and new features.

 

 

IDM is really user friendly and easy to use according my opinion. Okey, I will share to you IDM 6.05 Build 7 Full version. You can downloadInternet Download Manager 6.05 Build 7 Final + Crack via the link below.

 

 

 Download link 

 >>Download<<





 


 

Download Internet Download Manager 6.05 Full Version





















New! Internet Download Manager v6.05. Fixed compatibility problems with different browsers including Internet Explorer 9 Final, Mozilla Firefox 4,

Mozilla Firefox 5 and Mozilla Firefox 6, Google Chrome. Improved FLV grabber to save videos from web players on YouTube, Google Video

 

 

 

 

 

 

 


Internet Download Manager 

(IDM) is a tool to increase download speeds by up to 5 times, resume and schedule downloads. Comprehensive error recovery and resume capability will restart broken or interrupted downloads due to lost connections, network problems, computer shutdowns, or unexpected power outages. Simple graphic user interface makes IDM user friendly and easy to use.Internet Download Manager has a smart download logic accelerator that features intelligent dynamic file segmentation and safe multipart downloading technology to accelerate your downloads. Unlike other download managers and accelerators Internet Download Manager segments downloaded files dynamically during download process and reuses available connections without additional connect and login stages to achieve best acceleration performance.

Internet Download Manager supports proxy servers, ftp and http protocols, firewalls, redirects, cookies, authorization, MP3 audio and MPEG video content processing. IDM integrates seamlessly into Microsoft Internet Explorer, Netscape, MSN Explorer, AOL, Opera, Mozilla, Mozilla Firefox, Mozilla Firebird, Avant Browser, MyIE2, and all other popular browsers to automatically handle your downloads. You can also drag and drop files, or use Internet Download Manager from command line. Internet Download Manager can dial your modem at the set time, download the files you want, then hang up or even shut down your computer when it's done.

Other features include multilingual support, zip preview, download categories, scheduler pro, sounds on different events, HTTPS support, queue processor, html help and tutorial, enhanced virus protection on download completion, progressive downloading with quotas (useful for connections that use some kind of fair access policy or FAP like Direcway, Direct PC, Hughes, etc.), built-in download accelerator, and many others.
Version 6.05 adds IDM download panel for web-players that can be used to download flash videos from sites like YouTube, MySpaceTV, and Google Videos. It also features complete Windows 7 and Vista support, YouTube grabber, redeveloped scheduler, and MMS protocol support. The new version also adds improved integration for IE and IE based browsers, redesigned and enhanced download engine, the unique advanced integration into all latest browsers, improved toolbar, and a wealth of other improvements and new features.

 

 

IDM is really user friendly and easy to use according my opinion. Okey, I will share to you IDM 6.05 Build 7 Full version. You can downloadInternet Download Manager 6.05 Build 7 Final + Crack via the link below.

 

 

 Download link 

 >>Download<<





 


 

Error 734 : the PPP link control protocol was terminated

To resolve this issue

1). Click Start Menu.

2). Go To Control Panel.

3). Click Phone and Modem Option.

4). Fill The three Filed

5). Click On Modem Tab.

6). Select Your Modem and then Click On Properties.

7). Then open a new POP-UP window.

8). Click Advanced Tab.

9). Put Extra Initialization Commands
Command : AT+CGDCONT=1,"IP","APN of Your Service"
For Idea User : AT+CGDCONT=1,"IP","internet"
For Airtel User : AT+CGDCONT=1,"IP","airtelgprs.com"
For Aircel User : AT+CGDCONT=1,"IP","aircelgprs.com"

For Any Number Commands Call To Customer Care.

10 ). Click Ok.

Your Problem is Solved.

How to configure TERACOM Wireless modem for BSNL

Internet in BSNL Teracom modem we don't need to follow the steps in the setup CD. We can directly login to the Teracom modem and configure the Internet by typing the user name and Password from BSNL. Here I am presenting the steps to configure BSNL Teracom modem in PPPoE configuration.
Configure Internet Connection in BSNL Teracom Modem
To configure Internet connection in Teracom modem follow the steps below.

1. Login to BSNL Teracom Wireless Modem

Type 192.168.1.1 on the address bar of your browser to login Teracom modem.


Default BSNL modem user name and password is :

User Name: admin
Password : admin

Click OK. Now you will be on BSNL modem configuration page.

2. Click on Configuration Tab

Now click on Internet Connection to configure Internet in BSNL Teracom modem.


3. Remove old connections configured in BSNL mode
If you see any connections already made in the modem ,select the connection and remove them.


4. Add new connection in BSNL modem

Now click on the add button on the bottom of the page to create a new connection.



Now add following parameters in Internet Connection Configuration.
PVC Name: PVC0

VCI : 35

Service Category : UBR with PCR

Keep all other information the default and click Next.

5. Configure Connection Type

Now select PPP Over Ethernet (PPPoE) and LLC/ SNAP.




Now click Next.

6. Configure WAN IP Settings in BSNL Modem

Select Obtain IP Automatically. Make sure NAT and Default Route is checked.


Click on Next.

7. Set User Name and Password in BSNL Modem


Now type the user name and password provided by BSNL and click Next.

Now you will come to the summary page.


Click on Apply.

8. Reboot BSNL Modem

Click on Admin tab and then click on reboot.


From drop down menu select Last and click on Reboot. Now wait 1 minute to let the modem reboot. After this close the window and check your Internet connection.

Wireless Setting


1). Click on Configuration tab and then click on Wireless Network.



2). Click MAC Address Filter


3). Click Drop Down Menu Select MAC Auth
Select Option Disabled
Then Click Apply

Your Modem Is working Properly

Missing operating system: Windows 7

Run chkdsk to repair disk errors

First of all, don’t panic! If you panic and do things without thinking about consequences, you might damage your system and lose data. The solution to this problem is usually very simple. Your hard drive might have disk errors, therefore you are not able to start your system. This often happens when you restart your PC during a boot-up secquence while it’s loading safe-mode for example.

1. Find your Windows 7 DVD.
2. Start your PC, insert your Windows 7 DVD and hit a key when you are asked to (to boot from DVD). It is possible that you have to change the boot order in your BIOS to boot from DVD.
3. Follow the instructions on the screen, but don’t install Windows 7, instead click on “Repair your computer“:


















he installer will now search for Windows installations on your PC and list them all. Select your Windows 7 installation and click on next.


































4. Open the command prompt.






















Attention: Do NOT click on “System Restore” or “System Image Recovery”. If you try to restore/recover your system that way, you might damage your Windows 7 installation irreversibly.

5.You will probably be in a folder X:\sources\ . Don’t worry, if your partitions are still there you can run a chkdsk on them.


Run a chkdsk for your main partition (e.g. C:), to do that enter:
chkdsk c: /f/r

/f /r will both fix errors and recover lost data.

/f will only fix errors on your disk

/r will only recover lost data
This will, in most cases, repair your disk errors and you will be able to start Windows 7 again.

Windows 7 Bootrec.exe – Repair MBR

While you’re at it, you also might want to repair and fix your MBR (Master Boot Record), add a new boot sector and scan your disk for Windows 7 installations.

/fixmbr

This will create a new Master Boot Record, but will not overwrite your exisiting partition table.

/fixboot

This will add a new boot sector. If you boot sector is damaged you might not be able to start your system.

/rebuildbcd

Scans your disk for Windows-7 compatible installations, needed to repair your Windows 7 installation.

Missing operating system: Windows 7

Run chkdsk to repair disk errors

First of all, don’t panic! If you panic and do things without thinking about consequences, you might damage your system and lose data. The solution to this problem is usually very simple. Your hard drive might have disk errors, therefore you are not able to start your system. This often happens when you restart your PC during a boot-up secquence while it’s loading safe-mode for example.

1. Find your Windows 7 DVD.
2. Start your PC, insert your Windows 7 DVD and hit a key when you are asked to (to boot from DVD). It is possible that you have to change the boot order in your BIOS to boot from DVD.
3. Follow the instructions on the screen, but don’t install Windows 7, instead click on “Repair your computer“:


















he installer will now search for Windows installations on your PC and list them all. Select your Windows 7 installation and click on next.


































4. Open the command prompt.






















Attention: Do NOT click on “System Restore” or “System Image Recovery”. If you try to restore/recover your system that way, you might damage your Windows 7 installation irreversibly.

5.You will probably be in a folder X:\sources\ . Don’t worry, if your partitions are still there you can run a chkdsk on them.


Run a chkdsk for your main partition (e.g. C:), to do that enter:
chkdsk c: /f/r

/f /r will both fix errors and recover lost data.

/f will only fix errors on your disk

/r will only recover lost data
This will, in most cases, repair your disk errors and you will be able to start Windows 7 again.

Windows 7 Bootrec.exe – Repair MBR

While you’re at it, you also might want to repair and fix your MBR (Master Boot Record), add a new boot sector and scan your disk for Windows 7 installations.

/fixmbr

This will create a new Master Boot Record, but will not overwrite your exisiting partition table.

/fixboot

This will add a new boot sector. If you boot sector is damaged you might not be able to start your system.

/rebuildbcd

Scans your disk for Windows-7 compatible installations, needed to repair your Windows 7 installation.

How to replace Explorer.exe in Windows 7?

Do you want to replace the Explorer.exe? Some Windows 7 themes that you can download on this site will come with a file “explorer.exe”. This is a very important system file, so please be careful, make a backup and follow the instructions closely when you learn how to replace the explorer.exe.





The easiest and shortest way to replace the explorer.exe and any other system files is to download a registry hack that will add the option Take Ownership to your right-click context menu.
Download this script:>>Download<<


and double-click on the .reg (registry) file to add an option “Take Ownership” to your contextual menu (the right-click menu).
You can then right-click on your system files and take ownership of them. After that, you can rename all files and replace the system file / explorer.exe easily.

There are three methods, one for the beginners and the other for advanced users, click on the links below to start:
  • Method 1 (Beginner via Registry)
  • Method 2 (Beginner via GUI)
  • Method 3 (Advanced via Command Prompt)


Method 1: Change registry path to explorer.exe

The easiest method to replace explorer.exe is to open the registry and then change the path to the explorer.exe.

If you still need the system icons: Volume, Network Connections, Battery and Action Center, then don’t use Method1 because changing the registry path to explorer2.exe will disable them.

0. Make sure to know the difference between a 64-bit explorer.exe and a 32-bit explorer.exe. You can’t use a 64-bit explorer.exe on a 32-bit system.

1. Rename your new explorer.exe to explorer2.exe and copy it into the Windows directory: C:\Windows\
2. Open the registry: Click on “Start” and enter regedit into the search field:


                                                                                                   
3. Right-click on regedit at the top and select “Run as administrator”
4. Uncollapse the following path: HKEY_LOCAL_MACHINE>Software>Microsoft>Windows NT>CurrentVersion>Winlogon
5. Change explorer.exe to explorer2.exe.
6. End the process explorer.exe via the task manager and start a new process by entering “explorer2.exe”.
If 6. is too complicated for you: Reboot or read below for more instructions how to end the process explorer.exe.

Method 2: Take Ownership + Edit Permissions via Interface

Assign Ownership of Explorer.exe

1. Right-click on explorer.exe and click on “Properties“. Go to the tab “Security“, click on “Advanced“:































2. Go to the tab “Owner” and click on “Edit“:

























3. Assign the ownership to your administrator account by selecting your “Administrator account” (usually  Administrators(username\Administrators)) and click on “Apply
























The current owner should now be your administrator account. Confirm that!

Change Permissions of Explorer.exe

4. Click on “OK” and you will be back at the security tab of explorer.exe. There click on “Edit”:






























5. Select your administrator account (usually Administrators(username\Administrators ) and check the option “Full Control“. Click on “Apply“:

























6. Now you can rename your explorer.exe to explorer.exe_old and copy your new explorer.exe into the Windows folder.
Restart your PC or restart explorer.exe (instructions below).

Method 3: Take Ownership via Command Prompt

Copy your new explorer.exe to C:\

Take Ownership of new Explorer.exe

Next, we take control of it!
You can either download this script: (it will add the option “take ownership to your context menu) or you can do it manually.
I usually do it manually:
Enter cmd.exe into the search field on the Start menu and right-click on cmd.exe, click on “Run as administrator”.
  • Enter cd C:\Windows\
  • Enter TAKEOWN /F explorer.exe

Terminate Explorer.exe

Open up the task manager (CTRL+ALT+DEL) and right-click on Explorer.exe and terminate it:



























New Task (Run…)

Don’t be shocked, your taskbar will disappear. You can always make it reappear again by launching a new task and entering “explorer.exe”.


























Now click on “New Task” and enter:
  • runas /u:Administrator cmd.exe (this will launch cmd.exe as administrator)
You will be prompted for your password, enter it

Take Ownership of old Explorer.exe

5. Take ownership of the real explorer.exe and grant permission to administrators to modify it :
  • cd C:\Windows\
  • TAKEOWN /F explorer.exe
  • ICACLS explorer.exe /grant administrators:F

Final Step: Rename and move Explorer.exe

Rename the explorer.exe and paste the new explorer.exe into the Windows folder:
  • Enter rename explorer.exe explorer.exe_old
  • Enter move C:\explorer.exe C:\windows\
Back in the taskmanager click on “New Task” and enter “explorer.exe”. VoilĂ , you just replaced your explorer.exe!

Explorer.exe: Class not registered

If you receive the error “Class not registered”, you might want to try this:










Start > Run > regsvr32 ExplorerFrame.dll

Make sure that ExplorerFrame.dll is a valid DLL

 

 











If you receive the error “The module ExplorerFrame.dll was loaded but the entry-point DllRegisterServer was not found. Make sure that ExplorerFrame.dll is a valid DLL or OCX file and then try again”, you are probably trying to launch a 32-bit explorer.exe on a 64-bit system.
Are you running a 64-bit system? Then make sure that your new explorer.exe is a 64-bit file or it won’t work!