Change your window name with your own name





Hi friends, in this post I will tell you a funny trick.With that you can change your window name with your own name.It very nice trick.It working properly in windows xp and windows7(now sure for windows 8). So check it and give your review.



--------------------------------------------------------------------------- 
Click here for more interesting stuff






---------------------------------------------------------------------------
Steps :-

1.Open notepad.

2. dump the following lines into it and save it with the name OEMINFO.INI in the c:\windows\system32 directory:

[General]

Manufacturer=Your Name Here

Model=Your Model Here

[Support Information]

Line1=Your Name Here

Line2=Your Address Here


Line3=Your Email Address Here

3.That's it.
 
Now Save the file with OEMINFO.INI, then make a right click on my computer select properties, in the general tab a button will be highlighted (support information) make a click on it, you will be able to see the changes.

Now if you want to display some more information then simply increase the line in the file.

ex: Line4=Your Working Hours Here.



IF you like this then subscribe us.

Don't Forget to Like us on Facebook,Twitter or G+.
 
[Read More...]


Creating Fake Facebook Wall Status Messages



Hello Friends,If you want some Enjoy and prank on your friends then I am telling you a very easy way.It's very easy and Interesting way to get some Laugh.You can make Fake facebook status to prank you friends and other people.it's very - very Funny.
--------------------------------------------------------------------------- 
Click here for more interesting stuff








---------------------------------------------------------------------------

[Read More...]


How To Make Logos Free (Online)



Website owner always need on "How To Make Logos Free" . Most of them hire any professional but as me all can't afford this. So I am going to share some best sites for how to make free logos. To use this site is totally free and very easy which will bring you a Free Professional Logo For Website.
[Read More...]


How to make folder with name CON



Can you make a Folder with name CON?First try to make a folder with name of CON.If you don't get any success.Don't worry because i am telling you today how to make a folder with name CON.

Here Is Simple Process
1)At first make a New Folder and Rename it.
2)Then Hold Alt key and press 0160 with Num Lock key.
3)Now Leave Alt key and type any name, like con, prn, nul, etc and your folder will get created with no error.

If you get any type of problem then tell me.......
[Read More...]


HOW TO TRACING A WEBSITE



Tracing or Routing a website using command prompt.
note : "This tip is only meant for educational purpose".
it is mainly use this trick to find out the hosting provider where

a particular domain is hosted.
the steps are :
1. Start->Run->CMD ie; open Command prompt
2. Type the following command and press enter.
tracert www.websitename.comIn the above command, enter the desired website name.
and press enter, it will tell you where a particular domain is hosted, Location, Country and some details of that domain.
[Read More...]


How to make a fake virus



Here Is Process

At first click Start and open Notepad from the menu or from the all programs.
In the notepad type Start virus.bat then press enter
In the second line type Virus.bat
Now click save as in the name give the name Virus.bat
The name should be exactly virus.bat . That's it your fake virus is ready for action, have fun, please don't misuse it.
[Read More...]


Watch Star wars Movie in your PC



Do you know you can watch Star wars Text movie from your computer. To watch it click the start button then click Run . Type telnet in run. You will find DOS black screen.
in the black screen of Dos , type o and click enter and again type towel.blinkenlights.nl and click enter . That's it, the text movie will begin, wait for few seconds and enjoy it . :)
[Read More...]


How to Shake your Internet Browser



Now you can shake your browser very easily. to shake your browser is very funny thing.To shake your browser follow these steps.

1)just copy the below code and paste it to your web browser address bar and press enter..

javascript:function Shw(n) {if (self.moveBy) {for (i = 35; i > 0; i--) {for (j = n; j > 0; j--) {self.moveBy(1,i);self.moveBy(i,0);self.moveBy(0,-i);self.moveBy(-i,0); } } }} Shw(6)
you will see that your browser is shaking. Shake it shake it baby ;) 
(Note: In some browser it may not work )
[Read More...]


Trick To Rotate Images Of Any Website




Trick To Rotate Images Of Any WebsiteYou can rotate images of any website to create wonderful effect’s.To Rotate images we will use javascript codes.Using this trick you can rotate images in Circular, Horizontal, Combination of Circular and horizontal trajectory.The images can also be made to revolve with your mouse movement.
You should also read Cool And Awesome Javascript tricks. It will work in all modern browsers like Google Chrome,Internet Explorer,Firefox etc and on all websites as well.
image javascript trick dance address bar small Trick To Rotate Images Of Any Website
Trick To Rotate Images in Circular Trajectory in Any Website
Open any website, copy and paste the following  javascript code in your browser address bar and press Enter.The images will start rotating in circular trajectory.
javascript:R=0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=300; y4=200; x5=300; y5=200; DI=document.getElementsByTagName("img"); DIL=DI.length; function A(){for(i=0; i-DIL; i++){DIS=DI[ i ].style; DIS.position='absolute'; DIS.left=(Math.sin(R*x1+i*x2+x3)*x4+x5)+"px"; DIS.top=(Math.cos(R*y1+i*y2+y3)*y4+y5)+"px"}R++}setInterval('A()',5); void(0);
Trick To Rotate Images in Horizontal Trajectory in Any Website
To rotate images in horizontal trajectory Copy and paste the following javascript code in your browser address bar and press Enter.
javascript:R=0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=300; y4=200; x5=300; y5=200; DI=document.getElementsByTagName("img"); DIL=DI.length; function A(){for(i=0; i-DIL; i++){DIS=DI[ i ].style; DIS.position='absolute'; DIS.left=(Math.sin(R*x1+i*x2+x3)*x4+x5)+ "px"; DIS.top=(Math.cos(R*y1+i*y2+y3)*y4+y5)+" px"}R++}setInterval( 'A()',5); void(0);
Trick To Rotate Images in Circular as well as Horizontal Trajectory in Any Website
Using this code you will add both the horizontal as well as Circular rotaion effect to images.
javascript:R=0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=300; y4=200; x5=300; y5=200; var DI= document.images; DIL=DI.length; function A(){for(i=0; i < DIL; i++){DIS=DI[ i ].style; DIS.position='absolute'; DIS.left=Math.sin(R*x1+i*x2+x3)*x4+x5+"px"; DIS.top=Math.cos(R*y1+i*y2+y3)*y4+y5+"px"}R++}tag=setInterval('A()',5 );document.onmousedown=function(){clearInterval(tag);for(i=0; i < DIL; i++){DI.style.position="static";}}; void(0)
Trick To Rotate Images in Circular Trajectory on Mouse Movement in Any Website
This will add the rotaion effect to images only on mouse movements.Whenever you will move your mouse your images will start rotating.
javascript:R=0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=100; y4=100; var DI= document.images; DIL=DI.length; function A(_X,_Y){for(i=0; i < DIL; i++){DIS=DI[ i ].style; DIS.position='absolute'; DIS.left=Math.sin(R*x1+i*x2+x3)*x4+_X+"px"; DIS.top=Math.cos(R*y1+i*y2+y3)*y4+_Y+"px"}R++}document.onmousemove=function(event){_X = event.clientX; _Y = event.clientY; A(_X,_Y);};document.onmousedown=function(){for(i=0; i < DIL; i++){DI.style.position="static";}};void(0)
Use these codes on webpages will large number of images to get better effects.
[Read More...]


A funny trick to surprise your friends



This is a funny trick to surprise your friends.By using this trick you can make your computer to speak whatever you type.This trick is working on all microsoft operating system and does not require any programming skills.You have to follow just simple steps and your own Text to Voice software will be ready.If you show this software to any of your friends he will be certainly impressed with you .
Ok,the trick is fairly simple and requires only 3 simple steps from your side.
Let’s Begin the tutorial with screenshots to Make Your Computer Speak Whatever You Type



1.Open Notepad and copy and paste the following code into it

Dim message, sapi
message=InputBox("What do you want me to say?","Speak to Me")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak message

2.Now save the notepad file with the name
speak.vbs at your desktop.
3.Now double click on speak.vbs type in the box whatever you want your computer to speak for you.
Its a really funny trick to impress everybody with your computer skills.

So Enjoy it !


[Read More...]


Related Posts Plugin for WordPress, Blogger...
 

Followers

Grab This Gadget »

Return to top of page Copyright © | TwistIdea -All Rights Reserved