Subscribe For Free Updates!

We'll not spam mate! We promise.

Showing posts with label PC Tricks. Show all posts
Showing posts with label PC Tricks. Show all posts

Monday, May 5, 2014

How To Change Processor Detail In Windows.

Hello friends, Today i am back with a cool trick to change your PC processor detail in PC settings. This post will guide you to change the processor derails in your PC. There are many reasons to do this, one of them is to foll your friends and relatives. What if you can show them that you have a Intel core i99 processor. 
Now it is possible with this simple trick. Follow the simple steps given below.
Hope you will enjoy this cool tick and make crazy your friends. If you want more tips and tricks Follow us on social networking website and subscribe to us.

 

 Now let's see how to do this.


Step 1:

Click on start then click on run or simply press "windows key+ R" To start run and then type "Regedit".

Step 2:

 After this in the registry editor, navigate to
"HKEY_LOCAL_MACHINE\HARDWARE\DESCRIPTION\System\CentralProcessor\o".
In this directory you will find a string with name "ProcessorNameString", in this name string you will fond the name of your processor.
 

 

 

Step 3:

Change this value to the desired name you want to give the processor description.
 
 
Voila !! You have Successfully changed your PC processor description.
For more tricks stay connect with us.
 
 
 


Thursday, February 27, 2014

Microsoft Office 2013 updated (download)

microsoft office 2013 free download
Office 2013 is Microsoft's desktop and cloud productivity suite. It's available as a stand alone desktop package or through Microsoft's Office 365 subscription model. It includes-
  • Word 2013
  • Excel 2013
  • PowerPoint 2013
  • Outlook 2013
  • Access 2013
  • OneNote 2013
  • Project 2013
  • Publisher 2013
  • Visio 2013



The first thing you'll notice when starting Microsoft Office 2013 is it's clean. Through a subscription of Office 365 and the integration with SkyDrive you can access and edit your files from any computer via a browser.
Among the new features are a "Read Mode" in Word 2013 which removes toolbars and lets you swipe and tab through a document like in an "E-Reader". Videos are better supported. They can be searched, added and viewed directly within Word.
its upgraded and fluidic 
here,the crack and updated version of office 2013

Monday, February 10, 2014

Windows 8.1 Any Edition Any Build Activator

                                                        

Windows 8.1 Any Edition Any Build Activator Latest    


Windows 8.1 Activators can be found everywhere, almost in every tech blog too ! Most of these cracks fail to activate your Windows 8.1, If you have the latest build of Windows 8.1. But this special KMSpico latest Activator is far different from all these activators.Its working and free.....32/64 Bit



http://downloadlink.onhax.net/ download the crack here

Wednesday, October 23, 2013

Microsoft Office 2013 Activator

Microsoft Office 2013 Activator 


Microsoft Office is a well known office suite for windows user .It lets the features and capabilities of the programs in it probably needs no introduction. The software can be run on computers running Windows 7 and Windows 8.After the successor of Office 2010 will use the now familiar ribbon,which is of course to navigate through the various functions. You will get more space, however, as the menu will default to hid. The interface has been significantly slimmed down and simplified, but this approach has advantages and disadvantages at the same time.
Office 2013 is more cloud-based than previous versions. Microsoft Office 2013 includes updated support for ISO/IEC 29500.
New features also included in M.S Office new Read mode in Word, a Presentation mode in PowerPoint and improved touch and inking in all of the Office programs.
Microsoft Word can also let you to insert video and audio from online sources as well as the capability to broadcast documents on the Web. Word and
PowerPoint also have bookmark-like features which sync the position of the document between different computers.


                                          



STEPS TO CRACK M.S OFFICE 13:-

1) Install Office 2013
2) Do not RuN
3) Download activator from bleow
4) Open the activator
5) Click "Activate'' button
6) Your Office 2013 is activated!

                                                 CLICK TO DOWNLOAD













Saturday, October 5, 2013

Reset Administrator Password

Sometimes we get a restriction message to enter administration password while installing new software or in any other activities

I am posting this trick as when there is no administrator password then there is no restriction

                                                 

 

TRICK 1

Boot up with DOS and delete the sam.exe and sam.log files from Windows\system32\config in your hard drive. Now when you boot up in NT the password on your built-in administrator account which will be blank (i.e No password). This solution works only if your hard drive is FAT kind.

 

TRICK 2 

1. Put your hard disk of your computer in any other pc .2. Boot that computer and use your hard disk as a secondary hard disk (Don't boot as primary hard disk ).3. Then open that drive in which the victim’s window(or your window) is installed.4. Go to location windows->system32->config5. And delete SAM.exe and SAM.log
6. Now remove hard disk and put in your computer.
7. And boot your computer :-) 
 

 

How To Recover (Ctrl+Alt+Del) Permanently deleted files

                   

Sometimes many of us delete the old or waste files permanently from drive, and realize that some of important data also deleted by this action so for those users i have a trick which shows to recover taht files or data 

So to do that we need a software called "Kissass Undelete" ,this tool can bring those files from the hard disk or your flash drive.

Conditions : Only if the data on that drive is not re-occupied(or written). that means the space which was available after the deletion is not been occupied after the deletion.

Now follow the following steps

first download this tool FROM HERE

1)
To start searching for the files,
Select the drive from the Left panel of the Windows and Click the scan button.
the Scan might take upto 10 secs.
                             

2)
When the files search has been completed, it will show you the results with the name, type, size and the last modified date of the searched file.

3) Now you can select the file to be recover. This is an Open source application and available for All Windows OS(Windows XP/Vista/ 7).


 Your file will recover

Friday, October 4, 2013

How To Create Your Own Folder Locker

 

Here i am going to give a simple tutorial on how to make a hidden folder in window, it starts by a little simplest program, when anyone open thisprogram, you have to type the correct password to acess the folder ,  

 OK, first open notepad and write the following code in it :

                               

cls
@ECHO OFF
title Folder Locker
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
:CONFIRM
echo Enter password to lock folder or for cancel press N
set/p "cho=>"
if %cho%==XXXX goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren Locker "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock folder
set/p "pass=>"
if NOT %pass%==XXXX goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End
:End


replace the XXXX by the password you want
save it finally anything.bat

Note (save the file in .bat extension only)

Thursday, October 3, 2013

How to capture activity on computer

Here is a software named Fraps whick is a benchmarking, screen capture, and real-time video capture utility for DirectX and OpenGL applications. It is commonly used to determine a computer's performance with a game, as well as record gaming footage or any other activity you want to recort in fresh avi format 


Steps to use FRAPS:-

              First of all Download and install Fraps using the link provided 


                        DOWNLOAD FROM HERE


                                                                            
                 

             Then Open it.

             Minimize it.



                 



   After that  Open your desired program.

   Now If you want to take a video then press F9 to capture video and again press F9 to    stop recording
    

   That's all your vedio will be saved in C:\fraps\movie folder

   you can do more stuffs with this software tool





Tuesday, October 1, 2013

HOW TO USE PENDRIVE AS RAM


Today I am posting this trick to use USB flash drive or Pendrive as ram  in Windows 7, Windows Vista and Windows XP. 

Windows 7 and Vista comes with ready to boost feature as they are optimized for high performance which is generally a disk cache component of Microsoft Windows.


By this simple trick you can use Pen Drive, SD card, external Hard Drive or any kind of portable flash mass storage device as RAM in windows.


FOR WINDOWS 7 AND VISTA.
     
    • Plug Your Pen Drive in Your PC/Laptops USB(Universal Serial Bus) Port.
    • Go to computer and right click on Pen Drive and click on format.
    • Format Your Pen Drive.
    • Right click on Pen Drive and go in its Properties.
      (you can also go in its properties by selecting Pen Drive and by holding alt key press enter).
                                         
  • Go in Ready Boost tab after going to Pen Drives properties.
  • Now click on use this device and then allocate space to use. Below pic is shown on how to do this.
  • Click on apply and then click on ok.
       
             

FOR WINDOWS XP

  • Plug Your Pen Drive in Your PC/Laptops USB(Universal Serial Bus) Port.
  • Format Your Pen Drive.
  • Right click on My Computer and go in its properties.
    (You can also go in its properties by selecting My Computer and by holding alt key press enter).
  • Go to Advance tab and click on Setting under Performance.
  • Click on advance in performance settings and then click on change button under virtual memory and select your Pen Drive.
    (You can also use external hard drive, memory card or any kind of portable flash mass storage device instead of pen drive).
  • Then click on custom size and set initial size and maximum size. You can set this by subtracting 5 MB from your Pen Drive size.
  • Apply all changes.
  • Restart your PC/Laptop.

         FOR TUTORIAL GO THROUGH THIS TUTORIAL
NOTE:- Do not remove(unplug) your Pen Drive  when it is in use by your computer.it may damage your pendrive

THAT'S ALL You have done now your computer performance will be increased 





How to Repair Windows XP Without Bootable CD or Formatting




We are used to have some registry entry or file corruption error on our computer system due to viruses or other reasons. In this case for repairing windows XP we usually format our system or repair windows XP by some other ways like by using Bootable CD Method. But here in this post i am sharing a method by which you can repair your windows without formatting or using bootable CD. - See more at


You may think damaged Windows XP system files mean you need to format your hard drive and perform a clean installation. This is time-consuming, deletes all of your data and is often unnecessary. Here is how to repair a Windows XP installation and save your files.

                                   
                                   



NOW LET'S START

Just follow simple steps :


step 1 : Click on  Start and go to Run ( or press Win key + R) .

step 2 : In Run window type webflders.msi, Then hit Enter.

step 3 : In new window open, click on  Select Reinstall Mode.

step 4 : New window will open on your screen, just check marks on all the options and click OK.

step 5 : It will take some time for repairing your windows XP, after completing just Restart your system.

THAT'S ALL you've done!! By using this simple method your windows XP will be repaired without using bootable CD or formatting.