Saturday, July 28, 2012
Uninstalling Ubuntu, Linux, Unix From Windows Dual Boot System
Thursday, July 12, 2012
Cheating IDM and Other Free trial Softwares Easily with Magic
1. Install Advance Uninstaller Pro which is free utility with a lot of magics from Here
this step is must if you want to become computer master with a magic software like magic stick in
magician hand.
2. If you have trial softwares installed then after trial period they ask to register. Updating also
don't resolve the matter. So when there trial period is near to end you should uninstall them with
Advance Uninstaller Pro which will remove their all residues.
3. After getting rid of them again install those with setup without registration and use them again for
next trial period.
4. When trial period is near to end again do Uninstall with Advance Uninstaller Pro then install again.
5. You can also update them while installing after fresh uninstallation.
Download Advance Uninstaller Pro
For much information about Advance Uninstaller Pro go to below given link
http://googlio.blogspot.in/2012/07/advance-uninstaller-pro-free-which-make.html
Sunday, July 8, 2012
Creating Amazing Short-Cuts For Windows7,8 or Vista
If you dislike the new Windows Vista shutdown menu or you want to create useful shortcuts in window8 then you are probably in the majority. An alternative option is to create icons that will let you shut down, lock, or restart your computer without having to mess with that stupid popup menu.
Of course, Windows 7 makes the shutdown menu a lot better, but if you want a shortcut elsewhere or to assign a hotkey, this should help you out.
This tip is nothing new, and probably very old hat to most of the advanced geeks reading this feed. I’ve been asked this question so many times in the last month that I decided to finally just write it up for everybody.
First right-click on the desktop, choose New and then Shortcut.
In the shortcut location box, you’ll need to enter the correct command, which I’ve listed for you below.
Shutdown Computer
Shutdown.exe -s -t 00
Restart Computer
Shutdown.exe -r -t 00
Lock Workstation
Rundll32.exe User32.dll,LockWorkStation
Hibernate Computer
rundll32.exe PowrProf.dll,SetSuspendState
Sleep Computer
rundll32.exe powrprof.dll,SetSuspendState 0,1,0
When you’ve clicked next on the above dialog, you’ll be asked to name the shortcut. Probably best to name it according to the right function.
After you click Finish, you should now have a new icon that you can double-click to immediately shutdown, restart, or lock your computer.
Change Shortcut Icon
The default icon is really ugly, and if you want to have separate shortcuts for each function you might want to change the icon. Right-click on the icon and choose properties.
Click the Change Icon button, and then you can pick from the available icons in the system, or you can use the Browse button to pick an icon you downloaded off the web.
Note that you can drag them to your quick launch bar if you’d prefer to have them there.
And so ends the tale of the shutdown icons…
If you Like please share and appreciate it..... i am waiting for feed-backs.
Wednesday, July 4, 2012
Advance Uninstaller Pro Free which make PC Healthy
Advanced Uninstaller PRO is a software that can help you optimize your computer by uninstalling programs and repairing the Windows registry keys.
In the "General Tools" tab, you can uninstall programs (and use a search function), start an installation monitor, configure programs which automatically run at system startup, start a "Services Manager", as well as run a quick cleaner on your web browsers, Recycle Bin, Run history, recent documents and temp files.
In addition, you can look for duplicate files, apply live file compression, use a shredder to delete files beyond recovery and access Internet browser tools (browsing history, cookie manager, addons, temp Internet files).
Furthermore, you can clean, optimize, backup and restore the Windows registry entries, view reports on installed programs, installation logs, startup apps, Windows services and fonts, as well as configure an automatic scheduler and create shortcuts to specific tools.
The program takes up a moderate amount of system resources, includes a well-written help file and didn't pop up any kind of errors during our tests. Since it is very easy to work with, we recommend Advanced Uninstaller PRO to all users.
Here are some key features of "Advanced Uninstaller PRO":
· Easily uninstall applications and programs. The program starts a lot faster than the Control Panel Add/Remove applet, and has a handy quick search function.
· Uninstall, disable and enable Control Panel icons.
· Disable or delete the programs that run at startup.
· Remove items left behind in the Add/Remove section after program uninstall.
· Manage the fonts installed on your computer.
· Hide, show or sort your Start menu shortcuts. Automatically find and delete the non-working shortcuts on your desktop and Start menu.
· Uninstall Internet Explorer toolbars, plug-ins and BHOs (Browser Helper Objects).
· Find and delete garbage and temporary files.
· Delete the recently open files list of programs such as Microsoft Office, Windows Media Player, ICQ, MSN, WinZip, RealPlayer, Kazaa, Morpheus, WinAmp, etc.
· Delete the Internet history trail (information about the pages you visited, addresses you typed, cookies, etc).Here are some key features of "Advanced Uninstaller PRO":
· Easily uninstall applications and programs. The program starts a lot faster than the Control Panel Add/Remove applet, and has a handy quick search function.
· Uninstall, disable and enable Control Panel icons.
· Disable or delete the programs that run at startup.
· Remove items left behind in the Add/Remove section after program uninstall.
· Manage the fonts installed on your computer.
· Hide, show or sort your Start menu shortcuts. Automatically find and delete the non-working shortcuts on your desktop and Start menu.
· Uninstall Internet Explorer toolbars, plug-ins and BHOs (Browser Helper Objects).
· Find and delete garbage and temporary files.
· Delete the recently open files list of programs such as Microsoft Office, Windows Media Player, ICQ, MSN, WinZip, RealPlayer, Kazaa, Morpheus, WinAmp, etc.
· Delete the Internet history trail (information about the pages you visited, addresses you typed, cookies, etc).
Tuesday, July 3, 2012
Creating and Managing Partition Of Hard Disk
· Resize/Move partition
· Extend NTFS system partition without reboot
· Recover files from deleted or lost partition
· Recover lost files due to deletion, format, system crash, virus attack, etc.
· Support hardware RAID Copy & resize dynamic volume
· Copy, create, format, delete, and explore partition
· Convert FAT to NTFS
· Set Active/Label partition
· Hide/Unhide partition
· Up to 2TB disk supported
· Support up to 32 disks
· Pentium or similar CPU . Minimum 512mb RAM
DOWNLOAD EASEUS Partition Master Home Edition Latest
Saturday, June 30, 2012
Making a Hidden folder Easily
1. first right click on the place where u want to make a hide folder
2. Then go to new>folder
3. Rename the folder, but do not give a new name instead you press alt+0160
[keep pressing alt button and press 0,1,6,0 successively]
then press enter
u will see a folder without name
4. Then right click on this and go to properties>coustmize>change icon>and
chose a blank icon and press ok
there will be a folder which is not seen.
Basics of C++
Structure of a program
Probably the best way to start learning a programming language is by writing
a program. Therefore, here is our
first program:
// my first program in C++
#include <iostream>
using namespace std;
int main ()
{
cout << "Hello World!";
return 0;
}
Hello World!
The first panel shows the source code for our first program. The second one
shows the result of the program once
compiled and executed. The way to edit and compile a program depends on the
compiler you are using. Depending
on whether it has a Development Interface or not and on its version. Consult the
compilers section and the manual
or help included with your compiler if you have doubts on how to compile a C++
console program.
The previous program is the typical program that programmer apprentices write
for the first time, and its result is
the printing on screen of the "Hello World!" sentence. It is one of the simplest
programs that can be written in
C++, but it already contains the fundamental components that every C++ program
has. We are going to look line
by line at the code we have just written:
// my first program in C++
This is a comment line. All lines beginning with two slash signs (//) are
considered comments and do not
have any effect on the behavior of the program. The programmer can use them to
include short
explanations or observations within the source code itself. In this case, the
line is a brief description of
what our program is.
#include <iostream>
Lines beginning with a hash sign (#) are directives for the preprocessor. They
are not regular code lines
with expressions but indications for the compiler's preprocessor. In this case
the directive #include
<iostream> tells the preprocessor to include the iostream standard file. This
specific file (iostream)
includes the declarations of the basic standard input-output library in C++, and
it is included because its
functionality is going to be used later in the program.
using namespace std;
All the elements of the standard C++ library are declared within what is called
a namespace, the
namespace with the name std. So in order to access its functionality we declare
with this expression that
we will be using these entities. This line is very frequent in C++ programs that
use the standard library,
and in fact it will be included in most of the source codes included in these
tutorials.
int main ()
This line corresponds to the beginning of the definition of the main function.
The main function is the point
by where all C++ programs start their execution, independently of its location
within the source code. It
does not matter whether there are other functions with other names defined
before or after it - the
instructions contained within this function's definition will always be the
first ones to be executed in any
C++ program. For that same reason, it is essential that all C++ programs have a
main function.
The word main is followed in the code by a pair of parentheses (()). That is
because it is a function
declaration: In C++, what differentiates a function declaration from other types
of expressions are these
parentheses that follow its name. Optionally, these parentheses may enclose a
list of parameters within
them.
Right after these parentheses we can find the body of the main function enclosed
in braces ({}). What is
contained within these braces is what the function does when it is executed.
Thursday, June 28, 2012
Hack Adminstrator Password In Windows
In this topic I will tell you guyz how to reset Windows administrator password (for Win 2000, XP, Vista and Win 7) at times when you forget it or when you want to gain access to a computer for which you do not know the password.
All of us have experienced a situation where in we need to gain access to a computer which is password protected or at times we may forget the administrator password without which it becomes impossible to login to the computer. So here is an excellent hack using which you can reset the password or make the password empty (remove the password) so that you can gain administrator access to the computer.
- First Way
- The Offline NT Password & Registry Editor password cracker is one of the fastest free Windows password recovery tools I've used. I even prefer this tool over many premium password recovery programs.Offline NT Password & Registry Editor is a program that deletes passwords so the first thing you'll need to do is visit the Offline NT Password & Registry Editor website.
When the website loads as shown above, scroll down to the Download section and click the link next to Bootable CD image - in the example above, that would be the cd110511.zip file.
Important: There are not separate versions of Offline NT Password & Registry Editor for different Windows operating systems. This single program is capable of removing the password from any user account in Windows 2000 or newer Microsoft operating systems. This includes Windows 7, Windows Vista, and Windows XP.
If prompted, choose to Download or Save the file - browsers often phrase this differently. Save the file to your Desktop or another place you can get to easily. Offline NT Password & Registry Editor is a small download so it won't take long.
Note: The screenshot above shows the completed download process for the Offline NT Password & Registry Editor ZIP file when downloading using Internet Explorer in Windows 7. If you're downloading with a different browser or on a different operating system, this will likely look a little different for you.
- Once downloaded, extract the ISO file from the ZIP file. Feel free to do this using the integrated tool in Windows or a dedicated program like WinZip.
After extracting the Offline NT Password & Registry Editor software ISO file (cd110511.iso) from the downloaded ZIP file, you'll need to burn the ISO file to a disc.
Tip: Considering the size of the ISO file (under 5 MB), a CD is the most economical disc choice, though a DVD or BD will work just as well if that's all you have.
Burning an ISO file to a disc is a little different than burning ordinary files or music. If you've never burned an ISO file to a disc before, I recommend following the instructions I linked to at the end of the first paragraph above. It's not a difficult process but there are very important things that you need to be aware of.
Important: If the ISO file is not burned properly, Offline NT Password & Registry Editor may not work at all.
After burning the Offline NT Password & Registry Editor ISO image to disc, go to the computer that you're trying to gain access to and continue to the next step.
- The Offline NT Password & Registry Editor disc you just burned is "bootable" meaning it contains a small operating system and software and can be ran independent of the operating system on your hard drive. This is exactly what we need in this situation because you can't access the operating system on your hard drive right now because you don't know the password.Insert the Offline NT Password & Registry Editor disc into your CD/DVD/BD drive and then restart your computer.
The initial screen you see after restarting should be the same one you always see immediately after starting your computer. There may be computer information as pictured above or there may be a computer manufacturer logo.
Offline NT Password & Registry Editor begins to load after this point in the boot process, as shown in the next step.
If Windows started, you see an error message, or you see a blank screen for longer than a few minutes, then something went wrong. If you see anything other than the message shown above then Offline NT Password & Registry Editor did not start correctly and will not remove/reset your password.
The next thing you'll see is several lines of text that quickly run down the screen. You don't need to do anything here. Just wait for the process to end up.
- The next step in the Offline NT Password & Registry Editor process is to select the partition that contains the Windows installation that you want to delete a password from.Some computers, especially those with Windows XP or earlier, have a single operating system installed on a single partition on a single hard drive, making this a very easy choice.
If that's the case for you, just press ENTER to accept the default partition. Otherwise, type the number corresponding to the correct partition from the Candidate Windows partitions found list and then press ENTER.
Tip: If more than one partition is listed and you're not sure which one to pick, chances are the larger partition is the one with Windows installed.
Windows 7 Note: Every Windows 7 PC will have more than one partition listed. In many cases, the right partition to choose will be number 2. The 100 MB partition labeled BOOT is never the right choice.
Offline NT Password & Registry Editor now needs to know the exact location of the Windows Registry. Except in the rarest of occasions, the default location will be the correct one.
Press ENTER to accept the default Windows Registry path of Windows/System32/config.
Offline NT Password & Registry Editor is now asking which part of the registry it should load. We're interested in resetting the Windows password so we'll do that.
Press ENTER to accept the default choice of 1, which is Password reset [sam system security].
Note: The Offline NT Password & Registry Editor tool can perform various functions aside from resetting Windows passwords but since that's the focus of this particular tutorial, that's all we'll discuss.
Tip: Are you seeing lines of computer code with a --More-- at the bottom of the screen? Some of you will and that's okay, just hit any key and the program will continue on.
Now that the registry is loaded and available to the program, Offline NT Password & Registry Editor needs to know exactly what you want to do.
- Press ENTER to accept the default choice of Edit user data and passwords.This will load the necessary options for the actual password reset.
Offline NT Password & Registry Editor now needs to know which Windows user's password you'd like to delete (erase, clear, blank, remove, call it what you like).
A default user is listed between the brackets at the prompt. In the above example, you can see that it's the Administrator user.
If the default user is the user you'd like to remove the password from, simply press ENTER. Otherwise, enter the username (I entered Tim) and then press ENTER.
At the bottom of the screen you'll see the User Edit Menu with several options to choose from.
Type 1 for Clear (blank) user password and then press ENTER.
Note: Offline NT Password & Registry Editor shows some interesting information about the username you entered in the last step - the full name, what groups the user belongs to, how many failed login attempts have taken place, how many total logins have been completed, and more.
Important: If you see a check in the Passwd not req. box, this means that a password is not a requirement for this particular user. It does not mean that a password is not required to access the account in Windows. In other words, it's saying that it is possible to erase this user's password.
Assuming there weren't any problems, you should see a Password cleared! message after entering 1 in the previous step.
- Type ! to quit editing user and then press ENTER.
Important: You must confirm these changes in a later step before they are actually complete. If you quit Offline NT Password & Registry Editor now then the password reset will not take place!
- Enter q and then press ENTER to quit the Offline NT Password & Registry Editor registry editing tool
At the Step FOUR: Writing back changes menu, Offline NT Password & Registry Editor asks if you want to write file(s) back.
- Type y and then press ENTER.
You should see an EDIT COMPLETE message appear on screen. If you do, it means that Offline NT Password & Registry Editor has written the password changes to your computer!
Press ENTER to confirm the default option of not rerunning the password reset
That's it... you've just completed the Offline NT Password & Registry Editor password removal process.
In the next step, you'll finally get to logon to Windows without entering a password!
Note: If you receive a "job control turned off" or a "can't access tty" error, don't worry. As long as the EDIT COMPLETE confirmation message was posted to the screen after you confirmed the password reset changes then your Windows password was successfully reset. You should still be able to see the confirmation on the screen at this point.
Remove the Offline NT Password & Registry Editor disc from your optical drive and then manually restart your computer.
- Second Way
Here is another simple way through which you can reset the password of any non-administrator accounts. The only requirement for this is that you need to have administrator privileges. Here is a step-by-step instruction to accomplish this task.
1. Open the command prompt (Start->Run->type cmd->Enter)
[ In window7 click on start button then type Run in search window then press enter]
2. Now type net user and hit Enter
3. Now the system will show you a list of user accounts on the computer. Say for example you need to reset the password of the account by name bayo, then do as follows
4. Type net user bayo * and hit Enter. Now the system will ask you to enter the new password for the account. That?s it. Now you?ve successfully reset the password for John without knowing his old password.
Read Web Pages Easier On Cell Phone (Mobile)
Everyone who ever surfed the web using a browser on their cell phone knows that certain sites are impossible to read.
Mostly it's because of page layout but sometimes a slow internet connection can be the culprit.
Next time this happens to you you should try the free Google transcoder service.
Usage couldn't be easier: just go to http://www.google.com/gwt/n and enter the address of the website you want to view.
Google transcoder works by splitting a large webpage into a number of smaller elements. Sometimes the results aren't very pretty but it can be a lifesaver when you need to access some vital information on your phone.
Increase Bluetooth and Copy Speed with Low RAM
- Bluetooth
it makes the transfer speed from 120kb/s up to 700-800 kb/ sYou just have to put your phone in ?File transfer? mode
- For PC or Laptops
In case Windows' "copy" and "paste" functions don't really please you anymore, start looking for alternative measures.
TeraCopy is a free software designed to speed up the task when it comes to moving and copying files.
The program is very easy to use. It's integrated in the context menu, so you can select "TeraCopy" instead of Windows' "copy" function, or you can open the user interface, and input the source file or folder, as well as the output folder.
If you click the "More" button, you can also see the size and status of each file found in the respective folder, and whether it was successfully copied or not.
In a Normal PC with a 512MB RAM with XP on it it reached the speeds of 22MBps which is the fastest I've seen on that PC
On PCs with Windows XP this lil software accelerates the file transfer speed quite drastically.
With Vista which already has a fast file transfer rate Teracopy still achieves a 1 to 2 MBps lead over Vista.
DOWNLOAD TERACOPY LATEST VERSION
Tuesday, June 26, 2012
Crack and Register IDM easily
So it is always in good demand in the whole world.
But it is not free which is big defect.
I am providing you 2 ways to get it free of cost-
- Download Cracked file from HERE.
- Otherwise install Advance Uninstaller Pro which can be downloaded from here(official site). Through this program you can uninstall IDM with its registry files so next time after this uninstallation you are not prompted to register first but you can use trial version again and again without registration. After 30 days uninstall IDM using Advance Uninstaller Pro and then reinstall it again to enjoy.Also Advance Uninstaller Pro has many other large features required for your windows. So with one arrow you can hit many targets.
Tuesday, May 1, 2012
COOL JOKES (FACEBOOK STATUS)
- Catching a Tiger
1- Newton's Method- Allow The Tiger To Catch U & Catch The Tiger.
2- Einstein's Method- Chase The Tiger Until It Becomes Tired n Then Catch It.
3- Police Method- Catch A Cat & Beat It until It Accepts Its A Tiger!!! :P:D
- Maa Ka Sapna
Acha ladka miley.
. Ab aap hi batao..? ??
Akela Mein
('-')
<) )==.,
_//_
Kis kis Maa Ka Sapna pura karun.... :-p:-D
- Truth Of Students :
Most Common dialogues
During Exam ¤ Saale aur
kitna likhega? ¤ Abey zor
se bol na kuch
sunai nai de raha :P ¤
Ma’am I was asking for
the
eraser :( ¤ Tu bi Fail , Mai bi
Fail :D ¤ Bata na fattu koi
nai dekh
raha :/ ¤ Yaar ye chapter
kab karvaya
tha? ¤ Yar ek din or mil
jaata to bc
padh lete ¤ Ma'am Mai baat
ni kar rha
tha, Niche Scale gir gya
tha ¤ Aaj Ghar jaate hi agle
paper
ki tyari shuru kr dunga ¤
Paper kis chutiye ne set
kiya
hai? ¤ Yaar Aaj toh Totte
udd
gaye :( And The Famous
one ¤ Bhagwan bas is
baar kripa
kar de Maa Kasam..! Next
tym toh
jhande gaad dunga :P :D








