Showing posts with label windows. Show all posts
Showing posts with label windows. Show all posts

Top Five Funniest prank ever Of Windows Which You Should Try With your friend once

Here is five funniest prank ever that you cant do with your friend whenever they use your pc or laptops check it out

1. Hide Icons And get some fun

This computer prank is pretty old school. but
works every single time.

WHAT IS THE PRANK?
Desktop Icons will not respond to the double
click.

HOW IS THIS DONE?

Read it or miss it :-

Run Windows Programs Without Installing
Them

10 killer iPhone 6s tricks you need to know

How To Unlock The Lock Screen Of Computer
Via Android & iPhone

1. Close all the applications on the laptop.
2. Take a screenshot of desktop using
printscreen key (key above backspace key).
3. Open paint and paste it. Then save the
picture.

4. Finally make it your background wallpaper,
but before doing that right click on desktop
>> view >> uncheck show desktop icon.

This is it. Now watch the expression on your
friend’s face when he comes back.

.
.
.

2. THE DAMN SHUT DOWN

WARNING : Ok I must warn you first, this one is
wild, use it at your own risk.

What is the computer trick?

Your friend’s laptop will get restart automatically in every minute .

HOW IS THIS DONE?

This has two parts. First we have make a code
to shutdown computer and then we have to
execute it each time the computer boots.

Part I

Copy following code into notepad and save it as Prank.bat .

Shutdown –r –t 60

EXPLANATION OF CODE

Shutdown is command, “r “means restart you
can use “s” for shutdown, 60 is time in sec. Like if you want time to be 5 min then use 300
instead of 60.

.
.
Part II

Second step we have to move prank.bat folder
in startup folder. To find startup folder go to
start >> programs >> startup.

Now cut and paste prank.bat into startup folder.
.
.
.
.

3. Virus detected

WHAT IS THIS TRICK ?

When your friend clicks on Google chrome icon
on his desktop a black screen will pop up
warning him of virus detection and hard disk
have to be formatted to restore windows.

Don’t worry it’s just a piece of code and complete safe to use.

.
.
HOW IS IT DONE?

You have make a batch file with given command and then make him click that by disguising it with Google chrome icon.

1. Copy the following code to notepad and
save as a prank.bat

@echo off
echo Access Denied! Your Computer is infected
echo -
echo Do not attempt to quit.
PAUSE
echo System check
echo -
echo CHECKING FOR POWER
PAUSE
echo -
echo Power - FAILED
PAUSE
echo -
echo CHECKING FOR RAM
PAUSE
echo -
echo RAM - FAILED
PAUSE
echo -
echo CHECKING FOR ANTIVIRUS UPDATES
PAUSE
echo -
echo UPDATE FAILURE
echo -
PAUSE
echo Breach of IP adress
echo -
echo Firewall - FAILED
echo -
PAUSE
echo Virus attaining: 192.168.XX.X
echo -
echo Hard drive must be erased and rebooted to
resume windows.
echo -
PAUSE
echo -
echo Starting to reboot hardrive.
echo -
echo Restart after 10 minutes approximately.
PAUSE
:START
start troubleshooting.bat
GOTO START

.
.
2. Now go to Google image and type Google
chrome icon and save the image that looks like
chrome icon to your desktop.

3. To change the format from .jpg to .ico, we canvuse online .ico image converter like
icoconverter.

4. Save the .ico file to desktop, Now change the
icon image of prank.bat to this Google icon that
we have downloaded, to do this right click the
folder >> properties >> customize .

But you won’t see the customize tab in the
properties so you will have to first make it’s
shortcut and then change the icon of the
shortcut to google chrome.

.
.

Also Read :-

How to enable multi- window mode in Android 6.0 Marshmallow

Factory Reset iphone Without Password
Ultimate Guide

4. HACKER'S ATTACK

Your computer has been hacked.
Copy this code to notepad

X=MsgBox("Error while opening.Do you want to
fix this problem?",4+64,"My Computer")

X=MsgBox("This problem can not be
fixed!",0+48,"My Computer")

X=MsgBox("Virus Detected on Your Computer!Do you want to scan your PC?",3+16,"Virus Alert")

X=MsgBox("Access Denied!Virus is
Activated",2+16,"Virus Alert")

X=MsgBox("Virus is copying Your
Passwords.........",2+48,"Virus is Activated")

X=MsgBox("Deleting System
Files..........",2+16,"Virus is installed on Your System")

X=MsgBox("A harmful Virus is deleting your
files.Do you want to stop this?",4+32,"Window
Defender")

X=MsgBox("Access Denied! Your Computer is
infected",0+16,"Virus Alert")

X=MsgBox("You can not access your computer
anymore",2+16,"Your Computer is Hacked")

.
.
.

Save it as chrome.vbs and save it on the
desktop, and disguise it with some icon.
.
.
.
.
5. BUSY POINTER

Set the Mouse Pointer to Look Always Busy (to Make Their PC Look Like It’s Hanging)

Nice and simple, but oh so fun! Just head into Control Panel –> Mouse –> Pointers and change the Normal pointer to the
busy one.

They’ll think their computer is hanging all the time, but it’s really not. For extra fun, you could make the mouse pointers gigantic.

So guys use those prqnk tips with your friend and have alot of fun

Comment here which one do you like most

Share:

Protect your folder With Password Without any software In Windows

Most of us have private data. Not all of us have a private computer to keep that data. So, we just end up with other people viewing that data.

Although password protecting software do work, it is almost useless to hide private data
With these software(because we are always questioned as to what it is that we are hiding with the help of these software).

Hidden folders do not work as anyone can use Folder Options to make a hidden folder visible. So, we need an alternative way to create hidden password protected folders which only
we can access.

And that is exactly what we will learn in this
post. With this trick, you can create a secure password protected folder in Windows which no one except you can access.

To use this trick, follow the instructions given below:-

1.  Open Notepad .
2.  Copy and paste the exact code given below:-

cls
@ECHO OFF
title techmastermanish
if EXIST "Control Panel.{21EC2020-3AEA-1069-
A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST MyFolder goto MDMyFolder
:CONFIRM
echo Are you sure to lock this 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 MyFolder "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 Your Secure Folder
set/p "pass=>"
if NOT %pass%== techmastermanish goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-
A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-
A2DD-08002B30309D}" MyFolder
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDMyFolder
md MyFolder
echo MyFolder created successfully
goto End
:End

3.  Click on the File Menu . Click on Save As .

4.  Select All Types in the Save As Type dropdown menu. Save the file as *.bat or Locker.bat.

After creating the file, double click on the Saved file.

A new folder will be created. Enter your data in the folder. Again, double click on the batch file. Type Y and press Enter.

The folder will be hidden from view. To re-view your folder, double click on the saved batch file.

Enter password as techmastermanish without quotes and press Enter key. This is also the default password. Your folder will be visible again.

To change the default password, edit the part of the code given in Black and enter your own password.

Note: This works on Windows 8.1, Windows 8, Windows 7, Windows XP and Vista. First try this on useless data to be sure and then only hide your personal data.

Guys Use This Trick And Comment Here If You Like This Way of Locking Files

Share:

Top 5 Computer Trick Every Computer Geek Must Know


HI guys After Posting Many Tricks For Cell phone Going To Post Top 5 Tricks For Windows That Every Computer Users Must Know

Hope You will like it If you do Kindly comment Your Precious Review Here

1) Creating An Invisible Folder :-

1 - Right click the targeted folder and select properties.
2 - Now navigate to customize tab and select change icon.
3 - Just select the icon located next to windows CD icon.
.4 - Now we need hide our folder name, so right click the folder and select rename.
5 - Now hit alt key and type 0160 or 255
.6 - Just leave the alt key and hit enter.
7 - Your invisible folder is ready.

Note - To find your invisible folder just hit ctrl+A and all your folders will get selected. Now you can easily locate the invisible folder.

.

.
.
2) Hide Your Drives In Windows :-

1 - Click start and search for cmd
2 - Right click cmd and click on run as administrator.
3 - This will launch command prompt with
administrative access.
4 - Now type diskpart and hit enter.
5 - Then type list volume to get the list of all your drives
6 - Now select the drive that you want to hide.
7 - So type select volume n (n is the volume number against the drive you want to hide). For Ex - select volume 1.
8 - Now type remove letter C (C is a drive letter) and hit enter.
For Ex - remove letter C (this will hide c drive)
9 - That’s it, now your drive is hidden.
How to Unhide the Hidden Drive ?

.

           .How to Unhide the Hidden Drive ?

1 - Again click start and search for cmd

2 - Right click cmd and select run as administrator.

3 - Now type diskpart and hit enter.

4 - Then type list volume and hit enter.

5 - Now select hidden drive by typing "select volume n"(n is the drive number against the drive you want to unhide).

For Ex – select volume 2.

6 - Now type “assign letter C” and hit enter. (C is a drive letter)

For Ex - assign letter C

7 - Done, your partition will is visible again.
.
.
.
.
.
.

3) Creating an Undeletable/0Unrenamable Folder :-

1 - Hit win + R to launch the run window.
2 - Type cmd and hit enter to launch command prompt.
3 - Now type D: and hit enter (Replace D with the8drive letter where you want to create the undeletable folder)
4 - Type md con\ and hit enter. (md - make directory)
5 - Now you will face an error while deleting the folder. Now How to Delete that Folder ?

1 - Again open command prompt and navigate to the directory by typing - D: (Replace D with the drive letter where you want to create the undeletable folder)
2 - Type rd con\ (rd - remove directory)

.
.
.

4) Shutdown PC using timer :-

1 - Right click on your desktop then choose new and select shortcut.
2 - Now in the textbox type shutdown -s -t 10 and click next.
Note: 10 is the amount of seconds before your
computer shuts down.
3 - Now hit finish and you're done.
4 - You can change the icon by right clicking then select properties - change icon and choose the one that looks cool.

To abort the shutdown schedule simple create another shortcut and this time in the textbox type shutdown - a

.




5) Disable USB ports on Your PC :-

1 - Hit win key + R to launch the run window.
2 - Type regedit and click ok
3 - This will launch the Registry Editor.
4 - Navigate to -

HKEY_LOCAL_MACHINE\
SYSTEM\
CurrentControlSet\
Services\
USBSTOR

5 - On right hand side, double click on Start .
6 - In the Value Data textbox, enter 4.
7 - Click on OK.
8 - Close Registry Editor and refresh your desktop.
9 - To enable access to your USB ports, again change the value of start to 3.

Share:

Popular

Search This Blog

Advertisement

Labels